diff --git a/po/advisory_rules.php b/po/advisory_rules.php
new file mode 100644
index 0000000000..30cf2c2e88
--- /dev/null
+++ b/po/advisory_rules.php
@@ -0,0 +1,268 @@
+Note: If you are using memcached, ignore this recommendation.');
+echo __('query_cache_size is set to 0 or query_cache_type is set to \'OFF\'');
+
+echo __('memcached usage');
+echo __('Suboptimal caching method.');
+echo __('You are using the MySQL Query cache with a fairly high traffic database. It might be worth considering to use memcached instead of the MySQL Query cache, especially if you have multiple slaves.');
+printf(__('The query cache is enabled and the server receives %d queries per second. This rule fires if there is more than 100 queries per second.'), 0);
+
+echo __('Query cache efficiency (%)');
+echo __('Query cache not running efficiently, it has a low hit rate.');
+echo __('Consider increasing {query_cache_limit}.');
+printf(__('The current query cache hit rate of %s%% is below 20%%'), 0);
+
+echo __('Query Cache usage');
+echo __('Less than 80% of the query cache is being utilized.');
+echo __('This might be caused by {query_cache_limit} being too low. Flushing the query cache might help as well.');
+printf(__('The current ratio of free query cache memory to total query cache size is %s%%. It should be above 80%%'), 0);
+
+echo __('Query cache fragmentation');
+echo __('The query cache is considerably fragmented.');
+echo __('Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. This might be caused by many Query cache low memory prunes due to {query_cache_size} being too small. For a immediate but short lived fix you can flush the query cache (might lock the query cache for a long time). Carefully adjusting {query_cache_min_res_unit} to a lower value might help too, e.g. you can set it to the average size of your queries in the cache using this formula: (query_cache_size - qcache_free_memory) / qcache_queries_in_cache');
+printf(__('The cache is currently fragmented by %s%% , with 100%% fragmentation meaning that the query cache is an alternating pattern of free and used blocks. This value should be below 20%%.'), 0);
+
+echo __('Query cache low memory prunes');
+echo __('Cached queries are removed due to low query cache memory from the query cache.');
+echo __('You might want to increase {query_cache_size}, however keep in mind that the overhead of maintaining the cache is likely to increase with its size, so do this in small increments and monitor the results.');
+printf(__('The ratio of removed queries to inserted queries is %s%%. The lower this value is, the better (This rules firing limit: 0.1%)'), 0);
+
+echo __('Query cache max size');
+echo __('The query cache size is above 128 MiB. Big query caches may cause significant overhead that is required to maintain the cache.');
+echo __('Depending on your enviroment, it might be performance increasing to reduce this value.');
+printf(__('Current query cache size: %s'), 0);
+
+echo __('Query cache min result size');
+echo __('The max size of the result set in the query cache is the default of 1 MiB.');
+echo __('Changing {query_cache_limit} (usually by increasing) may increase efficiency. This variable determines the maximum size a query result may have to be inserted into the query cache. If there are many query results above 1 MiB that are well cacheable (many reads, little writes) then increasing {query_cache_limit} will increase efficiency. Whereas in the case of many query results being above 1 MiB that are not very well cacheable (often invalidated due to table updates) increasing {query_cache_limit} might reduce efficiency.');
+echo __('query_cache_limit is set to 1 MiB');
+
+echo __('% sorts that cause temporary tales');
+echo __('Too many sorts are causing temporary tables.');
+echo __('Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending on your system memory limits');
+printf(__('%s%% of all sorts cause temporary tables, this value should be lower than 10%%.'), 0);
+
+echo __('rate of sorts that cause temporary tables');
+echo __('Too many sorts are causing temporary tables.');
+echo __('Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending on your system memory limits');
+printf(__('Temporary tables average: %s, this value should be less than 1 per hour.'), 0);
+
+echo __('Sort rows');
+echo __('There are lots of rows being sorted.');
+echo __('While there is nothing wrong with a high amount of row sorting, you might want to make sure that the queries which require a lot of sorting use indexed fields in the ORDER BY clause, as this will result in much faster sorting');
+printf(__('Sorted rows average: %s'), 0);
+
+echo __('rate of joins without indexes');
+echo __('There are too many joins without indexes.');
+echo __('This means that joins are doing full table scans. Adding indexes for the fields being used in the join conditions will greatly speed up table joins');
+printf(__('Table joins average: %s, this value should be less than 1 per hour'), 0);
+
+echo __('rate of reading first index entry');
+echo __('The rate of reading the first index entry is high.');
+echo __('This usually indicates frequent full index scans. Full index scans are faster than table scans but require lots of cpu cycles in big tables, if those tables that have or had high volumes of UPDATEs and DELETEs, running \'OPTIMIZE TABLE\' might reduce the amount of and/or speed up full index scans. Other than that full index scans can only be reduced by rewriting queries.');
+printf(__('Index scans average: %s, this value should be less than 1 per hour'), 0);
+
+echo __('rate of reading fixed position');
+echo __('The rate of reading data from a fixed position is high.');
+echo __('This indicates many queries need to sort results and/or do a full table scan, including join queries that do not use indexes. Add indexes where applicable.');
+printf(__('Rate of reading fixed position average: %s, this value should be less than 1 per hour'), 0);
+
+echo __('rate of reading next table row');
+echo __('The rate of reading the next table row is high.');
+echo __('This indicates many queries are doing full table scans. Add indexes where applicable.');
+printf(__('Rate of reading next table row: %s, this value should be less than 1 per hour'), 0);
+
+echo __('tmp_table_size vs. max_heap_table_size');
+echo __('tmp_table_size and max_heap_table_size are not the same.');
+echo __('If you have deliberatly changed one of either: The server uses the lower value of either to determine the maximum size of in-memory tables. So if you wish to increse the in-memory table limit you will have to increase the other value as well.');
+printf(__('Current values are tmp_table_size: %s, max_heap_table_size: %s'), 0);
+
+echo __('% temp disk tables');
+echo __('Many temporary tables are being written to disk instead of being kept in memory.');
+echo __('Increasing {max_heap_table_size} and {tmp_table_size} might help. However some temporary tables are always being written to disk, independent of the value of these variables. To elminiate these you will have to rewrite your queries to avoid those conditions (Within a temprorary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in the beginning of an Article by the Pythian Group');
+printf(__('%s%% of all temporary tables are being written to disk, this value should be below 25%%'), 0);
+
+echo __('temp disk rate');
+echo __('Many temporary tables are being written to disk instead of being kept in memory.');
+echo __('Increasing {max_heap_table_size} and {tmp_table_size} might help. However some temporary tables are always being written to disk, independent of the value of these variables. To elminiate these you will have to rewrite your queries to avoid those conditions (Within a temprorary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in in the MySQL Documentation');
+printf(__('Rate of temporay tables being written to disk: %s, this value should be less than 1 per hour'), 0);
+
+echo __('MyISAM key buffer size');
+echo __('Key buffer is not initialized. No MyISAM indexes will be cached.');
+echo __('Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a good start.');
+echo __('key_buffer_size is 0');
+
+echo __('max % MyISAM key buffer ever used');
+echo __('MyISAM key buffer (index cache) % used is low.');
+echo __('You may need to decrease the size of {key_buffer_size}, re-examine your tables to see if indexes have been removed, or examine queries and expectations about what indexes are being used.');
+printf(__('max %% MyISAM key buffer ever used: %s, this value should be above 95%%'), 0);
+
+echo __('% MyISAM key buffer used');
+echo __('MyISAM key buffer (index cache) % used is low.');
+echo __('You may need to decrease the size of {key_buffer_size}, re-examine your tables to see if indexes have been removed, or examine queries and expectations about what indexes are being used.');
+printf(__('%% MyISAM key buffer used: %s, this value should be above 95%%'), 0);
+
+echo __('% index reads from memory');
+echo __('The % of indexes that use the MyISAM key buffer is low.');
+echo __('You may need to increase {key_buffer_size}.');
+printf(__('Index reads from memory: %s%%, this value should be above 95%%'), 0);
+
+echo __('rate of table open');
+echo __('The rate of opening tables is high.');
+echo __('Opening tables requires disk I/O which is costly. Increasing {table_open_cache} might avoid this.');
+printf(__('Opened table rate: %s, this value should be less than 10 per hour'), 0);
+
+echo __('% open files');
+echo __('The number of open files is approaching the max number of open files. You may get a \"Too many open files\" error.');
+echo __('Consider increasing {open_files_limit}, and check the error log when restarting after changing open_files_limit.');
+printf(__('The number of opened files is at %s%% of the limit. It should be below 85%%'), 0);
+
+echo __('rate of open files');
+echo __('The rate of opening files is high.');
+echo __('Consider increasing {open_files_limit}, and check the error log when restarting after changing open_files_limit.');
+printf(__('Opened files rate: %s, this value should be less than 5 per hour'), 0);
+
+echo __('Immediate table locks %');
+echo __('Too many table locks were not granted immediately.');
+echo __('Optimize queries and/or use InnoDB to reduce lock wait.');
+printf(__('Immediate table locks: %s%%, this value should be above 95%%'), 0);
+
+echo __('Table lock wait rate');
+echo __('Too many table locks were not granted immediately.');
+echo __('Optimize queries and/or use InnoDB to reduce lock wait.');
+printf(__('Table lock wait rate: %s, this value should be less than 1 per hour'), 0);
+
+echo __('thread cache');
+echo __('Thread cache is disabled, resulting in more overhead from new connections to MySQL.');
+echo __('Enable the thread cache by setting {thread_cache_size} > 0.');
+echo __('The thread cache is set to 0');
+
+echo __('thread cache hit rate %');
+echo __('Thread cache is not efficient.');
+echo __('Increase {thread_cache_size}.');
+printf(__('Thread cache hitrate: %s%%, this value should be above 80%%'), 0);
+
+echo __('Threads that are slow to launch');
+echo __('There are too many threads that are slow to launch.');
+echo __('This generally happens in case of general system overload as it is pretty simple operations. You might want to monitor your system load carefully.');
+printf(__('%s thread(s) took longer than %s seconds to start, it should be 0'), 0);
+
+echo __('Slow launch time');
+echo __('Slow_launch_threads is above 2s');
+echo __('Set slow_launch_time to 1s or 2s to correctly count threads that are slow to launch');
+printf(__('slow_launch_time is set to %s'), 0);
+
+echo __('% connections used');
+echo __('The maximum amount of used connnections is getting close to the value of max_connections.');
+echo __('Increase max_connections, or decrease wait_timeout so that connections that do not close database handlers properly get killed sooner. Make sure the code closes database handlers properly.');
+printf(__('Max_used_connections is at %s%% of max_connections, it should be below 80%%'), 0);
+
+echo __('% aborted connections');
+echo __('Too many connections are aborted.');
+echo __('Connections are usually aborted when they cannot be authorized. This article might help you track down the source.');
+printf(__('%s%% of all connections are aborted. This value should be below 1%%'), 0);
+
+echo __('rate of aborted connections');
+echo __('Too many connections are aborted');
+echo __('Connections are usually aborted when they cannot be authorized. This article might help you track down the source.');
+printf(__('Aborted connections rate is at %s, this value should be less than 1 per hour'), 0);
+
+echo __('% aborted clients');
+echo __('Too many clients are aborted.');
+echo __('Clients are usually aborted when they did not close their connection to MySQL properly. This can be due to network issues or code not closing a database handler properly. Check your network and code.');
+printf(__('%s%% of all clients are aborted. This value should be below 2%%'), 0);
+
+echo __('rate of aborted clients');
+echo __('Too many clients are aborted.');
+echo __('Clients are usually aborted when they did not close their connection to MySQL properly. This can be due to network issues or code not closing a database handler properly. Check your network and code.');
+printf(__('Aborted client rate is at %s, this value should be less than 1 per hour'), 0);
+
+echo __('Is InnoDB disabled?');
+echo __('You do not have InnoDB enabled.');
+echo __('InnoDB is usually the better choice for table engines.');
+echo __('have_innodb is set to \'value\'');
+
+echo __('% InnoDB log size');
+echo __('The InnoDB log file size is not an appropriate size, in relation to the InnoDB buffer pool.');
+echo __('Especiallay one a system with a lot of writes to InnoDB tables you shoud set innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger this value, the longer the recovery time will be when database crashes, so this value should not be set much higher than 256 MiB. Please note however that you cannot simply change the value of this variable. You need to shutdown the server, remove the InnoDB log files, set the new value in my.cnf, start the server, then check the error logs if everything went fine. See also this blog entry');
+printf(__('Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, it should not be below 20%%'), 0);
+
+echo __('Max InnoDB log size');
+echo __('The InnoDB log file size is inadequately large.');
+echo __('It is usually sufficient to set innodb_log_file_size to 25% of the size of {innodb_buffer_pool_size}. A very innodb_log_file_size slows down the recovery time after a database crash considerably. See also this Article. You need to shutdown the server, remove the InnoDB log files, set the new value in my.cnf, start the server, then check the error logs if everything went fine. See also this blog entry');
+printf(__('Your absolute InnoD log size is %s MiB'), 0);
+
+echo __('InnoDB buffer pool size');
+echo __('Your InnoDB buffer pool is fairly small.');
+echo __('The InnoDB buffer pool has a profound impact on perfomance for InnoDB tables. Assign all your remaining memory to this buffer. For database servers that use solely InnoDB as storage engine and have no other services (e.g. a web server) running, you may set this as high as 80% of your available memory. If that is not the case, you need to carefully assess the memory consumption of your other services and non-InnoDB-Tables and set this variable accordingly. If it is set too high, your system will start swapping, which decreases performance significantly. See also this article');
+echo __('You are currently using %s% of your memory for the InnoDB buffer pool. This rule fires if you are assigning less than 60%, however this might be perfectly adequate for your system if you don\'t have much InnoDB tables or other services running on the same machine.');
+
+echo __('MyISAM concurrent inserts');
+echo __('Enable concurrent_insert by setting it to 1');
+echo __('Setting {concurrent_insert} to 1 reduces contention between readers and writers for a given table. See also MySQL Documentation');
+echo __('concurrent_insert is set to 0');
diff --git a/po/af.po b/po/af.po
index 89eb8d2e17..4a57be4883 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
@@ -11237,6 +11237,1057 @@ msgstr ""
msgid "Rename view to"
msgstr "Hernoem tabel na"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Operasies"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "SQL-stelling"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL-stelling"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL-stelling"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL-stelling"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Kies Tabelle"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Bediener weergawe"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "PHP Version"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+msgid "Distribution"
+msgstr "geen Beskrywing"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL Karakterstel"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Spasie verbruik"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query Cache usage"
+msgstr "Spasie verbruik"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "SQL resultaat"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Sa"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tabel(le)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Skep 'n nuwe bladsy"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Wys tabelle"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Karakterstel van die leer:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Skep 'n nuwe tabel op databasis %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, php-format
+msgid "% connections used"
+msgstr ""
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+msgid "rate of aborted clients"
+msgstr "Tabel kommentaar"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11305,10 +12356,6 @@ msgstr "Hernoem tabel na"
#~ msgid "seconds"
#~ msgstr "Rekords"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "SQL resultaat"
-
#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
diff --git a/po/ar.po b/po/ar.po
index 643fdd4b66..59deeb2579 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-07 03:51+0200\n"
"Last-Translator: Abdullah Al-Saedi \n"
"Language-Team: arabic \n"
@@ -11222,6 +11222,1090 @@ msgstr "اسم VIEW"
msgid "Rename view to"
msgstr "أعد تسمية العرض الـ"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "العمليات"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "اتصالات"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "SQL queries"
+msgid "% slow queries"
+msgstr "إستعلام SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "إظهار صندوق الإستعلام"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "إستعلام SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time محددة بـ %d ثانية."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "إظهار صندوق الإستعلام"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log مفعل."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "اختر الجداول"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "إنشاء إصدار"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "نسخة"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "عليك الترقية إلى %s%s أو لاحقا."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "الوصف"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "شيفرة أحرف MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "المساحة المستخدمة"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query Cache usage"
+msgstr "المساحة المستخدمة"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "ناتج استعلام SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "يسمح بإنشاء جداول مؤقتة."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "يسمح بإنشاء جداول مؤقتة."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "ابدأ"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s جدول (جداول)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "أنشئ الجدول"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Could not open file: %s"
+msgid "% open files"
+msgstr "لايمكن فتح الملف : %s"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "هيئة الملفات المستوردة"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "تكوين جدول جديد في قاعدة البيانات %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "التتبع غير نشط."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time محددة بـ %d ثانية."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "اتصالات"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Force SSL connection"
+msgid "% aborted connections"
+msgstr "فرض إتصال SSL"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "اتصالات"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "هيئة الملفات المستوردة"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "لايستطيع حفظ الجدول الأخير"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11300,9 +12384,6 @@ msgstr "أعد تسمية العرض الـ"
#~ msgid "seconds"
#~ msgstr "الثانية"
-#~ msgid "Query results"
-#~ msgstr "ناتج استعلام SQL"
-
#~ msgid "Show processes"
#~ msgstr "عرض العمليات"
diff --git a/po/az.po b/po/az.po
index b1b89f7e65..5bdaa178c5 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
@@ -11445,6 +11445,1075 @@ msgstr ""
msgid "Rename view to"
msgstr "Cedveli yeniden adlandır"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Emeliyyatlar"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Elaqeler"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Emrleri Tam Olaraq Göster"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL sorğusu"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL sorğusu"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL sorğusu"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Select Tables"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Server versiyası"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "PHP Versiyası"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Haqqında"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL charset"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Sorğu tipi"
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Yer istifadesi"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Sorğu tipi"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Sorğu tipi"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Sorğu tipi"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "SQL result"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Keçici cedveller qurmağa icaze verir."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Keçici cedveller qurmağa icaze verir."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Şen"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s cedvel"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sıralama buferinin (keçici yaddaşının) boyu"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Yeni Sehife qur"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Cedvelleri göster"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Faylın Charset-i:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s bazasında yeni cedvel qur"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Sorğu tipi"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Elaqeler"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Elaqeler"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Elaqeler"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "İçindekiler Cedveli"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+msgid "InnoDB buffer pool size"
+msgstr "Sıralama buferinin (keçici yaddaşının) boyu"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11520,9 +12589,6 @@ msgstr "Cedveli yeniden adlandır"
#~ msgid "seconds"
#~ msgstr "saniyede"
-#~ msgid "Query results"
-#~ msgstr "SQL result"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Yenile"
diff --git a/po/be.po b/po/be.po
index 04c8e9ea6a..8fa177a0ed 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
@@ -11874,6 +11874,1105 @@ msgstr "Назва прагляду"
msgid "Rename view to"
msgstr "Перайменаваць табліцу ў"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Пэрсыдзкая"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "максымум адначасовых злучэньняў"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Паказаць поўныя запыты"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Скінуць кэш запытаў"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL-запыт"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL-запыт"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Выберыце табліцу(ы)"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Стварыць сувязь"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Пэрсыдзкая"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Апісаньне"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Кадыроўка MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Кэш запытаў"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Сэрвэр не адказвае"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Выкарыстаньне прасторы"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Кэш запытаў"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Кэш запытаў"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Колькасьць вольнай памяці для кэшу запытаў."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Кэш запытаў"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "Дзеяньні з вынікамі запытаў"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Дазваляе ствараць часовыя табліцы."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Дазваляе ствараць часовыя табліцы."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Суб"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Праверыць табліцу"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s табліц(ы)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Памер буфэру сартаваньня"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Стварыць табліцу"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Паказаць адкрытыя табліцы"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Фармат імпартаванага файла"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Стварыць новую табліцу ў БД %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Кэш ключоў"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Падлучэньні"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "максымум адначасовых злучэньняў"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "максымум адначасовых злучэньняў"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Фармат імпартаванага файла"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Памер пулу буфэру"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "максымум адначасовых злучэньняў"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11973,10 +13072,6 @@ msgstr "Перайменаваць табліцу ў"
#~ msgid "seconds"
#~ msgstr "у сэкунду"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "Дзеяньні з вынікамі запытаў"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Колькасьць вольных блёкаў памяці ў кэшы запытаў."
diff --git a/po/be@latin.po b/po/be@latin.po
index 8f65f2d4f0..efd79e9fcc 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
@@ -11840,6 +11840,1110 @@ msgstr "Nazva prahladu"
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Relations"
+msgid "Questions below 1,000"
+msgstr "Suviazi"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "maksymum adnačasovych złučeńniaŭ"
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Skinuć keš zapytaŭ"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "in query"
+msgid "Long query time"
+msgstr "pa zapytu"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Slow query logging"
+msgstr "U vyhladzie SQL-zapytu"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Vybierycie tablicu(y)"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "General relation features"
+msgid "Current version: %s"
+msgstr "Mahčymaści asnoŭnych suviaziaŭ"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "PHP Version"
+msgid "Minor Version"
+msgstr "Versija PHP"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Apisańnie"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Kadyroŭka MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Keš zapytaŭ"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server nie adkazvaje"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Vykarystańnie prastory"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Keš zapytaŭ"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Keš zapytaŭ"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Keš zapytaŭ"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Dziejańni z vynikami zapytaŭ"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Dazvalaje stvarać časovyja tablicy."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Dazvalaje stvarać časovyja tablicy."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Sort rows"
+msgstr "Pakazanyja zapisy"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tablic(y)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Pamier buferu sartavańnia"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Stvaryć tablicu"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Pakazać adkrytyja tablicy"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Farmat impartavanaha fajła"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Stvaryć novuju tablicu ŭ BD %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Keš klučoŭ"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Padłučeńni"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "maksymum adnačasovych złučeńniaŭ"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "maksymum adnačasovych złučeńniaŭ"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Farmat impartavanaha fajła"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Pamier pułu buferu"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "maksymum adnačasovych złučeńniaŭ"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11934,9 +13038,6 @@ msgstr ""
#~ msgid "seconds"
#~ msgstr "u sekundu"
-#~ msgid "Query results"
-#~ msgstr "Dziejańni z vynikami zapytaŭ"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Kolkaść volnych blokaŭ pamiaci ŭ kešy zapytaŭ."
diff --git a/po/bg.po b/po/bg.po
index 198240d2cb..22a436d11b 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
"Last-Translator: \n"
"Language-Team: bulgarian \n"
@@ -10946,6 +10946,1110 @@ msgstr "Име на ИЗГЛЕД"
msgid "Rename view to"
msgstr "Преименуване на изгледа на"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Версии"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Текуща връзка"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Показване на SQL заявките"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Изчистване на буфера за заявки"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL заявки"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Показване формата за заявки"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "The event scheduler is disabled"
+msgid "The slow query log is disabled."
+msgstr "Диспечер на събитията изключен"
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Избор на таблици"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Създаване на версия"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Версия"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Осъвременете до %s %s или по-нова."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Описание"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Знаков набор на MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Буфер за заявки"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Няма отговор от сървъра"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Използвано място"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Буфер за заявки"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Буфер за заявки"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Количеството свободна памет за буфер за заявки."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Буфер за заявки"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Резулат oт заявка"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Позволява създаването на временни таблици."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Позволява създаването на временни таблици."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Начален ред"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Няма процедури."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s таблица"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Размер на буфера за сортиране"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Създаване таблица"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Показване на отворените теблици"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Формат на импортирания файл"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Създаване нова таблица в БД %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Буфер за ключове"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Проследяването е неактивно."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Броят на нишките, които не са спящи."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Конекции"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "максимален брой едновременни връзки"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "максимален брой едновременни връзки"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Формат на импортирания файл"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Наскоро отваряната таблице не можа да бъде записана"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Log buffer size"
+msgid "InnoDB buffer pool size"
+msgstr "Размер на буфера на дневника"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "максимален брой едновременни връзки"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11000,9 +12104,6 @@ msgstr "Преименуване на изгледа на"
#~ msgid "Export of event \"%s\""
#~ msgstr "Експорт на събитието \"%s\""
-#~ msgid "The event scheduler is disabled"
-#~ msgstr "Диспечер на събитията изключен"
-
#~ msgid "Turn it on"
#~ msgstr "Включване"
@@ -11051,9 +12152,6 @@ msgstr "Преименуване на изгледа на"
#~ msgid "seconds"
#~ msgstr "секунда"
-#~ msgid "Query results"
-#~ msgstr "Резулат oт заявка"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Разширението GD е необходимо за диаграмите."
diff --git a/po/bn.po b/po/bn.po
index 2382717093..78b512fd1d 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন \n"
"Language-Team: bangla \n"
@@ -11729,6 +11729,1105 @@ msgstr ""
msgid "Rename view to"
msgstr "টেবিল রিনেম করুন"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "পারসিয়ান"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "max. concurrent connections"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Show Full Queries"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Flush query cache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL query"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL query"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "টেবিল সিলেক্ট করুন"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Server version"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "পারসিয়ান"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "You should upgrade to %s %s or later."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "বর্ণনা"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL charset"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "The server is not responding"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Space usage"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "The amount of free memory for query cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Query results operations"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "শনিবার"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "টেবিল পরীক্ষা কর"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s table(s)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sort buffer size"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "একটি নতুন পাতা তৈরী কর"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "The current number of pending writes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Show open tables"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "The number of pending log file fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Key cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "The number of threads that are not sleeping."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "সংযোগসমূহ"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "max. concurrent connections"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "max. concurrent connections"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool size"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. concurrent connections"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11822,9 +12921,6 @@ msgstr "টেবিল রিনেম করুন"
#~ msgid "seconds"
#~ msgstr "per second"
-#~ msgid "Query results"
-#~ msgstr "Query results operations"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "The number of free memory blocks in query cache."
diff --git a/po/br.po b/po/br.po
index 541780ef75..b604676831 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-10 22:33+0200\n"
"Last-Translator: Fulup \n"
"Language-Team: LANGUAGE \n"
@@ -10855,6 +10855,1072 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Goulennoù"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "SQL queries"
+msgid "% slow queries"
+msgstr "Rekedoù SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "Diskouez ar voest rekedoù SQL"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Rekedoù SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Diskouez ar voest rekedoù SQL"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "Gweredekaet eo slow_query_log."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Foreign Key"
+msgid "Release Series"
+msgstr "Diuzit an alc'hwez estren"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Other core settings"
+msgid "Current version: %s"
+msgstr "Arventennoù pouezus all"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Versions"
+msgid "Minor Version"
+msgstr "Stummoù"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Deskrivadur"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+msgid "memcached usage"
+msgstr ""
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+msgid "Query Cache usage"
+msgstr ""
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+msgid "Query cache min result size"
+msgstr ""
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Sort"
+msgid "Sort rows"
+msgstr "Urzhiañ"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s daolenn"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create Table"
+msgid "rate of table open"
+msgstr "Krouiñ un daolenn"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Could not open file: %s"
+msgid "% open files"
+msgstr "N'eus ket bet gallet digeriñ ar restr : %s"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Furmad ar restr enporzhiañ"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+msgid "Immediate table locks %"
+msgstr ""
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "N'eo ket oberiant an heuliañ."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Kevreadennoù"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Force SSL connection"
+msgid "% aborted connections"
+msgstr "Rediañ ar c'hevreadennoù SSL"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Furmad ar restr enporzhiañ"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "N'eus ket bet gallet enrollañ an daolenn envez"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/bs.po b/po/bs.po
index 90601849b8..99aaef66a0 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
@@ -11429,6 +11429,1071 @@ msgstr ""
msgid "Rename view to"
msgstr "Promjeni ime tabele u "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Operacije"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Konekcije"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Prikaži kompletne upite"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Izaberi tabele"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Verzija servera"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "verzija PHP-a"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Opis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL set karaktera"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Vrsta upita"
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Zauzeće"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Vrsta upita"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Vrsta upita"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Vrsta upita"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "SQL rezultat"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Dozvoljava kreiranje privremenih tabela.."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Dozvoljava kreiranje privremenih tabela.."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Sub"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tabela"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Napravi novu stranu"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Prikaži tabele"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Karakter set datoteke:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Napravi novu tabelu u bazi %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Vrsta upita"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Konekcije"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Konekcije"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Konekcije"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Sadržaj"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11501,10 +12566,6 @@ msgstr "Promjeni ime tabele u "
#~ msgid "seconds"
#~ msgstr "u sekundi"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "SQL rezultat"
-
#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
diff --git a/po/ca.po b/po/ca.po
index 829bf512db..03c8bf2fe4 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro \n"
"Language-Team: catalan \n"
@@ -11744,6 +11744,1116 @@ msgstr "Nom de VISTA"
msgid "Rename view to"
msgstr "Reanomena la vista a"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versions"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Connexió actual"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Mostra consultes SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Buida la memòria cau de consultes"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Consultes SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Mostrar quadre de consultes"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Tria Taules"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Crea versió"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versió"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Es necessari actualitzar a %s %s o posterior."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descripció"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Joc de caràcters de MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Memòria cau de consultes"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "El servidor no respon"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Utilització d'espai"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Memòria cau de consultes"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Memòria cau de consultes"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "La quantitat de memòria liure per a memòria cau de consultes."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Memòria cau de consultes"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Resultats de consultes"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permet crear taules temporals."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permet crear taules temporals."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Sort rows"
+msgstr "Files per a textareas"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "No hi ha cap arxiu per pujar"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s taula"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Tamany de l'àrea de classificació"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Crea una taula"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "El nombre actual d'escritures pendents."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Mostra taules obertes"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format de l'arxiu importat"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Crear una taula nova a la base de dades %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Memòria cau de claus"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "El seguiment no està actiu."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "El nombre de fils que no estàn dormint."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Connexions"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Connexió comprimida"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Connexions persistents"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format de l'arxiu importat"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "No es pot desar la configuració"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Tamany de la memòria cau"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. connexions a la vegada"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Llibre d'Excel 97-2003 XLS"
@@ -11859,9 +12969,6 @@ msgstr "Reanomena la vista a"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Comparació del temps d'execució de consultes (en microsegons)"
-#~ msgid "Query results"
-#~ msgstr "Resultats de consultes"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Es necessita l'extensió GD per als gràfics."
diff --git a/po/cs.po b/po/cs.po
index d2b1b12121..5738bd5ead 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-11 11:38+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
@@ -11302,6 +11302,1122 @@ msgstr "Jméno pohledu"
msgid "Rename view to"
msgstr "Přejmenovat pohled na"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Dotazy"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Současné připojení"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Zobrazit SQL dotazy"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Vyprázdnit vyrovnávací paměť dotazů"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL dotazy"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time je nastaven na %d sekund."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Zobrazit pole pro dotaz"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log je povolen."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Odstranit série"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Vytvořit verzi"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Verze"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Popis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Znaková sada v MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server neodpovídá"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Využití místa"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Výsledky dotazu"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Umožňuje vytvářet dočasné tabulky."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Umožňuje vytvářet dočasné tabulky."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Počáteční řádek"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Nebyly nalezeny žádné rutiny."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Kde zobrazit odkazy s akcemi při procházení"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabulka"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Velikost paměti pro řazení"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Vytvořit tabulku"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Počet nevyřízených zápisů."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Zobrazit otevřené tabulky"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formát importovaného souboru"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Počet nevyřízených synchronizací logovacích souborů."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Vytvořit novou tabulku v databázi %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Počet okamžitých získání zámku tabulky."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Vyrovnávací paměť klíčů"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Sledování není zapnuté."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Počet vláken, která nespí."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time je nastaven na %d sekund."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Připojení"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Komprimovat připojení"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Trvalé připojení"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formát importovaného souboru"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Nepodařilo se uložit nedávnou tabulku"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Počet zápisů provedených do InnoDB bufferu."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Velikost vyrovnávací paměti"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Maximum současných připojení"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS"
@@ -11428,9 +12544,6 @@ msgstr "Přejmenovat pohled na"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Porovnání běhu dotazu (v mikrosekundách)"
-#~ msgid "Query results"
-#~ msgstr "Výsledky dotazu"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Pro grafy je potřebné rozšíření GD."
diff --git a/po/cy.po b/po/cy.po
index 8ee8321c26..7b4af74f1a 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \n"
@@ -11256,6 +11256,1087 @@ msgstr "Enw VIEW"
msgid "Rename view to"
msgstr "Ailenwch golwg i"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Fersiynau"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Dangos ymholiadau SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show insert query"
+msgid "slow query rate"
+msgstr "Dangos ymholiad mewnosod"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "in query"
+msgid "Long query time"
+msgstr "mewn ymholiad"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show insert query"
+msgid "Slow query logging"
+msgstr "Dangos ymholiad mewnosod"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Dewis Tablau"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Crëwch fersiwn"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Fersiwn"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Dylech uwchraddio i %s %s neu'n well."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Disgrifiad"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Set nodau MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "SQL query history table"
+msgid "Query cache disabled"
+msgstr "Tabl hanes ymholiadau SQL"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Dyw'r gweinydd ddim yn ymateb"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Latched pages"
+msgid "memcached usage"
+msgstr "Tudalennau "
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query results"
+msgid "Query Cache usage"
+msgstr "Gweithrediadau canlyniadau ymholiad"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Record cache size"
+msgid "Query cache max size"
+msgstr "Maint yr ystorfa cofnod"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Gweithrediadau canlyniadau ymholiad"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Sort rows"
+msgstr "Yn dangos rhesi"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are too many joins without indexes."
+msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabl"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Trefnu maint y byffer"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Crëwch dabl"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Fformat y ffeil a mewnforiwyd"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Creu tabl mewn cronfa ddata %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Nid yw tracio'n weithredol"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "MySQL connection collation"
+msgid "% connections used"
+msgstr "Coladiad cysylltiad MySQL"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Fformat y ffeil a mewnforiwyd"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Maint y pwll byffer"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11326,9 +12407,6 @@ msgstr "Ailenwch golwg i"
#~ msgid "seconds"
#~ msgstr "Eiliad"
-#~ msgid "Query results"
-#~ msgstr "Gweithrediadau canlyniadau ymholiad"
-
#~ msgid "Bar type"
#~ msgstr "Allforio"
diff --git a/po/da.po b/po/da.po
index 5c95436cd7..bf37cc1081 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-23 21:27+0200\n"
"Last-Translator: Jørgen Thomsen \n"
"Language-Team: danish \n"
@@ -11517,6 +11517,1122 @@ msgstr "VIEW navn"
msgid "Rename view to"
msgstr "Omdøb view til"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Spørgsmål"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Aktuel forbindelse"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Vis SQL-forespørgsler"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Tøm forespørgsel-mellemlager"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL-forespørgsler"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time er sat til %d sekund(er)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Vis forespørgselsbox"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log er aktiveret."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Slet serie"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Opret version"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Version"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Du burde opdatere til %s %s eller senere."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Beskrivelse"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL Tegnsæt"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Forespørgsel-mellemlager"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Serveren svarer ikke"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Pladsforbrug"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Forespørgsel-mellemlager"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Forespørgsel-mellemlager"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Forespørgsel-mellemlager"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Forespørgselsresultat operationer"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Tillader oprettelse af midlertidige tabeller."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Tillader oprettelse af midlertidige tabeller."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Startrække"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Der er ingen rutiner at vise."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Hvor links til tablerækker skal vises"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabel"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sorteringsbufferstørrelse"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Opret tabel"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Nuværende antal af ventende writes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Vis åbne tabeller"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format på importeret fil"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Antallet af ventende log fil fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Opret ny tabel i database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Nøglemellemlager"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Sporing er ikke aktiv."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Antallet af tråde, der ikke sover."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time er sat til %d sekund(er)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Forbindelser"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Komprimer forbindelse"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Vedvarende forbindelser"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format på importeret fil"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Kunne ikke gemme seneste tabel"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Antallet af skrivninger til InnoDB buffer poolen."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool størrelse"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Maks. samtidige forbindelser"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11627,9 +12743,6 @@ msgstr "Omdøb view til"
#~ msgid "seconds"
#~ msgstr "pr. sekund"
-#~ msgid "Query results"
-#~ msgstr "Forespørgselsresultat operationer"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Antallet af frie hukommelsesblokke i forespørgsels-mellemlageret."
diff --git a/po/de.po b/po/de.po
index 8ca8ec1016..70dd1785fd 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-07 22:28+0200\n"
"Last-Translator: Sven Strickroth \n"
"Language-Team: german \n"
@@ -11626,6 +11626,1122 @@ msgstr "VIEW Name"
msgid "Rename view to"
msgstr "View umbenennen in"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Anfragen"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Aktuelle Verbindung"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Zeige SQL Anfragen"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Den Abfragen-Cache leeren. (FLUSH)"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL-Abfragen"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time ist auf %d Sekunde(n) eingestellt."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "SQL-Querybox anzeigen"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log ist aktiviert."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Serien löschen"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Erzeuge Version"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Version"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Sie sollten auf %s %s oder neuer aktualisieren."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Beschreibung"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-Zeichensatz"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Abfragen-Cache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Der Server antwortet nicht"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Speicherplatzverbrauch"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Abfragen-Cache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Abfragen-Cache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Freier Speicher im Abfragen-Cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Abfragen-Cache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Abfrageergebnisse"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Erlaubt das Erstellen temporärer Tabellen."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Erlaubt das Erstellen temporärer Tabellen."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Anfangs-Datensatz"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Es sind keine Prozeduren zum Anzeigen vorhanden."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Wo die Datensatz-Links angezeigt werden sollen"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s Tabelle"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Größe des Sortierungspuffers"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Erzeuge Tabelle"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Momentan anstehende Schreizugriffe."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Zeige alle offenen Tabellen"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Dateiformat"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Anstehende fsyncs für die Protokoll-Datei."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Neue Tabelle in Datenbank %s erstellen"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Wie oft eine Tabellensperre sofort erlangt wurde."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Schlüssel-Cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Tracking ist nicht aktiviert."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Anzahl der Prozesse, die nicht schlafen."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time ist auf %d Sekunde(n) eingestellt."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Verbindungen"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Verbindung komprimieren"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Persistente Verbindung"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Dateiformat"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Konnte die aktuelle Tabelle nicht speichern"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Größe des Puffer-Pools"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. gleichzeitige Verbindungen"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "XLS Mappe für Excel 97-2003"
@@ -11752,9 +12868,6 @@ msgstr "View umbenennen in"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Vergleich der Abfragedauer (in Mikrosekunden)"
-#~ msgid "Query results"
-#~ msgstr "Abfrageergebnisse"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Zur Diagrammdarstellung ist die GD Erweiterung erforderlich."
diff --git a/po/el.po b/po/el.po
index 6d73bc0a2f..395a6cd732 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-29 14:17+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
@@ -11681,6 +11681,1122 @@ msgstr "Όνομα VIEW"
msgid "Rename view to"
msgstr "Μετονομασία πίνακα σε"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Ερωτήσεις"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Τρέχουσα σύνδεση"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Εμφάνιση ερωτημάτων SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Ερωτήματα SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Προβολή παραθύρου ερωτήματος"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "Το slow_query_log είναι ενεργοποιημένα."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Εκκαθάριση σειράς"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Δημιουργία έκδοσης"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Έκδοση"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Περιγραφή"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Σύνολο χαρακτήρων MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Ο διακομιστής δεν αποκρίνεται"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Χρήση χώρου"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Αποτελέσματα ερωτήματος"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Εγγραφή έναρξης"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Δεν υπάρχουν ρουτίνες για εμφάνιση."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s πίνακας"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Μέγεθος buffer ταξινόμησης"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Δημιουργία πίνακα"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Εμφάνιση ανοιχτών πινάκων"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Μορφή εισαχθέντος αρχείου"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Δημιουργία νέου πίνακα στη βάση %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Λανθάνουσα μνήμη κλειδιού"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Συνδέσεις"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Σύνδεση συμπίεσης"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Επιμένουσες συνδέσεις"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Μορφή εισαχθέντος αρχείου"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Μέγεθος buffer pool"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Βιβλίο εργασίας Excel 97-2003 XLS"
@@ -11805,9 +12921,6 @@ msgstr "Μετονομασία πίνακα σε"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Σύγκριση χρόνου εκτέλεσης ερωτήματος (σε χιλιοστοδευτερόλεπτα)"
-#~ msgid "Query results"
-#~ msgstr "Αποτελέσματα ερωτήματος"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Απαιτείται η επέκταση GD για τα διαγράμματα."
diff --git a/po/en_GB.po b/po/en_GB.po
index f0994e24fa..7e87734c3c 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-04 21:47+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: english-gb \n"
@@ -11407,6 +11407,1122 @@ msgstr "VIEW name"
msgid "Rename view to"
msgstr "Rename view to"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Questions"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Current connection"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Show SQL queries"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Flush query cache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL queries"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time is set to %d second(s)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Show query box"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log is enabled."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Clear series"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Create version"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Version"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "You should upgrade to %s %s or later."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Description"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL charset"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "The server is not responding"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Space usage"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "The amount of free memory for query cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Query results"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Start row"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "There are no routines to display."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Where to show the table row links"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s table"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sort buffer size"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Create table"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "The current number of pending writes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Show open tables"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format of imported file"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "The number of pending log file fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Create table on database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Key cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Tracking is not active."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "The number of threads that are not sleeping."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time is set to %d second(s)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Connections"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Compress connection"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Persistent connections"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format of imported file"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Could not save recent table"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool size"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. concurrent connections"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11534,9 +12650,6 @@ msgstr "Rename view to"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Query execution time comparison (in microseconds)"
-#~ msgid "Query results"
-#~ msgstr "Query results"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD extension is needed for charts."
diff --git a/po/es.po b/po/es.po
index 3cc8cdf0c0..c33b5a3d5b 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-10 16:45+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
@@ -11635,6 +11635,1124 @@ msgstr "VER nombre"
msgid "Rename view to"
msgstr "Cambiar el nombre de la vista a"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Preguntas"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Conexión actual"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Mostrar las consultas SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Vaciar el cache de consultas"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Consultas SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "«long_query_time» está configurado a %d segundo(s)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Mostrar ventana de consultas SQL"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "«slow_query_log» activo."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Vaciar serie"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Crear versión"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versión"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descripción"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Juegos de caracteres de MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Cache de consultas"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "El servidor no está respondiendo"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Espacio utilizado"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Cache de consultas"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Cache de consultas"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "La cantidad de memoria libre para el cache de consultas."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Cache de consultas"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Resultados de la Consulta"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permite la creación de tablas temporales."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permite la creación de tablas temporales."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Fila de inicio"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "No hay rutinas para mostrar."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Donde mostrar los enlaces de filas de tabla"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+# singular: tabla
+# plural: tablas
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabla"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Organizar el tamaño del búfer de memoria"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Crear tabla"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "El número actual de escrituras pendientess."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Mostrar las tablas que están abiertas"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formato del archivo importado"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "El número de fsyncs pendientes al archivo de registro."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Crear nueva tabla en la base de datos %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "El número de veces que un table lock fue adquirido inmediatamente."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Caché de claves"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "El seguimiento no está activo."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "El número de procesos que no están en reposo."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "«long_query_time» está configurado a %d segundo(s)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Conexiones"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Conexión de compresión"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Conexiones persistentes"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formato del archivo importado"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "No se pudo guardar la tabla reciente"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "El número de escrituras hechas a la reserva de búfers InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Tamaño de la reserva de búfers"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Número máx. de conexiones concurrentes"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Cuaderno XLS Excel 97-2003"
@@ -11763,9 +12881,6 @@ msgstr "Cambiar el nombre de la vista a"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)"
-#~ msgid "Query results"
-#~ msgstr "Resultados de la Consulta"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Se necesita la extensión GD para las gráficas."
diff --git a/po/et.po b/po/et.po
index a7f8a3baad..6d181899d6 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
@@ -11727,6 +11727,1105 @@ msgstr ""
msgid "Rename view to"
msgstr "Nimeta tabel ümber"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Pärsia"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "maks. parallel ühendusi"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Näita täispikkasid päringuid"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Tühjenda päringute vahemälu"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL-päring"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL-päring"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Vali tabelid"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Suhte loomine (relation)"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Pärsia"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Kirjeldus"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQLi tähetabel"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Päringute vahemälu"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server ei vasta"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Ruumivõtt"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Päringute vahemälu"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Päringute vahemälu"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Vaba mälu päringute vahemälus."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Päringute vahemälu"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "Päringu tulemuste tegevused"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Lubab luua ajutisi tabeleid."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Lubab luua ajutisi tabeleid."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Lau"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Kontrolli tabelit"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tabel(it)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sordi puhvri suurus"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Loo tabel"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Mitu ootel kirjutamist."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Näita avatud tabeleid"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Imporditud faili formaat"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Mitu ootel logi faili fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Loo uus tabel andmebaasi %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Mitu korda tabeli lukustus jõustus koheselt."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Võtme vahemälu"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Lõimude arv mis mis hetkel ei maga."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Ühendused"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "maks. parallel ühendusi"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "maks. parallel ühendusi"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Imporditud faili formaat"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Mitu korda kirjutas InnoDB puhvrisse."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Puhverdusala suurus"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "maks. parallel ühendusi"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11825,10 +12924,6 @@ msgstr "Nimeta tabel ümber"
#~ msgid "seconds"
#~ msgstr "sekundis"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "Päringu tulemuste tegevused"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Vabad mälu plokid päringute vahemälus."
diff --git a/po/eu.po b/po/eu.po
index da97bba53c..e517bfcc8f 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
@@ -11453,6 +11453,1074 @@ msgstr ""
msgid "Rename view to"
msgstr "Taula berrizendatu izen honetara: "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Eragiketak"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Konexioak"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Kontsulta osoak erakutsi"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL kontsulta"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL kontsulta"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL kontsulta"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Taulak hautatu"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Zerbitzariaren bertsioa"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "PHP Bertsioa"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Deskribapena"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL karaktere-multzoa"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Kontsulta mota"
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Erabilitako lekua"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Kontsulta mota"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Kontsulta mota"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Kontsulta mota"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "SQL emaitza"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Aldi baterako taulak sortzea baimentzen du."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Aldi baterako taulak sortzea baimentzen du."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Lar"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s taula(k)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Orri berri bat sortu"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Taulak erakutsi"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Fitxategiaren karaktereen kodeketa:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Taula berri bat sortu %s datu-basean"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Kontsulta mota"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Konexioak"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Konexioak"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Konexioak"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Edukinen taula"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11525,9 +12593,6 @@ msgstr "Taula berrizendatu izen honetara: "
#~ msgid "seconds"
#~ msgstr "segunduko"
-#~ msgid "Query results"
-#~ msgstr "SQL emaitza"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Reset egin"
diff --git a/po/fa.po b/po/fa.po
index d48932d5c8..41b8d3cfb0 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
@@ -11202,6 +11202,1062 @@ msgstr ""
msgid "Rename view to"
msgstr "بازناميدن جدول به"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "فارسي"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "پرس و جوي SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "پرس و جوي SQL"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "پرس و جوي SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "پرس و جوي SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Select Tables"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "نسخه سرور"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "فارسي"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "توضیحات"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "مجموع كاراكترهاي MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "فضاي استفادهشده"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query Cache usage"
+msgstr "فضاي استفادهشده"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "نتيجه SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "شنبه"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s جدول"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "ساخت يك صفحه جديد"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "نمايش جدولها"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "مجموعه كاراكترهاي پرونده:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "ساخت جدول جديد در پايگاه داده %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "پیگردی فعال نمی باشد."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, php-format
+msgid "% connections used"
+msgstr ""
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+msgid "rate of aborted clients"
+msgstr "توضيحات جدول"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11273,9 +12329,6 @@ msgstr "بازناميدن جدول به"
#~ msgid "seconds"
#~ msgstr "ثانیه"
-#~ msgid "Query results"
-#~ msgstr "نتيجه SQL"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Reset"
diff --git a/po/fi.po b/po/fi.po
index a954edb69d..525dd0f729 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
@@ -12087,6 +12087,1116 @@ msgstr "VIEW-arvon nimi"
msgid "Rename view to"
msgstr "Nimeä taulu uudelleen"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versiot"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Nykyinen yhteys"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Näytä SQL-kyselyt"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Tyhjennä kyselymuisti"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL-kyselyt"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Näytä kyselykenttä"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Valitse taulut"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Luo versio"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versio"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Kuvaus"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-palvelimen merkistö"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Kyselyvälimuisti"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Palvelin ei vastaa"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Levytilan käyttö"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Kyselyvälimuisti"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Kyselyvälimuisti"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Kyselyvälimuistin vapaan muistin määrä."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Kyselyvälimuisti"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Kyselyn tulokset"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Sallii tilapäisten taulujen luomisen."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Sallii tilapäisten taulujen luomisen."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Käynnistä"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "Lähetettäviä tiedostoja ei ole"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s taulu"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Lajittelupuskurin koko"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Luo taulu"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Näytä avoimet taulut"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Tuotavan tiedoston muoto"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Lokitiedoston avointen fsync-synkronointien määrä."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Luo uusi taulu tietokantaan %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Avainvälimuisti"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Seuranta ei ole käytössä."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Hereillä olevien säikeiden määrä."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Yhteydet"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Pakkaa yhteys"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Jatkuvat yhteydet"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Tuotavan tiedoston muoto"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "Asetuksia ei voi ladata tai tallentaa"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Puskurivarannon koko"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Enim. yhtäaikaisia yhteyksiä"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS -työkirja"
@@ -12203,9 +13313,6 @@ msgstr "Nimeä taulu uudelleen"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)"
-#~ msgid "Query results"
-#~ msgstr "Kyselyn tulokset"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Kaavioiden käyttöön tarvitaan GD-laajennus."
diff --git a/po/fr.po b/po/fr.po
index 7ef4d28b50..25f4a733e7 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-04 21:49+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
@@ -11557,6 +11557,1122 @@ msgstr "Nom de la vue"
msgid "Rename view to"
msgstr "Changer le nom de la vue pour"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Questions"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Connexion actuelle"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Afficher les requêtes SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Vider la cache des requêtes"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Requêtes SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time est réglé à %d seconde(s)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Montrer zone SQL"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log est activé."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Effacer la série"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Créer une version"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Version"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Vous devriez utiliser %s en version %s ou plus récente."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Description"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Jeu de caractères pour MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Cache des requêtes"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Le serveur ne répond pas"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Espace utilisé"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Cache des requêtes"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Cache des requêtes"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "La quantité de mémoire libre dans la cache de requêtes."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Cache des requêtes"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Résultats de la requête"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permission de créer des tables temporaires."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permission de créer des tables temporaires."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Ligne de départ"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Il n'y a aucune procédure à afficher."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "À quel endroit afficher les liens pour chaque ligne de données"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s table"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Taille de la mémoire tampon"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Nouvelle table"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Le nombre actuel d'écritures en attente."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Montrer les tables ouvertes"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format du fichier d'importation"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Créer une nouvelle table sur la base %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Cache des clés"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Le suivi n'est pas activé."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Le nombre de fils d'exécution non suspendus."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time est réglé à %d seconde(s)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Connexions"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Utiliser le mode compression sur la connexion"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Connexions persistantes"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format du fichier d'importation"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Impossible de sauvegarder l'historique des tables récentes"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Le nombre d'écritures faites dans la réserve InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Taille de la mémoire-tampon"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. de connexions simultanées"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11678,9 +12794,6 @@ msgstr "Changer le nom de la vue pour"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Comparaison du temps d'exécution des requêtes (en microsecondes)"
-#~ msgid "Query results"
-#~ msgstr "Résultats de la requête"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "L'extension GD est requise pour les graphiques."
diff --git a/po/gl.po b/po/gl.po
index edf628f97c..c77282b5ad 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \n"
@@ -12325,6 +12325,1114 @@ msgstr "Nome da VISTA"
msgid "Rename view to"
msgstr "Mudar o nome da táboa para"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versións"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Insecure connection"
+msgid "Current amount of Questions: %s"
+msgstr "A conexión non é segura"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Mostrar as procuras SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Limpar a caché da pesquisa"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Solicitudes SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Slow query logging"
+msgstr "Caixa de Procuras SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Seleccionar táboas"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Crear unha versión"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versión"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Debería actualizar a %s %s ou posterior."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descrición"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Código de caracteres (Charset) MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "caché de procuras"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "O servidor non está a responder"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Uso do espazo"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "caché de procuras"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "caché de procuras"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Cantidade de memoria libre para a caché de procuras."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "caché de procuras"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "Operacións de resultados da procura"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permite crear táboas temporais."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permite crear táboas temporais."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Inicio"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are too many joins without indexes."
+msgstr "Non hai ningún servidor configurado"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s táboa(s)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Tamaño da memoria intermedia de ordenación"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Crear táboas"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Número actual de escritas pendentes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Mostrar as táboas abertas"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formato do ficheiro importado"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Número de fsyncs do ficheiro de rexistro pendentes."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Crear unha táboa nova na base de datos %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "caché da chave"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "O seguemento non está activado."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Número de fíos que non están a durmir."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Conexións"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Comprimir a conexión"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Conexións persistentes"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formato do ficheiro importado"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "Non se puido cargar ou gravar a configuración"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Número de veces que se escribiu no búfer InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Tamaño da reserva da memoria intermedia"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "conexións simultáneas máximas"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Libro de traballo XLS do Excel 97-2003"
@@ -12439,10 +13547,6 @@ msgstr "Mudar o nome da táboa para"
#~ msgid "seconds"
#~ msgstr "por segundo"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "Operacións de resultados da procura"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Número de bloques de memoria libres na caché de procuras."
diff --git a/po/he.po b/po/he.po
index f95f6b4291..8ed3d5c4bb 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: \n"
"Language-Team: hebrew \n"
@@ -11372,6 +11372,1076 @@ msgstr ""
msgid "Rename view to"
msgstr "שינוי שם טבלה אל"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Persian"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "חיבורים"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "הראה שאילתות שלמות"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "שאילתת SQL"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "שאילתת SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "שאילתת SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "בחירת טבלאות"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "גרסת שרת"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Persian"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "אתה צריך לשדרג אל %s %s לפחות."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "תיאור"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "קידוד MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "סוג שאילתה"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "השרת אינו מגיב"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "שימוש מקום"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "סוג שאילתה"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "סוג שאילתה"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "סוג שאילתה"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "תוצאת SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "מאפשר יצירת טבלאות זמניות."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "מאפשר יצירת טבלאות זמניות."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "שבת"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s טבלאות"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "יצירת עמוד חדש"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "ראיית טבלאות"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "חבילת הקידוד של הקובץ:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "סוג שאילתה"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "חיבורים"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "חיבורים"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "חיבורים"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "תוכן עניניים"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11456,9 +12526,6 @@ msgstr "שינוי שם טבלה אל"
#~ msgid "seconds"
#~ msgstr "לשנייה"
-#~ msgid "Query results"
-#~ msgstr "תוצאת SQL"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "איפוס"
diff --git a/po/hi.po b/po/hi.po
index 3a4d7cb2cd..37b426a424 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-24 19:04+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
@@ -11172,6 +11172,1104 @@ msgstr "दृश्य का नाम"
msgid "Rename view to"
msgstr "दृश्य का नाम बदलो"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "संस्करण"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "वर्तमान कनेक्शन"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "SQL प्रशन दिखाएँ"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "फ्लश क्वेरी कैश"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL क्वरी"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "क्वेरी बॉक्स दिखाएँ"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "टेबल चुनिये"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "संस्करण बनाएँ"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "संस्करण"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए"
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "वर्णन"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL वर्ण सेट"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "क्वेरी कैश"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "सर्वर जवाब नहीं दे रहा"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "स्थान उपयोग"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "क्वेरी कैश"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "क्वेरी कैश"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "क्वेरी कैश"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "क्वेरी परिणाम"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है"
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है"
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Sort rows"
+msgstr "क्षेत्र रोयाँ"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr " %s टेबलें"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "बफर आकार सोर्ट करें"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "टेबल बनायें"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "खुला टेबल शो"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "आयात की गई फ़ाइल का प्रारूप"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s डाटाबेस मे नया टेबल बनाओ"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "कुंजी कैश"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "ट्रैकिंग सक्रिय नहीं है."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "कनेक्शन"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "कनेक्शन संक्षिप्त करना"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "के लिए"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "आयात की गई फ़ाइल का प्रारूप"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "विन्यास सहेज नहीं सकते"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "बफर पूल आकार"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "अधिकतम वर्तमान कनेक्शन"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11280,9 +12378,6 @@ msgstr "दृश्य का नाम बदलो"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "क्वेरी निष्पादन समय की तुलना"
-#~ msgid "Query results"
-#~ msgstr "क्वेरी परिणाम"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD विस्तार चार्ट के लिए आवश्यक है"
diff --git a/po/hr.po b/po/hr.po
index dd322a8055..5f4724860c 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian
\n"
@@ -11829,6 +11829,1106 @@ msgstr "Naziv prikaza"
msgid "Rename view to"
msgstr "Preimenuj prikaz u"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Perzijski"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "najv. uzastopnih veza"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Prikaži pune upite"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Isprazni pohranu upita"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Odaberite tablice"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Izradi relaciju"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Perzijski"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Trebali biste nadograditi na %s %s ili kasniju."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Opis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL tablica znakova"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Pohrana upita"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Poslužitelj ne odgovara"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Iskorištenost prostora"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Pohrana upita"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Pohrana upita"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Količina slobodne memorije za pohranu upita."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Pohrana upita"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Operacije rezultata upita"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Dopušta izradu privremenih tablica."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Dopušta izradu privremenih tablica."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Sub"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Provjeri tablicu"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tablica"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Veličina međuspremnika preslagivanja"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Izradi tablicu"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Trenutan broj zapisivanja u čekanju."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Prikaži otvorene tablice"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Oblikovanje uvezene datoteke"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Izradi novu tablicu u bazi podataka %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Količina trenutno postignutih zaključavanja tablica."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Pohrana ključeva"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Broj grana koje nisu uspavane."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Veze"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "najv. uzastopnih veza"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "najv. uzastopnih veza"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Oblikovanje uvezene datoteke"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Veličina međuspremnika"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "najv. uzastopnih veza"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11926,9 +13026,6 @@ msgstr "Preimenuj prikaz u"
#~ msgid "seconds"
#~ msgstr "po sekundi"
-#~ msgid "Query results"
-#~ msgstr "Operacije rezultata upita"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Broj slobodnih memorijskih blokova u pohrani upita."
diff --git a/po/hu.po b/po/hu.po
index 00ccde2782..f1294ca0d2 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: \n"
"Language-Team: hungarian \n"
@@ -11911,6 +11911,1116 @@ msgstr "NÉZET neve"
msgid "Rename view to"
msgstr "Nézet átnevezése"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Verziók"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Jelenlegi kapcsolat"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Az SQL-lekérdezések megjelenítése"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Lekérdezési gyorsítótár kiírása"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL-lekérdezések"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "SQL-lekérdezési panelek mutatása"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Táblák kiválasztása"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Verzió létrehozása"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Verzió"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Frissítenie kell %s %s vagy újabb verzióra."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Leírás"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL karakterkészlet"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Lekérdezési gyorsítótár"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "A szerver nem válaszol"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Területhasználat"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Lekérdezési gyorsítótár"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Lekérdezési gyorsítótár"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Lekérdezési gyorsítótár"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Lekérdezés eredményei"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Engedélyezi ideiglenes táblák készítését."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Engedélyezi ideiglenes táblák készítését."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Indítás"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "Nincsenek feltöltendő fájlok"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tábla"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Rendezőpuffer mérete"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Tábla létrehozása"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "A folyamatban lévő írások száma."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Nyitott táblák megjelenítése"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Az importált fájl formátuma"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "A folyamatban lévő naplófájl fsync-ek száma."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Új tábla létrehozása a(z) %s adatbázisban"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Kulcs gyorsítótár"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Nyomkövetés inaktív."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "A nem alvó szálak száma."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Kapcsolatok"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "A kapcsolat tömörítése"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Állandó kapcsolatok"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Az importált fájl formátuma"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "A beállítások nem tölthetők be vagy menthetők"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Az InnoDB pufferkészletébe történt írások száma."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Pufferkészlet mérete"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Max. egyidejű kapcsolatok száma"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -12021,9 +13131,6 @@ msgstr "Nézet átnevezése"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "lekérdezések futási idejének összehasonlítása (mikromásodpercekben)"
-#~ msgid "Query results"
-#~ msgstr "Lekérdezés eredményei"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD bővítmény szükséges a grafikonokhoz."
diff --git a/po/id.po b/po/id.po
index c2d9ef91be..80dced71fe 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
@@ -11482,6 +11482,1092 @@ msgstr "Nama VIEW"
msgid "Rename view to"
msgstr "Ubah nama tabel menjadi "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versi"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Koneksi"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Tampilkan pencarian yang lengkap"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "Tampilkan kotak query"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "Pencarian SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Tampilkan kotak query"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Pilih tabel"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Membuat versi"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versi"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Deskripsi"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Charset MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Tipe Pencarian"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server tidak menjawab"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Penggunaan tempat"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Tipe Pencarian"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Tipe Pencarian"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Tipe Pencarian"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Hasil query"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+msgid "Sort rows"
+msgstr "Status"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "Tidak ada arsip untuk diunggah"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabel"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Urutkan ukuran Buffer"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Buat tabel"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Tampilkan tabel"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Penyusunan karakter dalam file:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Ciptakan tabel baru pada database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Tipe Pencarian"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Pelacakan tidak aktif."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Koneksi"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Koneksi"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Koneksi"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Daftar Isi"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Ukuran penampungan buffer"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11582,9 +12668,6 @@ msgstr "Ubah nama tabel menjadi "
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)"
-#~ msgid "Query results"
-#~ msgstr "Hasil query"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Ekstensi GD diperlukan untuk diagram."
diff --git a/po/it.po b/po/it.po
index bb5f649d54..ae147879e0 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-22 19:13+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: italian \n"
@@ -11630,6 +11630,1122 @@ msgstr "Nome VISTA"
msgid "Rename view to"
msgstr "Rinomina la vista in"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Questions"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Connessione corrente"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Mostra query SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Rinfresca la cache delle query"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Query SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time é impostato a %d secondi."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Mostra riquadro query SQL"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log é abilitato."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Cancella la serie"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Crea versione"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versione"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descrizione"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Set di caratteri MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Cache delle query"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Il server non risponde"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Spazio utilizzato"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Cache delle query"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Cache delle query"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "L'ammontare di memoria libera nella cache delle query."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Cache delle query"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Risultati query"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permette di creare tabelle temporanee."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permette di creare tabelle temporanee."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Riga iniziale"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Non ci sono routine da visualizzare."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabella"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Ordina la dimensione del buffer"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Crea tabelle"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Il numero di scritture in attesa."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Mostra le tabelle aperte"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formato del file importato"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Il numero degli fsyncs in sospeso sul log file."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Crea una nuova tabella nel database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Il numero di volte che un table lock è stato eseguito immediatamente."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Key cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Il tracking non è attivo."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Il numero di processi non in attesa."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time é impostato a %d secondi."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Connessioni"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Comprimi la connessione"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Connessione persistente"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formato del file importato"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Impossibile salvare la tabella recente"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Il numero di scritture effettuate nel buffer pool InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Dimensione del buffer per pool"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. connessioni contemporanee"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11744,9 +12860,6 @@ msgstr "Rinomina la vista in"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Rapporto tempo esecuzione query (in microsecondi)"
-#~ msgid "Query results"
-#~ msgstr "Risultati query"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "L'estensione GD è richiesta per i diagrammi (grafici)."
diff --git a/po/ja.po b/po/ja.po
index e2c8b1e829..9eb195ef9f 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-06 12:16+0200\n"
"Last-Translator: Yuichiro \n"
"Language-Team: japanese \n"
@@ -11407,6 +11407,1122 @@ msgstr "ビューの名前"
msgid "Rename view to"
msgstr "リネーム後のビューの名前"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "問い合わせ"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "現在の接続"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "SQL クエリの表示"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "クエリキャッシュをフラッシュする"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL クエリ"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time は %d 秒に設定されています。"
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "クエリボックスを表示"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log は有効です。"
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "系列をクリアする"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "バージョンを作成"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "バージョン"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "%s を %s 以降にアップグレードしてください"
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "説明"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL の文字セット"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "クエリキャッシュ"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "サーバが応答しません"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "ディスク使用量"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "クエリキャッシュ"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "クエリキャッシュ"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "クエリキャッシュの空きメモリ量"
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "クエリキャッシュ"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "クエリの結果"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "一時テーブルの作成を許可する"
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "一時テーブルの作成を許可する"
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "開始行"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "表示できるルーチンがありません"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "テーブルの行リンクを表示する場所"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s テーブル"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "ソートバッファのサイズ"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "テーブルを作成"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "現在保留されている書き込みの数"
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "開いているテーブルを表示する"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "インポートするファイルの形式"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "保留中のログファイルへの fsync 回数"
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "データベース %s にテーブルを作成する"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "テーブルロックをすぐに取得できた回数"
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "キーキャッシュ"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "SQL コマンドの追跡は非アクティブです。"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "スリープしていないスレッドの数"
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time は %d 秒に設定されています。"
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "接続"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "圧縮通信を行う"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "永続的な接続"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "インポートするファイルの形式"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "最近使用したテーブルが保存できません"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "InnoDB バッファプールへの書き込み回数"
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "バッファプールの大きさ"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "最大同時接続数"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS ワークブック"
@@ -11517,9 +12633,6 @@ msgstr "リネーム後のビューの名前"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "クエリの実行時間の比較(マイクロ秒)"
-#~ msgid "Query results"
-#~ msgstr "クエリの結果"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "グラフには GD 拡張が必要です。"
diff --git a/po/ka.po b/po/ka.po
index 3df2e37a04..08128b1328 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
@@ -12159,6 +12159,1110 @@ msgstr "VIEW name"
msgid "Rename view to"
msgstr "Rename table to"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "სპარსული"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Insecure connection"
+msgid "Current amount of Questions: %s"
+msgstr "დაუცველი კავშირი"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "SQL მოთხოვნების ჩვენება"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Flush query cache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL მოთხოვნები"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Slow query logging"
+msgstr "SQL Query box"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "ცხრილების არჩევა"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Create relation"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "სპარსული"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "You should upgrade to %s %s or later."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "აღწერილობა"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-ის სიმბოლოთა ნაკრები"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "სერვერი არ პასუხობს"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "ადგილის გამოყენება"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "The amount of free memory for query cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Query results operations"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Startup"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are too many joins without indexes."
+msgstr "There are no configured servers"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s table(s)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sort buffer size"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "ცხრილის შექმნა"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "The current number of pending writes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Show open tables"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "შემოტანილი ფაილების ფორმატი"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "The number of pending log file fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Create new table on database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Key cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "The number of threads that are not sleeping."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "კავშირები"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "კავშირის შეკუმშვა"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Persistent connections"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "შემოტანილი ფაილების ფორმატი"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool size"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. concurrent connections"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -12260,9 +13364,6 @@ msgstr "Rename table to"
#~ msgid "seconds"
#~ msgstr "წამში"
-#~ msgid "Query results"
-#~ msgstr "Query results operations"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "The number of free memory blocks in query cache."
diff --git a/po/ko.po b/po/ko.po
index a758241bf8..fadaf82e9e 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-05 14:17+0200\n"
"Last-Translator: Chung-Ook Lee \n"
"Language-Team: korean \n"
@@ -11250,6 +11250,1075 @@ msgstr "뷰 이름"
msgid "Rename view to"
msgstr "테이블 이름 바꾸기"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "테이블 작업"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "연결 수"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "SQL 질의"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL 질의"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL 질의"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL 질의"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+msgid "Release Series"
+msgstr "모두 선택"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "서버 버전"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "PHP 버전"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "설명"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL 문자셋"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "질의 종류"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "서버 응답이 없습니다"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "공간 사용량"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "질의 종류"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "질의 종류"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "질의 종류"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "SQL 결과"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "임시테이블 생성 허용."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "임시테이블 생성 허용."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "토"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s개 테이블 "
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "새 페이지 만들기"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "테이블 보기"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "파일 문자셋:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "질의 종류"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "트래킹이 활성화되어 있지 않습니다."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "연결 수"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "연결 수"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "연결 수"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+msgid "rate of aborted clients"
+msgstr "테이블 설명"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11316,9 +12385,6 @@ msgstr "테이블 이름 바꾸기"
#~ msgid "seconds"
#~ msgstr "초"
-#~ msgid "Query results"
-#~ msgstr "SQL 결과"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "리세트"
diff --git a/po/lt.po b/po/lt.po
index 6d4b990885..1d7b200d7e 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-08 18:05+0200\n"
"Last-Translator: Kęstutis \n"
"Language-Team: lithuanian \n"
@@ -11190,6 +11190,1109 @@ msgstr "VIEW pavadinimas"
msgid "Rename view to"
msgstr "Pervadinti rodinį į"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versijos"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Dabartinis prisijungimas"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Rodyti SQL užklausas"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "Rodyti užklausos laukelį"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL užklausos"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Rodyti užklausos laukelį"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log įjungtas."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select series:"
+msgid "Release Series"
+msgstr "Pasirinkite eiles:"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Sukurti versiją"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versija"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Paaiškinimas"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL koduotė"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Užklausų saugykla"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Serveris neatsako"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Vietos naudojimas"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Užklausų saugykla"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Užklausų saugykla"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Užklausų saugykla"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Užklausos rezultatai"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Leisti kurti laikinas lenteles."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Leisti kurti laikinas lenteles."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Pradėti eilute"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s lentelė"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Rūšiavimo buferio dydis"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Sukurti lentelę"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Esamu momentu laukiančių rašymų skaičius."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Rodyti atidarytas lenteles"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Įkelto failo formatas"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening files is high."
+msgstr "Esamu momentu laukiančių rašymų skaičius."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Sukurti naują lentelę duomenų bazėje %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Užklausų saugykla"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Sekimas yra neaktyvus."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Prisijungimai"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Naudoti suspaustą susijungimą"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Ilgalaikiai sujungimai"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Įkelto failo formatas"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Negalėjo išsaugoti paskiausios lentelės"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buferio pool'o dydis"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Daugiausia lygiagrečių prisijungimų"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS darbaknygė"
@@ -11297,9 +12400,6 @@ msgstr "Pervadinti rodinį į"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Užklausų vykdymo laiko palyginimas (milisekundėmis)"
-#~ msgid "Query results"
-#~ msgstr "Užklausos rezultatai"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD plėtinys reikalingas diagramoms braižyti."
diff --git a/po/lv.po b/po/lv.po
index d1279f3c07..77cbca2ee4 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
@@ -11481,6 +11481,1075 @@ msgstr ""
msgid "Rename view to"
msgstr "Pārsaukt tabulu uz"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Persiešu"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Konekcijas"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Rādīt pilnos vaicājumus"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL vaicājums"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL vaicājums"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL vaicājums"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Izvēlieties tabulas"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Servera versija"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Persiešu"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Jums ir jāuzliek %s %s vai jaunāks."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Apraksts"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL kodējums"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Vaicājuma tips"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Serveris neatbild"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Diska vietas lietošana"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Vaicājuma tips"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Vaicājuma tips"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Vaicājuma tips"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "SQL rezultāts"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Ļauj veidot pagaidu tabulas."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Ļauj veidot pagaidu tabulas."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "S"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tabula(s)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Izveidot jaunu lapu"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Rādīt tabulas"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Tabulas kodējums:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Izveidot jaunu tabulu datubāzē %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Vaicājuma tips"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Konekcijas"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Konekcijas"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Konekcijas"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Satura rādītājs"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11566,10 +12635,6 @@ msgstr "Pārsaukt tabulu uz"
#~ msgid "seconds"
#~ msgstr "sekundē"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "SQL rezultāts"
-
#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
diff --git a/po/mk.po b/po/mk.po
index af0412a448..3a8ad3069a 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: \n"
"Language-Team: macedonian_cyrillic \n"
@@ -11549,6 +11549,1081 @@ msgstr ""
msgid "Rename view to"
msgstr "Промени го името на табелата во "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Персиски"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Конекции"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Прикажи комплетни упити"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "SQL упит"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL упит"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL упит"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Избери табели"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Верзија на серверот"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Персиски"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+"Би требало да го надоградите вашиот %s сервер на верзија %s или понова."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Опис"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL множество на знаци"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Вид на упит"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Серверот не одговара"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Големина"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Вид на упит"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Вид на упит"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Вид на упит"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "SQL резултат"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Дозволува креирање на привремени табели..."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Дозволува креирање на привремени табели..."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Саб"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s табела"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Големина на меѓупросторот за подредување"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Направи нова страница"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Прикажи табели"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Кодна страна на податотеката:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Креирај нова табела во базата на податоци %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Вид на упит"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Конекции"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Конекции"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Конекции"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Содржина"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Големина на баферот"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11638,9 +12713,6 @@ msgstr "Промени го името на табелата во "
#~ msgid "seconds"
#~ msgstr "во секунда"
-#~ msgid "Query results"
-#~ msgstr "SQL резултат"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Поништи"
diff --git a/po/ml.po b/po/ml.po
index 049399d1ec..d721bbf3b1 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam \n"
@@ -10628,3 +10628,1030 @@ msgstr ""
#: view_operations.php:91
msgid "Rename view to"
msgstr ""
+
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+msgid "Questions below 1,000"
+msgstr ""
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+msgid "slow query rate"
+msgstr ""
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+msgid "Long query time"
+msgstr ""
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+msgid "Slow query logging"
+msgstr ""
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+msgid "Release Series"
+msgstr ""
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, php-format
+msgid "Current version: %s"
+msgstr ""
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+msgid "Minor Version"
+msgstr ""
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+msgid "Distribution"
+msgstr ""
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+msgid "memcached usage"
+msgstr ""
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+msgid "Query Cache usage"
+msgstr ""
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+msgid "Query cache min result size"
+msgstr ""
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+msgid "Sort rows"
+msgstr ""
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+msgid "% temp disk tables"
+msgstr ""
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+msgid "rate of table open"
+msgstr ""
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+msgid "rate of open files"
+msgstr ""
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+msgid "Immediate table locks %"
+msgstr ""
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, php-format
+msgid "% connections used"
+msgstr ""
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+msgid "rate of aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
diff --git a/po/mn.po b/po/mn.po
index d3783a3a63..045aa5d2a1 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
@@ -11553,6 +11553,1103 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Relations"
+msgid "Questions below 1,000"
+msgstr "Хамаарал"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "ХИ. давхацсан холболтууд"
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Асуудлын утгыг цэвэрлэх"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "in query"
+msgid "Long query time"
+msgstr "асуултад"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Slow query logging"
+msgstr "SQL асуудал харуулах"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Хүснэгтүүд сонго"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "General relation features"
+msgid "Current version: %s"
+msgstr "Ерөнхий хамаатай онцлог"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "PHP Version"
+msgid "Minor Version"
+msgstr "PHP хувилбар"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Тайлбар"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-кодлол"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Асуудлын нөөцлөл"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Сервэрээс хариу алга"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Ашиглалтын зай"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Асуудлын нөөцлөл"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Асуудлын нөөцлөл"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Асуудлын нөөцлөл"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "Асуудлын үр дүнгийн үйлдэл"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Sort rows"
+msgstr "Мөрүүдийг харуулж байна "
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s хүснэгт(үүд)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Буфферийн хэмжээг эрэмбэлэх"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Хүснэгт үүсгэх"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Нээлттэй хүснэгтүүдийг харуулах"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Оруулсан файлын тогтнол"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening files is high."
+msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Түлхүүрийн нөөцлөл"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Холболт"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "ХИ. давхацсан холболтууд"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "ХИ. давхацсан холболтууд"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Оруулсан файлын тогтнол"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Буффер pool хэмжээ"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "ХИ. давхацсан холболтууд"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11646,10 +12743,6 @@ msgstr ""
#~ msgid "seconds"
#~ msgstr "секундэд"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "Асуудлын үр дүнгийн үйлдэл"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Дахих"
diff --git a/po/ms.po b/po/ms.po
index ea529fa101..c3e7966dff 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
@@ -11283,6 +11283,1069 @@ msgstr ""
msgid "Rename view to"
msgstr "Tukarnama jadual ke"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Operasi"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Hubungan"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "kueri-SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "kueri-SQL"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "kueri-SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "kueri-SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Pilih Jadual"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Versi Pelayan"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Versi PHP"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Keterangan"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Set Aksara MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Jenis Kueri"
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Penggunaan ruang"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Jenis Kueri"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Jenis Kueri"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Jenis Kueri"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Hasil SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Sab"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s jadual"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Cipta Halaman baru"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Papar jadual"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Fail bagi set Aksara:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Cipta jadual baru pada pangkalan data %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Jenis Kueri"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Hubungan"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Hubungan"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Hubungan"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Kandungan"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11354,9 +12417,6 @@ msgstr "Tukarnama jadual ke"
#~ msgid "seconds"
#~ msgstr "Rekod"
-#~ msgid "Query results"
-#~ msgstr "Hasil SQL"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Ulangtetap"
diff --git a/po/nb.po b/po/nb.po
index c85a43cde7..83dfb85239 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
@@ -11827,6 +11827,1116 @@ msgstr "VIEW navn"
msgid "Rename view to"
msgstr "Endre tabellens navn"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versjoner"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Nåværende tilkobling"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Vis SQL spørringer"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Flush query cache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL spørringer"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Vis spørringsboks"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Velg tabeller"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Opprett versjon"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versjon"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Du burde oppgradere til %s %s eller nyere."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Beskrivelse"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-tegnsett"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Spørringsmellomlager"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Tjeneren svarer ikke"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Plassbruk"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Spørringsmellomlager"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Spørringsmellomlager"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Mengden ledig minne i spørringsmellomlager."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Spørringsmellomlager"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Spørringsresultater"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Tillater oppretting av midlertidige tabeller."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Tillater oppretting av midlertidige tabeller."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "CHAR textarea rows"
+msgid "Sort rows"
+msgstr "CHAR textarea rader"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "Det er ingen filer å laste opp"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabell"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sorteringsbufferstørrelse"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Opprett tabell"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Antall ventende skrivinger."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Vis åpne tabeller"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Importfilformat"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Antall ventende loggfil-fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Opprett ny tabell i database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Antall ganger en tabellåsing ble utført umiddelbart."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Nøkkelmellomlager"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Overvåkning er ikke aktiv."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Antall tråder som ikke sover."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "tilkoblinger"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Komprimer tilkobling"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Vedvarende forbindelser"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Importfilformat"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "Kunne ikke lagre konfigurasjonen"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Mellomlagerstørrelse"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "maks. samtidige tilkoblinger"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11942,9 +13052,6 @@ msgstr "Endre tabellens navn"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Sammenligning av eksekveringstid for spørring (i mikrosekunder)"
-#~ msgid "Query results"
-#~ msgstr "Spørringsresultater"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD extension trengs for grafer."
diff --git a/po/nl.po b/po/nl.po
index 3c5e7aadb8..969d4da6e0 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
@@ -11741,6 +11741,1118 @@ msgstr "VIEW-naam"
msgid "Rename view to"
msgstr "Hernoem view naar"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versies"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Huidige verbinding"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Toon SQL-queries"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Schoon query cache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL-queries"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "SQL-query veld tonen"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Selecteer tabellen"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Versie aanmaken"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versie"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "U moet upgraden naar %s %s of hoger."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Beschrijving"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL Karakterset"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "De server reageert niet"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Ruimtegebruik"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "De hoeveelheid vrij geheugen voor het query cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Query cache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Query resultaten"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Sort rows"
+msgstr "Tekstveld regels"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "Er zijn geen bestanden om te uploaden"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Waar de tabelrij links getoond worden"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabel"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sorteer buffer grootte"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Maak tabel"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Het aantal momenteel openstaande schrijf operaties."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Toon open tabellen"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formaat van het geïmporteerde bestand"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Nieuwe tabel aanmaken in database %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Het aantal keer dat een tabel lock direct kon worden verkregen."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Sleutelcache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Tracking is niet actief."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Het aantal threads dat actief bezig is."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Connecties"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Comprimeer verbinding"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Persistente connecties"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formaat van het geïmporteerde bestand"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Recente tabel kon niet opgeslagen worden"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool grootte"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Max. gelijktijdige verbindingen"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Werkboek"
@@ -11857,9 +12969,6 @@ msgstr "Hernoem view naar"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Vergelijking van query-uitvoertijden (in microseconden)"
-#~ msgid "Query results"
-#~ msgstr "Query resultaten"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "De GD-extensie is vereist voor het tonen van grafieken."
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 4ebf80c602..2ee109433b 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -10631,3 +10631,1030 @@ msgstr ""
#: view_operations.php:91
msgid "Rename view to"
msgstr ""
+
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, possible-php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+msgid "Questions below 1,000"
+msgstr ""
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, possible-php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, possible-php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, possible-php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+msgid "slow query rate"
+msgstr ""
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, possible-php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+msgid "Long query time"
+msgstr ""
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, possible-php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+msgid "Slow query logging"
+msgstr ""
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+msgid "Release Series"
+msgstr ""
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, possible-php-format
+msgid "Current version: %s"
+msgstr ""
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+msgid "Minor Version"
+msgstr ""
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+msgid "Distribution"
+msgstr ""
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, possible-php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+msgid "memcached usage"
+msgstr ""
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, possible-php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, possible-php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+msgid "Query Cache usage"
+msgstr ""
+
+#: po/advisory_rules.php:81
+#, possible-php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, possible-php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, possible-php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, possible-php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+msgid "Query cache min result size"
+msgstr ""
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, possible-php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, possible-php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, possible-php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+msgid "Sort rows"
+msgstr ""
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, possible-php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, possible-php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, possible-php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, possible-php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, possible-php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, possible-php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+msgid "% temp disk tables"
+msgstr ""
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, possible-php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, possible-php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, possible-php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, possible-php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, possible-php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, possible-php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, possible-php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+msgid "rate of table open"
+msgstr ""
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, possible-php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, possible-php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, possible-php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+msgid "rate of open files"
+msgstr ""
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, possible-php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+msgid "Immediate table locks %"
+msgstr ""
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, possible-php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, possible-php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, possible-php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, possible-php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, possible-php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, possible-php-format
+msgid "% connections used"
+msgstr ""
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, possible-php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, possible-php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, possible-php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, possible-php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+msgid "rate of aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:243
+#, possible-php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, possible-php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, possible-php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, possible-php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, possible-php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, possible-php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
diff --git a/po/pl.po b/po/pl.po
index c3c9e513ea..25fd1a1611 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: polish \n"
@@ -12110,6 +12110,1116 @@ msgstr "Nazwa widoku"
msgid "Rename view to"
msgstr "Zmień nazwę perspektywy na"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Suggestions:"
+msgid "Questions below 1,000"
+msgstr "Propozycje:"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Insecure connection"
+msgid "Current amount of Questions: %s"
+msgstr "Niezabezpieczone połączenie"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Pokaż zapytania SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Opróżnij bufor podręczny zapytań"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Zapytania SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Pokaż okno zapytań"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Wybierz tabele"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Utwórz wersję"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Wersja"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Zaleca się aktualizację do %s w wersji %s lub nowszej."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Opis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Kodowanie napisów dla MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Pamięć podręczna zapytań"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Serwer nie odpowiada"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Wykorzystanie przestrzeni"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Pamięć podręczna zapytań"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Pamięć podręczna zapytań"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Pamięć podręczna zapytań"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Wyniki zapytania"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Pozwala tworzyć tabele tymczasowe."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Pozwala tworzyć tabele tymczasowe."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Start"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "Nie podałeś plików do wgrania na serwer"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabel"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Rozmiar bufora dla sortowania"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Utwórz tabelę"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Aktualna liczba zapisów w toku."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Pokaż otwarte tabele"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format importowanych plików"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Liczba wywołań fsync dla pliku dziennika w toku."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Utwórz nową tabelę w bazie danych %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Bufor podręczny indeksów"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Monitorowanie nie jest aktywne."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Liczba nieuśpionych wątków."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Połączenia"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Kompresja połączenia"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Trwałe połączenia"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format importowanych plików"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "Nie udało się załadować lub zapisać konfiguracji"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Liczba wykonanych zapisów do puli bufora InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Rozmiar rezerw buforowych"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Maks. jednoczesnych połączeń"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Skoroszyt Excel 97-2003 XLS"
@@ -12228,9 +13338,6 @@ msgstr "Zmień nazwę perspektywy na"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Porównanie czasu wykonywania zapytania (w milisekundach)"
-#~ msgid "Query results"
-#~ msgstr "Wyniki zapytania"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Rozszerzenie GD jest wymagane, do generowania wykresów."
diff --git a/po/pt.po b/po/pt.po
index c872cc47a9..e2cbbd0732 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: \n"
"Language-Team: portuguese \n"
@@ -11390,6 +11390,1082 @@ msgstr ""
msgid "Rename view to"
msgstr "Renomeia a vista para "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versões"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Ligações"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Mostrar queries completos"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "Mostrar Caixa do query"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "Comando SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Mostrar Caixa do query"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Seleccionar Tabelas"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Criar versão"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "versão do PHP"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "deve actualizar para %s %s ou mais recente."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descrição"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Mapa de Caracteres do mySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Tipo de Query"
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Espaço ocupado"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Tipo de Query"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Tipo de Query"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Tipo de Query"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Resultado SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permite criar tabelas temporárias."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permite criar tabelas temporárias."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+msgid "Sort rows"
+msgstr "Estado"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are too many joins without indexes."
+msgstr "Tabelas em tracking"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabela"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Criar uma Página nova"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Mostra tabelas"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Configurar o Mapa de Caracteres do ficheiro:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Criar nova tabela na base de dados %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Tipo de Query"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Detecção de Alterações está desactivada."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Ligações"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Ligações"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Ligações"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Índice"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11481,9 +12557,6 @@ msgstr "Renomeia a vista para "
#~ msgid "seconds"
#~ msgstr "por segundo"
-#~ msgid "Query results"
-#~ msgstr "Resultado SQL"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Limpa"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index fa6b893db0..f64721af08 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-30 02:20+0200\n"
"Last-Translator: Julio Cesar Zuppa \n"
"Language-Team: brazilian_portuguese \n"
@@ -11607,6 +11607,1120 @@ msgstr "Nome da VISÃO"
msgid "Rename view to"
msgstr "Renomear a visão para "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Requisições"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Conexão atual"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Mostrar consultas SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Nivelar cache da consulta"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Consultas SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "\"long_query_time\" está definida para %d segundo(s)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Mostrar caixa de consulta"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "\"slow_query_log\" está ativado."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Tabelas selecionadas"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Criar versão"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Versão"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Você deveria atualizar para %s %s ou posterior."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descrição"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Conjunto de caracteres MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Consulta do cache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "O servidor não está respondendo"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Uso do espaço"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Consulta do cache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Consulta do cache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "O montante de memória livre para a consulta do cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Consulta do cache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Operações resultantes das consultas"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permitir criar tabelas temporárias."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permitir criar tabelas temporárias."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+msgid "Sort rows"
+msgstr "Status"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Não existem rotinas para mostrar."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabela"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Tamanho do buffer de ordenação"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Criar tabela"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "O número atual de escritas pendentes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Exibir tabelas abertas"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formato do arquivo importado"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "O número de arquivos de log fsyncs pendentes."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Criar nova tabela no Banco de Dados %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+"O número de vezes que uma tabela trancada foi recuperada imediatamente."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Chave do cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Rastreamento não está ativo."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "O número de processos que não estão dormindo."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "\"long_query_time\" está definida para %d segundo(s)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Conexões"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "% aborted connections"
+msgstr "Conexões persistentes"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Conexões persistentes"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formato do arquivo importado"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Não foi possível salvar a tabela recente"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "O número de escritas feitas para o buffer pool do InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Tamanho do Buffer Pool"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "máx. de conexões concorrentes"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11713,9 +12827,6 @@ msgstr "Renomear a visão para "
#~ msgid "seconds"
#~ msgstr "Segundo"
-#~ msgid "Query results"
-#~ msgstr "Operações resultantes das consultas"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "A extensão GD é necessária para os gráficos."
diff --git a/po/ro.po b/po/ro.po
index 71d8737997..95664c9015 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \n"
@@ -11841,6 +11841,1108 @@ msgstr "Denumire VIZIUNE"
msgid "Rename view to"
msgstr "Redenumire tabel la"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Versiuni"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+msgid "Current amount of Questions: %s"
+msgstr "Comprimă conexiunea"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Afișare comandă întreagă"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Reinițializare cache interogare"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "Comanda SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "Comanda SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Selectează tabele"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Creare relație"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Persană"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Descriere"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Setul de caractere MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Cache interogări"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Serverul nu răspunde"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Utilizare spațiu"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Cache interogări"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Cache interogări"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "The amount of free memory for query cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Cache interogări"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Operațiuni asupra rezultatelor interogării"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Permite crearea de tabele temporare."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Permite crearea de tabele temporare."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Dum"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Tabelele urmărite"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tabele"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sortare Mărime tampon"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Creare tabel"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "The current number of pending writes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Afișează tabele deschise"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formatul fișierului importat"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "The number of pending log file fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Creează tabel nou în baza de date %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Key cache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Monitorizarea nu este activată"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "The number of threads that are not sleeping."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Conexiuni"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Comprimă conexiunea"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "conexiuni concurente (maxim)"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formatul fișierului importat"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool size"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "conexiuni concurente (maxim)"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11942,9 +13044,6 @@ msgstr "Redenumire tabel la"
#~ msgid "seconds"
#~ msgstr "pe secundă"
-#~ msgid "Query results"
-#~ msgstr "Operațiuni asupra rezultatelor interogării"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "The number of free memory blocks in query cache."
diff --git a/po/ru.po b/po/ru.po
index 5f01844cb1..92fb82af5d 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-03 19:50+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
@@ -11669,6 +11669,1123 @@ msgstr "VIEW название"
msgid "Rename view to"
msgstr "Переименовать представление в"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Версии"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Текущее соединение"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Показывать SQL запросы"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Дефрагментировать кеш запросов"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL запросы"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Отобразить поле запроса"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "The event scheduler is disabled"
+msgid "The slow query log is disabled."
+msgstr "Отключен планировщик событий"
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Выберите таблицы"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Создать версию"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Версия"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Необходимо обновить %s до версии %s или выше."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Описание"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-кодировка"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Кеш запросов"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Сервер не отвечает"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Используемое пространство"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Кеш запросов"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Кеш запросов"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Объем свободной памяти для кеша запросов."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Кеш запросов"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Результаты запроса"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Разрешает создание временных таблиц."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Разрешает создание временных таблиц."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Sort rows"
+msgstr "Строк в текстовом поле"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Нет процедур для отображения."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Где вывести ссылки строки таблицы"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s таблица"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Размер буфера сортировки"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Создать таблицу"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Текущее количество незавершенных операций записи."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Список открытых таблиц"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Формат импортируемого файла"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr ""
+"Количество незавершенных попыток синхронизации с помощью операции fsync."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Создать новую таблицу в базе данных %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+"Количество запросов на блокировку таблицы, которые были удовлетворены "
+"немедленно."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Кеш индекса"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Слежение выключено."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Количество процессов, находящихся в активном состоянии."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Соединения"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Соединение со сжатием"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Постоянные соединения"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Формат импортируемого файла"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Не удалось сохранить последнюю таблицу"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Количество записей, выполненных в буферный пул InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Размер буферного пула"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Максимально одновременных"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -11738,9 +12855,6 @@ msgstr "Переименовать представление в"
#~ msgid "Export of event \"%s\""
#~ msgstr "Экспорт события \"%s\""
-#~ msgid "The event scheduler is disabled"
-#~ msgstr "Отключен планировщик событий"
-
#~ msgid "Turn it on"
#~ msgstr "Включить"
@@ -11793,9 +12907,6 @@ msgstr "Переименовать представление в"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Сравнение времени выполнения запроса (в микросекундах)"
-#~ msgid "Query results"
-#~ msgstr "Результаты запроса"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Для графиков необходимо расширение GD."
diff --git a/po/si.po b/po/si.po
index 0ae9f802bc..3dc6c49a67 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
@@ -11401,6 +11401,1116 @@ msgstr "දසුනේ නම"
msgid "Rename view to"
msgstr "දසුනේ නම වෙනස් කරන්න"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "අනුවාද"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "වත්මන් සම්බන්දතාව"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "SQL විමසුම් පෙන්වන්න"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Flush query cache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL විමසුම"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "විමසුම් කවුළුව පෙන්වන්න"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "වගු තෝරන්න"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "අනුවාදය සාදන්න"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "අනුවාදය"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "You should upgrade to %s %s or later."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "විස්තරය"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL අක්ෂර කට්ටලය"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "විමසුම් කෑෂ්"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "අවකාශ භාවිතය"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "විමසුම් කෑෂ්"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "විමසුම් කෑෂ්"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "The amount of free memory for query cache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "විමසුම් කෑෂ්"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "විමසුම් ප්රථිඵල"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Startup"
+msgid "Sort rows"
+msgstr "ඇරඹුම්"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s වගු"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sort buffer size"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "වගුව සාදන්න"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "The current number of pending writes."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "විවෘත වගු පෙන්වන්න"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "The number of pending log file fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "යතුරු කෑෂ් කිරීම"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "අවධානය අක්රීයයි."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "The number of threads that are not sleeping."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "සම්බන්ධතා"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Force SSL connection"
+msgid "% aborted connections"
+msgstr "SSL සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "උපරිම සමගාමී සම්බන්ධතා"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "නූතන වගු සුරැකීම අසමත් විය"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffer pool size"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "උපරිම සමගාමී සම්බන්ධතා"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11505,9 +12615,6 @@ msgstr "දසුනේ නම වෙනස් කරන්න"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්රෝ තත්පර)"
-#~ msgid "Query results"
-#~ msgstr "විමසුම් ප්රථිඵල"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "ප්රස්තාර සඳහා GD දිගුව අවැසිය."
diff --git a/po/sk.po b/po/sk.po
index a844d95374..61fa39b0c4 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-27 15:32+0200\n"
"Last-Translator: Martin Lacina \n"
"Language-Team: slovak \n"
@@ -11398,6 +11398,1120 @@ msgstr "Meno pohľadu"
msgid "Rename view to"
msgstr "Premenovať pohľad na"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Dopyty"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Súčasné pripojenie"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Zobraziť SQL dopyty"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL dopyty"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Zobrazit vyhľadávacie pole"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log je povolený."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Vybrať Tabuľky"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Vytvoriť verziu"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Verzia"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Popis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Znaková sada v MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server neodpovedá"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Zabrané miesto"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Výsledky dopytu"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Povolí vytváranie dočasných tabuliek."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Povolí vytváranie dočasných tabuliek."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Prvý riadok"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Neboli nájdené žiadne rutiny."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Kde zobraziť linky riadkov tabuľky"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabuľka"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Veľkosť zoraďovacej pamäte"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Vytvoriť tabuľku"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Počet aktuálne prebiehajúcich zápisov."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Zobraziť otvorené tabuľky"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Formát importovaného súboru"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Vytvoriť novú tabuľku v databáze %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Vyrovnávacia pamäť kľúčov"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Sledovanie nie je aktívne."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Počet nespiacich vlákien."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Spojenia"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Komprimovať pripojenie"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Trvalé spojenia"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Formát importovaného súboru"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Nepodarilo sa uložiť najnovšíu tabuľku"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Veľkosť vyrovnávacej pamäte"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "max. súčasných pripojení"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS pracovný zošit"
@@ -11505,9 +12619,6 @@ msgstr "Premenovať pohľad na"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)"
-#~ msgid "Query results"
-#~ msgstr "Výsledky dopytu"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Pre grafy je potrené rozšírenie GD."
diff --git a/po/sl.po b/po/sl.po
index f67ebc3130..c4f55d9ac5 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-22 11:14+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
@@ -11539,6 +11539,1122 @@ msgstr "Ime VIEW"
msgid "Rename view to"
msgstr "Preimenuj pogled v"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Vprašanja"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Trenutna povezava"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Pokaži poizvedbe SQL"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Izplakni predpomnilnik poizvedb"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "Poizvedbe SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time je nastavljen na %d sekund(o)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Prikaži polje poizvedbe"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log je omogočen."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Počisti serije"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Ustvari različico"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Različica"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Opis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Kodna tabela MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Predpomnilnik poizvedb"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Strežnik se ne odziva"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Poraba prostora"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Predpomnilnik poizvedb"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Predpomnilnik poizvedb"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Količina prostega spomina za predpomnilnik poizvedb."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Predpomnilnik poizvedb"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Rezultati poizvedbe"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Omogoča ustvarjanje začasnih tabel."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Omogoča ustvarjanje začasnih tabel."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Začetna vrstica"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Ni rutin za prikaz."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Kje naj prikažem povezave vrstic tabel"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabela"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Velikost medpomnilnika razvrščanja"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Ustvari tabelo"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Trenutno število čakajočih pisanj."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Pokaži odprte tabele"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Oblika uvožene datoteke"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Število čakajoče dnevniške datoteke fsyncs."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Ustvari novo tabelo v podatkovni zbirki %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Koliko krat je bil zaklep tabele pridobljen takoj."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Predpomnilnik ključev"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Sledenje ni aktivno."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Število niti, ki ne spijo."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time je nastavljen na %d sekund(o)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Povezave"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Stisni povezavo"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Vztrajne povezave"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Oblika uvožene datoteke"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Ne morem shraniti nedavne tabele"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Velikost zaloge medpomnilnika"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Največ sočasnih povezav"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excelov delovni zvezek 97-2003 XLS"
@@ -11662,9 +12778,6 @@ msgstr "Preimenuj pogled v"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Primerjava trajanj izvajanja poizvedb (v mikrosekundah)"
-#~ msgid "Query results"
-#~ msgstr "Rezultati poizvedbe"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Za grafikone je potrebna razširitev GD."
diff --git a/po/sq.po b/po/sq.po
index 7316b55bf7..1f33a54b2a 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \n"
@@ -11472,6 +11472,1077 @@ msgstr ""
msgid "Rename view to"
msgstr "Riemërto tabelën në"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Operacione"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Lidhje"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Shfaq të gjitha kërkesat"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "query SQL"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "query SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "query SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Zgjidh Tabelat"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Versioni i MySQL"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Versioni i PHP"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Duhet të instaloni %s %s ose superior."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Përshkrimi"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "Set simbolesh MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "Lloji i query"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Serveri nuk përgjigjet"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Hapësira e përdorur"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "Lloji i query"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "Lloji i query"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "Lloji i query"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+msgid "Query cache min result size"
+msgstr "Rezultati SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Lejon krijimin e tabelave të përkohëshme."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Lejon krijimin e tabelave të përkohëshme."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Sht"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tabela(at)"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Krijo një faqe të re"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "Shfaq tabelat"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "Familja gërmave të file:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Krijo një tabelë të re tek databaza %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "Lloji i query"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Gjurmimi nuk është aktiv."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Lidhje"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Lidhje"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Lidhje"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Tabela e përmbajtjes"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11552,10 +12623,6 @@ msgstr "Riemërto tabelën në"
#~ msgid "seconds"
#~ msgstr "në sekondë"
-#, fuzzy
-#~ msgid "Query results"
-#~ msgstr "Rezultati SQL"
-
#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
diff --git a/po/sr.po b/po/sr.po
index f067de5056..d99501925c 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: serbian_cyrillic \n"
@@ -11748,6 +11748,1105 @@ msgstr "назив за VIEW"
msgid "Rename view to"
msgstr "Промени име табеле у "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Персијски"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "макс. истовремених веза"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Прикажи комплетне упите"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Очисти кеш упита"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL упит"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL упит"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Изабери табеле"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Направи релацију"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Персијски"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Опис"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL сет карактера"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Кеш упита"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Сервер не одговара"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Заузеће"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Кеш упита"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Кеш упита"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Количина слободне меморије за кеш упита."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Кеш упита"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Операције на резултатима упита"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Дозвољава креирање привремених табела.."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Дозвољава креирање привремених табела.."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+msgid "Sort rows"
+msgstr "Статус"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Провери табелу"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s табела"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Величина прихватника за сортирање"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Направи табелу"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Тренутни број уписа на чекању."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Прикажи отворене табеле"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Формат датотека за увоз"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Број fsync-ова за датотеку дневника на чекању."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Направи нову табелу у бази %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Број пута када је брава за табелу одмах добављена."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Кеш кључева"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Број нити које нису успаване."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Конекције"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "макс. истовремених веза"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "макс. истовремених веза"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Формат датотека за увоз"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Број уписа учињених у InnoDB оставу бафера."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Величина прихватника"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "макс. истовремених веза"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11841,9 +12940,6 @@ msgstr "Промени име табеле у "
#~ msgid "seconds"
#~ msgstr "у секунди"
-#~ msgid "Query results"
-#~ msgstr "Операције на резултатима упита"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Број слободних меморијских блокова у у кешу упита."
diff --git a/po/sr@latin.po b/po/sr@latin.po
index f2ac206bab..ad6765ad28 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic \n"
"Language-Team: serbian_latin \n"
@@ -11736,6 +11736,1109 @@ msgstr "naziv za VIEW"
msgid "Rename view to"
msgstr "Promeni ime tabele u "
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Persijski"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "max. concurrent connections"
+msgid "Current amount of Questions: %s"
+msgstr "maks. istovremenih veza"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Prikaži kompletne upite"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Očisti keš upita"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL upit"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Izaberi tabele"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Napravi relaciju"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Persijski"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Opis"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL set karaktera"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Keš upita"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server ne odgovara"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Zauzeće"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Keš upita"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Keš upita"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Količina slobodne memorije za keš upita."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Keš upita"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Operacije na rezultatima upita"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Dozvoljava kreiranje privremenih tabela.."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Dozvoljava kreiranje privremenih tabela.."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Sub"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Proveri tabelu"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabela"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Veličina prihvatnika za sortiranje"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Napravi tabelu"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Trenutni broj upisa na čekanju."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Prikaži otvorene tabele"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format datoteka za uvoz"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Broj fsync-ova za datoteku dnevnika na čekanju."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Napravi novu tabelu u bazi %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Broj puta kada je brava za tabelu odmah dobavljena."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Keš ključeva"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Praćenje nije aktivno."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Broj niti koje nisu uspavane."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Konekcije"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "% aborted connections"
+msgstr "maks. istovremenih veza"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "rate of aborted connections"
+msgstr "maks. istovremenih veza"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format datoteka za uvoz"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Broj upisa učinjenih u InnoDB ostavu bafera."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Veličina prihvatnika"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "maks. istovremenih veza"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11832,9 +12935,6 @@ msgstr "Promeni ime tabele u "
#~ msgid "seconds"
#~ msgstr "u sekundi"
-#~ msgid "Query results"
-#~ msgstr "Operacije na rezultatima upita"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Broj slobodnih memorijskih blokova u u kešu upita."
diff --git a/po/sv.po b/po/sv.po
index 48587a5813..9fa13406ee 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-31 21:19+0200\n"
"Last-Translator: \n"
"Language-Team: swedish \n"
@@ -11450,6 +11450,1122 @@ msgstr "VIEW namn"
msgid "Rename view to"
msgstr "Ändra namn till"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Frågor"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Nuvarande anslutning"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Visa SQL-frågor"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Rensa frågecache"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL-frågor"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time är definerad till %d sekund(er)."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Visa frågerutan"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log är aktiverad."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Rensa serier"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Skapa version"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Version"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "Du bör uppgradera till %s %s eller senare."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Beskrivning"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL teckenuppsättning"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Frågecache"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Servern svarar inte"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Visa använt utrymme"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Frågecache"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Frågecache"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Mängden fritt minne för frågecache."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Frågecache"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Visa resultat"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Tillåter skapande av temporära tabeller."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Tillåter skapande av temporära tabeller."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Starta rad"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Det finns inga rutiner att visa."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Var länkarna i tabellraden visas"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tabell"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Storlek för sorteringsbuffert"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Skapa tabell"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Nuvarande antal väntande skrivningar."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Visa öppna tabeller"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Format på importerad fil"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Antalet väntande fsync() av loggfil."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Skapa ny tabell i databas %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Antalet gånger som ett tabellås förvärvades omedelbart."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Nyckelcache"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Spårning är inte aktiv."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Antalet trådar som inte är vilande."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time är definerad till %d sekund(er)."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Förbindelser"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Komprimera anslutning"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Bestående anslutningar"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Format på importerad fil"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Kunde inte spara den senaste tabellen"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "Antalet skrivningar gjorda till InnoDB-bufferten."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Buffertstorlek"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Max. samtidiga förbindelser"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS arbetsbok"
@@ -11570,9 +12686,6 @@ msgstr "Ändra namn till"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Jämför exekveringstid (millisekunder"
-#~ msgid "Query results"
-#~ msgstr "Visa resultat"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD filändelse är nödvändig för tabell. "
diff --git a/po/ta.po b/po/ta.po
index 08d5147943..8ffb299e79 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
@@ -10772,6 +10772,1035 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+msgid "Questions below 1,000"
+msgstr ""
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+msgid "slow query rate"
+msgstr ""
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+msgid "Long query time"
+msgstr ""
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+msgid "Slow query logging"
+msgstr ""
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+msgid "Release Series"
+msgstr ""
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, php-format
+msgid "Current version: %s"
+msgstr ""
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+msgid "Minor Version"
+msgstr ""
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Action"
+msgid "Distribution"
+msgstr "செயல்"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+msgid "memcached usage"
+msgstr ""
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+msgid "Query Cache usage"
+msgstr ""
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+msgid "Query cache min result size"
+msgstr ""
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+msgid "Sort rows"
+msgstr ""
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+msgid "% temp disk tables"
+msgstr ""
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+msgid "rate of table open"
+msgstr ""
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+msgid "rate of open files"
+msgstr ""
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+msgid "Immediate table locks %"
+msgstr ""
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, php-format
+msgid "% connections used"
+msgstr ""
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+msgid "rate of aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgid "Inline Edit"
#~ msgstr "உள்வரிசை"
diff --git a/po/te.po b/po/te.po
index f269584ef2..2c8873f2d7 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
@@ -11011,6 +11011,1057 @@ msgstr "నామధేయమును చూపుము"
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Relations"
+msgid "Questions below 1,000"
+msgstr "సంబంధాలు"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "అనుసంధానాలు"
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+msgid "slow query rate"
+msgstr ""
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+msgid "Long query time"
+msgstr ""
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+msgid "Slow query logging"
+msgstr ""
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+msgid "Release Series"
+msgstr ""
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "More settings"
+msgid "Current version: %s"
+msgstr "మరిన్ని అమరికలు"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+msgid "Minor Version"
+msgstr ""
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "వివరణ"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+msgid "memcached usage"
+msgstr ""
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+msgid "Query Cache usage"
+msgstr ""
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+msgid "Query cache min result size"
+msgstr ""
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "మొదలుపెట్టు"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s పట్టిక"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+# మొదటి అనువాదము
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgctxt "short form"
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "పట్టికను సృష్టించు"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+msgid "rate of open files"
+msgstr ""
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+msgid "Immediate table locks %"
+msgstr ""
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "అనుసంధానాలు"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "అనుసంధానాలు"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "అనుసంధానాలు"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "విషయ సూచిక"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Server configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "సేవకి స్వరూపణం"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
# మొదటి అనువాదము
#, fuzzy
#~ msgctxt "PDF"
diff --git a/po/th.po b/po/th.po
index 0ddcd3daad..e25fbc928a 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-24 11:50+0200\n"
"Last-Translator: Waitaya Krongapiradee \n"
"Language-Team: thai \n"
@@ -11348,6 +11348,1080 @@ msgstr ""
msgid "Rename view to"
msgstr "เปลี่ยนชื่อตารางเป็น"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "รุ่น"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "การเชื่อมต่อ"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "แสดงคำค้นแบบเต็ม"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+msgid "slow query rate"
+msgstr "คำค้น SQL"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "คำค้น SQL"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "คำค้น SQL"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "เลือกตาราง"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "รุ่นของเซิร์ฟเวอร์"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "รุ่นของ PHP"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "คำอธิบาย"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "ชุดตัวอักษร (charset) ของ MySQL"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+msgid "Query cache disabled"
+msgstr "ชนิดคำค้น"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "เนื้อที่ที่ใช้"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+msgid "Query Cache usage"
+msgstr "ชนิดคำค้น"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+msgid "Query cache fragmentation"
+msgstr "ชนิดคำค้น"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+msgid "Query cache max size"
+msgstr "ชนิดคำค้น"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "ผลลัพธ์ SQL"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "อนุญาตให้สร้างตารางชั่วคราว."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "อนุญาตให้สร้างตารางชั่วคราว."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "ส."
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are too many joins without indexes."
+msgstr "ตารางที่ถูกติดตาม"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s ตาราง"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "เริ่มหน้าใหม่"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+msgid "% open files"
+msgstr "แสดงตาราง"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+msgid "rate of open files"
+msgstr "ชุดอักขระของไฟล์ (character set):"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "สร้างตารางในฐานข้อมูลนี้ %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+msgid "thread cache"
+msgstr "ชนิดคำค้น"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "หยุดการติดตามแล้ว"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "การเชื่อมต่อ"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "การเชื่อมต่อ"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "การเชื่อมต่อ"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "สารบัญ"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11428,9 +12502,6 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ msgid "seconds"
#~ msgstr "ต่อวินาที"
-#~ msgid "Query results"
-#~ msgstr "ผลลัพธ์ SQL"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "เริ่มใหม่"
diff --git a/po/tr.po b/po/tr.po
index 3bb275ea0a..9d501b5183 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-10 21:18+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish \n"
@@ -11435,6 +11435,1122 @@ msgstr "GÖRÜNÜM adı"
msgid "Rename view to"
msgstr "Görünümü yeniden şuna adlandır"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "Sorular"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "Şu anki bağlantı"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "SQL sorgularını göster"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Sorgu önbelleğini temizle"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL sorguları"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time %d saniyeye ayarlı."
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Sorgu kutusunu göster"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log etkinleştirildi."
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "Diziyi temizle"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Sürüm oluştur"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Sürüm"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "%s %s veya sonrasına yükseltmelisiniz."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Açıklama"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL karakter grubu"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Sorgu önbelleği"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Sunucu yanıt vermiyor"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Alan kullanımı"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Sorgu önbelleği"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Sorgu önbelleği"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Sorgu önbelleği için boş bellek miktarıdır."
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Sorgu önbelleği"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Sorgu sonuçları"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Geçici tablolara oluşturulmasına izin verir."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Geçici tablolara oluşturulmasına izin verir."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start row"
+msgid "Sort rows"
+msgstr "Başlangıç satırı"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "Görüntülemek için yordamlar yok."
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "Tablo satır bağlantılarının nerede gösterileceği"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s tablo"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Arabellek boyutunu sırala"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Tablo oluştur"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Şu anki bekleyen yazma sayısıdır."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Açık tabloları göster"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "İçe aktarılmış dosyanın biçimi"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s veritabanında yeni tablo oluştur"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Anahtar önbelleği"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "İzleme aktif değil."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Hala faaliyette olan işlemler sayısıdır."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time %d saniyeye ayarlı."
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Bağlantılar"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Bağlantıyı sıkıştır"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Sürekli bağlantılar"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "İçe aktarılmış dosyanın biçimi"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "Son tablo kaydedilemedi"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Arabellek havuzu boyutu"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "En fazla eşzamanlı bağlantı"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Kitabı"
@@ -11558,9 +12674,6 @@ msgstr "Görünümü yeniden şuna adlandır"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Sorgu işletim süresi karşılaştırması (mikro saniye olarak)"
-#~ msgid "Query results"
-#~ msgstr "Sorgu sonuçları"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "Çizelgeler için GD uzantısı gerekli."
diff --git a/po/tt.po b/po/tt.po
index 3e3fa319e7..588c8e4d73 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \n"
@@ -11554,6 +11554,1094 @@ msgstr ""
msgid "Rename view to"
msgstr "Tüşämä adın üzgärtü"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+msgid "Questions below 1,000"
+msgstr "Farsíça"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "Totaşular"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+msgid "% slow queries"
+msgstr "Tulı Sorawlar Kürsät"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Soraw alxäteren awdar"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+msgid "Long query time"
+msgstr "SQL-soraw"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+msgid "Slow query logging"
+msgstr "SQL-soraw"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Tüşämä Saylaw"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+msgid "Current version: %s"
+msgstr "Server söreme"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+msgid "Minor Version"
+msgstr "Farsíça"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "You should upgrade to %s %s or later."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Açıqlama"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL bilgelämäse"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Soraw alxätere"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Bu server endäşmi"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Totılğan Alan"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Soraw alxätere"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Soraw alxätere"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Soraw alxätere"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Soraw qaytarmasın eşkärtü"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Waqıtlı tüşämä yasaw xoquqı."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Waqıtlı tüşämä yasaw xoquqı."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Şmb"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+msgid "There are too many joins without indexes."
+msgstr "Tüşämä tikşerü"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "%s tüşämä"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Tezü bufer küläme"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+msgid "rate of table open"
+msgstr "Yaña Bit yaratu"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+msgid "The rate of opening tables is high."
+msgstr "Yazılğan bit sanı bu."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Açıq tüşämä tezmäse"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Yöklänğan birem tözeleşe"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+msgid "The rate of opening files is high."
+msgstr "Yazılğan bit sanı bu."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "%s biremlegendä yaña tüşämä yaratu"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Tezeş alxätere"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+msgid "There are too many threads that are slow to launch."
+msgstr "Açıq toruçı birem sanı."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Totaşular"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "Totaşular"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "Totaşular"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Yöklänğan birem tözeleşe"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "You do not have InnoDB enabled."
+msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Bufer pul olılığı"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11651,9 +12739,6 @@ msgstr "Tüşämä adın üzgärtü"
#~ msgid "seconds"
#~ msgstr "sekund sayın"
-#~ msgid "Query results"
-#~ msgstr "Soraw qaytarmasın eşkärtü"
-
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Awdar"
diff --git a/po/ug.po b/po/ug.po
index f745740805..099e2f7c84 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \n"
@@ -11105,6 +11105,1072 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "نەشىر"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "SQL query"
+msgid "slow query rate"
+msgstr "SQL سورىقى"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+msgid "Long query time"
+msgstr ""
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "SQL query"
+msgid "Slow query logging"
+msgstr "SQL سورىقى"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select All"
+msgid "Release Series"
+msgstr "ھەممىنى تاللاش"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "نەشىرنى قۇىماق"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "PHP Version"
+msgid "Minor Version"
+msgstr "PHPنۇسخىسى"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "ئىزاھات"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "مۇلازىمىتېردا ئىنكاس يوق"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Latched pages"
+msgid "memcached usage"
+msgstr "قۇلۇپلانغان بەت"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+msgid "Query Cache usage"
+msgstr ""
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+msgid "Query cache min result size"
+msgstr ""
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Sort"
+msgid "Sort rows"
+msgstr "تۈرلەش"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are too many joins without indexes."
+msgstr "ئىزلانغان جەدۋەل"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s جەدۋەل"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create"
+msgid "rate of table open"
+msgstr "قۇرۇش"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "ئىزلاش ئاكتىپ ئەمەس"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "PBMS connection failed:"
+msgid "% connections used"
+msgstr "PBMS ئۇلىنالمىدى:"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+msgid "% aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+msgid "rate of aborted connections"
+msgstr ""
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not load default configuration from: %1$s"
+msgid "You do not have InnoDB enabled."
+msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/uk.po b/po/uk.po
index a2276cd548..76d0573f11 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-07-03 18:10+0200\n"
"Last-Translator: \n"
"Language-Team: ukrainian \n"
@@ -11144,6 +11144,1080 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Relations"
+msgid "Questions below 1,000"
+msgstr "Зв'язки"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "Current amount of Questions: %s"
+msgstr "З'єднань"
+
+#: po/advisory_rules.php:15
+#, php-format
+msgid "% slow queries"
+msgstr ""
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "Показати блок запиту"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "in query"
+msgid "Long query time"
+msgstr "по запиту"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "Показати блок запиту"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Вибрати таблиці"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "General relation features"
+msgid "Current version: %s"
+msgstr "Загальні можливості"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "PHP Version"
+msgid "Minor Version"
+msgstr "Версія PHP"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Опис"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL Charset"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+msgid "Query cache disabled"
+msgstr ""
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Простір, що використовується"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query Cache usage"
+msgstr "Простір, що використовується"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Результати запиту"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Дозволити створювати тимчасові таблиці."
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Дозволити створювати тимчасові таблиці."
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Sort rows"
+msgstr "Показано записи "
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s таблиця"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create a page"
+msgid "rate of table open"
+msgstr "Створити нову сторінку"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, php-format
+msgid "% open files"
+msgstr ""
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Character set of the file:"
+msgid "rate of open files"
+msgstr "Кодування файлу:"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "Створити нову таблицю в БД %s"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Трекінг не активний."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "З'єднань"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Connections"
+msgid "% aborted connections"
+msgstr "З'єднань"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Connections"
+msgid "rate of aborted connections"
+msgstr "З'єднань"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Table of contents"
+msgid "rate of aborted clients"
+msgstr "Зміст"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11214,9 +12288,6 @@ msgstr ""
#~ msgid "seconds"
#~ msgstr "Секунда"
-#~ msgid "Query results"
-#~ msgstr "Результати запиту"
-
#~ msgid "Show processes"
#~ msgstr "Показати процеси"
diff --git a/po/ur.po b/po/ur.po
index 63c20cec80..26f17a71d6 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan \n"
"Language-Team: Urdu \n"
@@ -11129,6 +11129,1080 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "نسخے"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "SQL queries"
+msgid "% slow queries"
+msgstr "SQL طلب"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Show query box"
+msgid "slow query rate"
+msgstr "طلب خانہ دکھائیں"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL طلب"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "طلب خانہ دکھائیں"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Release Series"
+msgstr "SQL طلب"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "General relation features"
+msgid "Current version: %s"
+msgstr "جنرل ریلیشن فیچرز"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Versions"
+msgid "Minor Version"
+msgstr "نسخے"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔"
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "وضاحت"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+msgid "MySQL Architecture"
+msgstr ""
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "SQL query history table"
+msgid "Query cache disabled"
+msgstr "SQL طلب لاگ جدول"
+
+#: po/advisory_rules.php:66
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+msgid "memcached usage"
+msgstr ""
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query results"
+msgid "Query Cache usage"
+msgstr "طلب نتائج"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+msgid "Query cache max size"
+msgstr ""
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "طلب نتائج"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, php-format
+msgid "% sorts that cause temporary tales"
+msgstr ""
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Startup"
+msgid "Sort rows"
+msgstr "ابتدائیہ"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s جدول"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create Table"
+msgid "rate of table open"
+msgstr "جدول بنائیں"
+
+#: po/advisory_rules.php:176
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Could not open file: %s"
+msgid "% open files"
+msgstr "مسل نہیں کھول سکتا: %s"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "درآمد مسل کی وضع"
+
+#: po/advisory_rules.php:186
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+msgid "Immediate table locks %"
+msgstr ""
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+msgid "thread cache"
+msgstr ""
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "کھوج غیر فعال ہے۔"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "PBMS connection failed:"
+msgid "% connections used"
+msgstr "PBMS جڑت ناکام ہوا:"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "جڑنے کو سکیڑیں"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "بہتر جوڑ"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "درآمد مسل کی وضع"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not open file: %s"
+msgid "You do not have InnoDB enabled."
+msgstr "مسل نہیں کھول سکتا: %s"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -11210,9 +12284,6 @@ msgstr ""
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "طلب چلت وقت موازنہ (مائیکروسیکنڈ میں)"
-#~ msgid "Query results"
-#~ msgstr "طلب نتائج"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "GD توسیع اس چارٹ کے لیے درکار ہے۔"
diff --git a/po/uz.po b/po/uz.po
index c78e4acd1a..c367ccf2c9 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \n"
@@ -12344,6 +12344,1115 @@ msgstr "Ном кўриниши"
msgid "Rename view to"
msgstr "Кўриниш номини ўзгартириш"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Версиялар"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Insecure connection"
+msgid "Current amount of Questions: %s"
+msgstr "Нохавфсиз уланиш"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Show SQL сўровларини кўрсатиш"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "Сўровлар кешини дефрагментация қилиш"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL сўровлари"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Slow query logging"
+msgstr "SQL сўровлари қутиси"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Жадвалларни танланг"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Версиясини тузиш"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Версия"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Тавсифи"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-кодировка"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "Сўровлар кеши"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Сервер жавоб бермаяпти"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Фойдаланилаётган жой"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "Сўровлар кеши"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "Сўровлар кеши"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "Сўровлар кеши учун бўш хотира ҳажми"
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "Сўровлар кеши"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "Сўров натижаларини ишлатиш"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Бошлаш"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are too many joins without indexes."
+msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "Жадваллар сони: \"%s\""
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Сортировка буфери ҳажми"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Жадвал тузиш"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Тугалланмаган ёзиш операциялари сони."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Очиқ жадваллар рўйхати"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Импорт қилинаётган файл формати"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Индекс кеши"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Кузатиш фаол эмас."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Фаол ҳолатда бўлган жараёнлар сони."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Уланишлар"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Уланишни қисиш"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Доимий уланишлар"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Импорт қилинаётган файл формати"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Буфер пули ҳажми"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Максимал уланишлар сони "
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS иш китоби"
@@ -12458,9 +13567,6 @@ msgstr "Кўриниш номини ўзгартириш"
#~ msgid "seconds"
#~ msgstr "секундига"
-#~ msgid "Query results"
-#~ msgstr "Сўров натижаларини ишлатиш"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "Сўровлар кешидаги бўш хотира блоклари сони."
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 4a57048744..db9eb18e68 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
@@ -12408,6 +12408,1116 @@ msgstr "Nom ko‘rinishi"
msgid "Rename view to"
msgstr "Ko‘rinish nomini o‘zgartirish"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "Vеrsiyalar"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Insecure connection"
+msgid "Current amount of Questions: %s"
+msgstr "Noxavfsiz ulanish"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "Show SQL so‘rovlarini ko‘rsatish"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "So‘rovlar keshini defragmentatsiya qilish"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL so‘rovlari"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Slow query logging"
+msgstr "SQL so‘rovlari qutisi"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "Jadvallarni tanlang"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "Vеrsiyasini tuzish"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "Vеrsiya"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "Tavsifi"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL-kodirovka"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "So‘rovlar keshi"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "Server javob bermayapti"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "Foydalanilayotgan joy"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "So‘rovlar keshi"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "So‘rovlar keshi"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi"
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "So‘rovlar keshi"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "So‘rov natijalarini ishlatish"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Start"
+msgid "Sort rows"
+msgstr "Boshlash"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are too many joins without indexes."
+msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "% temp disk tables"
+msgstr "Jadvallar soni: \"%s\""
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "Sortirovka buferi hajmi"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "Jadval tuzish"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "Tugallanmagan yozish operatsiyalari soni."
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "Ochiq jadvallar ro‘yxati"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "Import qilinayotgan fayl formati"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni."
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+"Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni."
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "Indeks keshi"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "Kuzatish faol emas."
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "Faol holatda bo‘lgan jarayonlar soni."
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "Ulanishlar"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "Ulanishni qisish"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "Doimiy ulanishlar"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "Import qilinayotgan fayl formati"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "You do not have InnoDB enabled."
+msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni."
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "Bufer puli hajmi"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "Maksimal ulanishlar soni "
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS ish kitobi"
@@ -12522,9 +13632,6 @@ msgstr "Ko‘rinish nomini o‘zgartirish"
#~ msgid "seconds"
#~ msgstr "sekundiga"
-#~ msgid "Query results"
-#~ msgstr "So‘rov natijalarini ishlatish"
-
#~ msgid "The number of free memory blocks in query cache."
#~ msgstr "So‘rovlar keshidagi bo‘sh xotira bloklari soni."
diff --git a/po/zh_CN.po b/po/zh_CN.po
index b32e3a79b3..52364b1da1 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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-08-11 04:40+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
@@ -11003,6 +11003,1122 @@ msgstr "视图名"
msgid "Rename view to"
msgstr "将视图改名为"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Questions"
+msgid "Questions below 1,000"
+msgstr "内部查询"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "当前连接"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "显示 SQL 查询"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "强制更新查询缓存"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL 查询"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "long_query_time is currently set to %ss."
+msgstr "long_query_time 已设为 %d 秒。"
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "显示查询框"
+
+#: po/advisory_rules.php:31
+#, fuzzy
+#| msgid "slow_query_log is enabled."
+msgid "The slow query log is disabled."
+msgstr "slow_query_log 已启用。"
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Clear series"
+msgid "Release Series"
+msgstr "清除所有数据"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "创建版本"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "版本"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "您应升级到 %s %s 或更高版本。"
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "说明"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL 字符集"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "查询缓存"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "服务器没有响应"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "已用空间"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "查询缓存"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "查询缓存"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "查询缓存中空闲的内存总数。"
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "查询缓存"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "查询结果"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "允许创建临时表。"
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "允许创建临时表。"
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Sort rows"
+msgstr "文本框行"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "There are too many joins without indexes."
+msgstr "没有程序。"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "The rate of reading the next table row is high."
+msgstr "表中每行数据操作链接位置"
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s 张表"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "排序缓存大小"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "新建数据表"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "当前挂起的写操作数。"
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "显示打开的表"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "导入文件的格式"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "当前挂起的 fsync 日志文件数。"
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "在数据库 %s 中新建一张数据表"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "立即需要锁定表的次数。"
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "键缓存"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "追踪已禁用。"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "非睡眠状态的线程数量。"
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, fuzzy, php-format
+#| msgid "long_query_time is set to %d second(s)."
+msgid "slow_launch_time is set to %s"
+msgstr "long_query_time 已设为 %d 秒。"
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "连接"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "压缩连接"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "持久连接"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "导入文件的格式"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "无法保存最近使用的表"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "写入 InnoDB 缓冲池的次数。"
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "缓冲池大小"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "最大并发连接数"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS 工作簿"
@@ -11114,9 +12230,6 @@ msgstr "将视图改名为"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "查询执行时间对比 (单位:微秒)"
-#~ msgid "Query results"
-#~ msgstr "查询结果"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "绘制图表需要 GD 扩展。"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 206eefdbe2..436aae7393 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.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-08-11 13:41+0200\n"
+"POT-Creation-Date: 2011-08-11 13:46+0200\n"
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
"Last-Translator: \n"
"Language-Team: chinese_traditional \n"
@@ -11231,6 +11231,1116 @@ msgstr "view名"
msgid "Rename view to"
msgstr "將 view改名爲"
+#: po/advisory_rules.php:5
+msgid "Uptime below one day"
+msgstr ""
+
+#: po/advisory_rules.php:6
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:7
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: po/advisory_rules.php:8
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: po/advisory_rules.php:10
+#, fuzzy
+#| msgid "Versions"
+msgid "Questions below 1,000"
+msgstr "版本"
+
+#: po/advisory_rules.php:11
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: po/advisory_rules.php:12
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: po/advisory_rules.php:13
+#, fuzzy, php-format
+#| msgid "Current connection"
+msgid "Current amount of Questions: %s"
+msgstr "目前連線"
+
+#: po/advisory_rules.php:15
+#, fuzzy, php-format
+#| msgid "Show SQL queries"
+msgid "% slow queries"
+msgstr "顯示 SQL 查詢"
+
+#: po/advisory_rules.php:16
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: po/advisory_rules.php:17 po/advisory_rules.php:22
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: po/advisory_rules.php:18
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: po/advisory_rules.php:20
+#, fuzzy
+#| msgid "Flush query cache"
+msgid "slow query rate"
+msgstr "強制更新查詢快取"
+
+#: po/advisory_rules.php:21
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: po/advisory_rules.php:23
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: po/advisory_rules.php:25
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Long query time"
+msgstr "SQL 查詢"
+
+#: po/advisory_rules.php:26
+msgid ""
+"long_query_time is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: po/advisory_rules.php:27
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"enviroment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: po/advisory_rules.php:28
+#, php-format
+msgid "long_query_time is currently set to %ss."
+msgstr ""
+
+#: po/advisory_rules.php:30
+#, fuzzy
+#| msgid "Show query box"
+msgid "Slow query logging"
+msgstr "顯示查詢框"
+
+#: po/advisory_rules.php:31
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: po/advisory_rules.php:32
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: po/advisory_rules.php:33
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:35
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Release Series"
+msgstr "選擇表"
+
+#: po/advisory_rules.php:36
+msgid "The MySQL server version less then 5.1."
+msgstr ""
+
+#: po/advisory_rules.php:37
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
+#, fuzzy, php-format
+#| msgid "Create version"
+msgid "Current version: %s"
+msgstr "建立版本"
+
+#: po/advisory_rules.php:40 po/advisory_rules.php:45
+#, fuzzy
+#| msgid "Version"
+msgid "Minor Version"
+msgstr "版本"
+
+#: po/advisory_rules.php:41
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: po/advisory_rules.php:42
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: po/advisory_rules.php:46
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: po/advisory_rules.php:47
+#, fuzzy
+#| msgid "You should upgrade to %s %s or later."
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr "您應升級到 %s %s 或更高版本。"
+
+#: po/advisory_rules.php:50 po/advisory_rules.php:55
+#, fuzzy
+#| msgid "Description"
+msgid "Distribution"
+msgstr "說明"
+
+#: po/advisory_rules.php:51
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: po/advisory_rules.php:52
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: po/advisory_rules.php:53
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:56
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: po/advisory_rules.php:57
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: po/advisory_rules.php:58
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: po/advisory_rules.php:60
+#, fuzzy
+#| msgid "MySQL charset"
+msgid "MySQL Architecture"
+msgstr "MySQL 字集"
+
+#: po/advisory_rules.php:61
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: po/advisory_rules.php:62
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:63
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: po/advisory_rules.php:65
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache disabled"
+msgstr "查詢快取"
+
+#: po/advisory_rules.php:66
+#, fuzzy
+#| msgid "The server is not responding"
+msgid "The query cache is not enabled."
+msgstr "伺服器沒有響應"
+
+#: po/advisory_rules.php:67
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: po/advisory_rules.php:68
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "memcached usage"
+msgstr "已用空間"
+
+#: po/advisory_rules.php:71
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: po/advisory_rules.php:72
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: po/advisory_rules.php:73
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: po/advisory_rules.php:75
+msgid "Query cache efficiency (%)"
+msgstr ""
+
+#: po/advisory_rules.php:76
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: po/advisory_rules.php:77
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: po/advisory_rules.php:78
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:80
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query Cache usage"
+msgstr "查詢快取"
+
+#: po/advisory_rules.php:81
+#, php-format
+msgid "Less than 80% of the query cache is being utilized."
+msgstr ""
+
+#: po/advisory_rules.php:82
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: po/advisory_rules.php:83
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:85
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache fragmentation"
+msgstr "查詢快取"
+
+#: po/advisory_rules.php:86
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: po/advisory_rules.php:87
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: po/advisory_rules.php:88
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: po/advisory_rules.php:90
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: po/advisory_rules.php:91
+#, fuzzy
+#| msgid "The amount of free memory for query cache."
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr "查詢快取中空閒的記憶體總數"
+
+#: po/advisory_rules.php:92
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: po/advisory_rules.php:93
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%)"
+msgstr ""
+
+#: po/advisory_rules.php:95
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache max size"
+msgstr "查詢快取"
+
+#: po/advisory_rules.php:96
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: po/advisory_rules.php:97
+msgid ""
+"Depending on your enviroment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: po/advisory_rules.php:98
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:100
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache min result size"
+msgstr "查詢結果"
+
+#: po/advisory_rules.php:101
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: po/advisory_rules.php:102
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: po/advisory_rules.php:103
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: po/advisory_rules.php:105
+#, fuzzy, php-format
+#| msgid "Allows creating temporary tables."
+msgid "% sorts that cause temporary tales"
+msgstr "允許建立臨時表"
+
+#: po/advisory_rules.php:106 po/advisory_rules.php:111
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Too many sorts are causing temporary tables."
+msgstr "允許建立臨時表"
+
+#: po/advisory_rules.php:107 po/advisory_rules.php:112
+msgid ""
+"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
+"on your system memory limits"
+msgstr ""
+
+#: po/advisory_rules.php:108
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: po/advisory_rules.php:110
+msgid "rate of sorts that cause temporary tables"
+msgstr ""
+
+#: po/advisory_rules.php:113
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: po/advisory_rules.php:115
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Sort rows"
+msgstr "文字框行"
+
+#: po/advisory_rules.php:116
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: po/advisory_rules.php:117
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed fields in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: po/advisory_rules.php:118
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: po/advisory_rules.php:120
+msgid "rate of joins without indexes"
+msgstr ""
+
+#: po/advisory_rules.php:121
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are too many joins without indexes."
+msgstr "沒有可上傳的檔案"
+
+#: po/advisory_rules.php:122
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"fields being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: po/advisory_rules.php:123
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:125
+msgid "rate of reading first index entry"
+msgstr ""
+
+#: po/advisory_rules.php:126
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: po/advisory_rules.php:127
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of cpu cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: po/advisory_rules.php:128
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:130
+msgid "rate of reading fixed position"
+msgstr ""
+
+#: po/advisory_rules.php:131
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: po/advisory_rules.php:132
+msgid ""
+"This indicates many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:133
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: po/advisory_rules.php:135
+msgid "rate of reading next table row"
+msgstr ""
+
+#: po/advisory_rules.php:136
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: po/advisory_rules.php:137
+msgid ""
+"This indicates many queries are doing full table scans. Add indexes where "
+"applicable."
+msgstr ""
+
+#: po/advisory_rules.php:138
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:140
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: po/advisory_rules.php:141
+msgid "tmp_table_size and max_heap_table_size are not the same."
+msgstr ""
+
+#: po/advisory_rules.php:142
+msgid ""
+"If you have deliberatly changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increse the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: po/advisory_rules.php:143
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: po/advisory_rules.php:145
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "% temp disk tables"
+msgstr "%s 張資料表"
+
+#: po/advisory_rules.php:146 po/advisory_rules.php:151
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: po/advisory_rules.php:147
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: po/advisory_rules.php:148
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: po/advisory_rules.php:150
+msgid "temp disk rate"
+msgstr ""
+
+#: po/advisory_rules.php:152
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To elminiate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temprorary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in in the MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:153
+#, php-format
+msgid ""
+"Rate of temporay tables being written to disk: %s, this value should be less "
+"than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:155
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "MyISAM key buffer size"
+msgstr "排序快取大小"
+
+#: po/advisory_rules.php:156
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: po/advisory_rules.php:157
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: po/advisory_rules.php:158
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: po/advisory_rules.php:160
+msgid "max % MyISAM key buffer ever used"
+msgstr ""
+
+#: po/advisory_rules.php:161 po/advisory_rules.php:166
+#, php-format
+msgid "MyISAM key buffer (index cache) % used is low."
+msgstr ""
+
+#: po/advisory_rules.php:162 po/advisory_rules.php:167
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: po/advisory_rules.php:163
+#, php-format
+msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:165
+msgid "% MyISAM key buffer used"
+msgstr ""
+
+#: po/advisory_rules.php:168
+#, php-format
+msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:170
+msgid "% index reads from memory"
+msgstr ""
+
+#: po/advisory_rules.php:171
+#, php-format
+msgid "The % of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: po/advisory_rules.php:172
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: po/advisory_rules.php:173
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:175
+#, fuzzy
+#| msgid "Create table"
+msgid "rate of table open"
+msgstr "建立資料表"
+
+#: po/advisory_rules.php:176
+#, fuzzy
+#| msgid "The current number of pending writes."
+msgid "The rate of opening tables is high."
+msgstr "目前掛起的寫操作數"
+
+#: po/advisory_rules.php:177
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: po/advisory_rules.php:178
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:180
+#, fuzzy, php-format
+#| msgid "Show open tables"
+msgid "% open files"
+msgstr "顯示開啟的表"
+
+#: po/advisory_rules.php:181
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \\\"Too many open files\\\" error."
+msgstr ""
+
+#: po/advisory_rules.php:182 po/advisory_rules.php:187
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing open_files_limit."
+msgstr ""
+
+#: po/advisory_rules.php:183
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: po/advisory_rules.php:185
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of open files"
+msgstr "匯入檔案的格式"
+
+#: po/advisory_rules.php:186
+#, fuzzy
+#| msgid "The number of pending log file fsyncs."
+msgid "The rate of opening files is high."
+msgstr "目前掛起的 fsync 日志檔案數"
+
+#: po/advisory_rules.php:188
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:190
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Immediate table locks %"
+msgstr "在資料庫 %s 中建立一張資料表"
+
+#: po/advisory_rules.php:191 po/advisory_rules.php:196
+#, fuzzy
+#| msgid "The number of times that a table lock was acquired immediately."
+msgid "Too many table locks were not granted immediately."
+msgstr "立即需要鎖定表的次數"
+
+#: po/advisory_rules.php:192 po/advisory_rules.php:197
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: po/advisory_rules.php:193
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: po/advisory_rules.php:195
+msgid "Table lock wait rate"
+msgstr ""
+
+#: po/advisory_rules.php:198
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:200
+#, fuzzy
+#| msgid "Key cache"
+msgid "thread cache"
+msgstr "鍵快取"
+
+#: po/advisory_rules.php:201
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: po/advisory_rules.php:202
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: po/advisory_rules.php:203
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: po/advisory_rules.php:205
+msgid "thread cache hit rate %"
+msgstr ""
+
+#: po/advisory_rules.php:206
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache is not efficient."
+msgstr "追蹤已停用"
+
+#: po/advisory_rules.php:207
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: po/advisory_rules.php:208
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:210
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: po/advisory_rules.php:211
+#, fuzzy
+#| msgid "The number of threads that are not sleeping."
+msgid "There are too many threads that are slow to launch."
+msgstr "非睡眠狀態的程序數量"
+
+#: po/advisory_rules.php:212
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: po/advisory_rules.php:213
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: po/advisory_rules.php:215
+msgid "Slow launch time"
+msgstr ""
+
+#: po/advisory_rules.php:216
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: po/advisory_rules.php:217
+msgid ""
+"Set slow_launch_time to 1s or 2s to correctly count threads that are slow to "
+"launch"
+msgstr ""
+
+#: po/advisory_rules.php:218
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: po/advisory_rules.php:220
+#, fuzzy, php-format
+#| msgid "Connections"
+msgid "% connections used"
+msgstr "連線"
+
+#: po/advisory_rules.php:221
+msgid ""
+"The maximum amount of used connnections is getting close to the value of "
+"max_connections."
+msgstr ""
+
+#: po/advisory_rules.php:222
+msgid ""
+"Increase max_connections, or decrease wait_timeout so that connections that "
+"do not close database handlers properly get killed sooner. Make sure the "
+"code closes database handlers properly."
+msgstr ""
+
+#: po/advisory_rules.php:223
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: po/advisory_rules.php:225
+#, fuzzy
+#| msgid "Compress connection"
+msgid "% aborted connections"
+msgstr "壓縮連線"
+
+#: po/advisory_rules.php:226
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:227 po/advisory_rules.php:232
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down "
+"the source."
+msgstr ""
+
+#: po/advisory_rules.php:228
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: po/advisory_rules.php:230
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "rate of aborted connections"
+msgstr "持續連線"
+
+#: po/advisory_rules.php:231
+msgid "Too many connections are aborted"
+msgstr ""
+
+#: po/advisory_rules.php:233
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:235
+msgid "% aborted clients"
+msgstr ""
+
+#: po/advisory_rules.php:236 po/advisory_rules.php:241
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: po/advisory_rules.php:237 po/advisory_rules.php:242
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: po/advisory_rules.php:238
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: po/advisory_rules.php:240
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "rate of aborted clients"
+msgstr "匯入檔案的格式"
+
+#: po/advisory_rules.php:243
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: po/advisory_rules.php:245
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: po/advisory_rules.php:246
+#, fuzzy
+#| msgid "Could not save recent table"
+msgid "You do not have InnoDB enabled."
+msgstr "無法儲存最新資料表"
+
+#: po/advisory_rules.php:247
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: po/advisory_rules.php:248
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: po/advisory_rules.php:250
+msgid "% InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:251
+#, fuzzy
+#| msgid "The number writes done to the InnoDB buffer pool."
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr "寫入 InnoDB 快取池的次數"
+
+#: po/advisory_rules.php:252
+#, php-format
+msgid ""
+"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"innodb_log_file_size to 25% of {innodb_buffer_pool_size}. However the bigger "
+"this value, the longer the recovery time will be when database crashes, so "
+"this value should not be set much higher than 256 MiB. Please note however "
+"that you cannot simply change the value of this variable. You need to "
+"shutdown the server, remove the InnoDB log files, set the new value in my."
+"cnf, start the server, then check the error logs if everything went fine. "
+"See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:253
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: po/advisory_rules.php:255
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: po/advisory_rules.php:256
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: po/advisory_rules.php:257
+#, php-format
+msgid ""
+"It is usually sufficient to set innodb_log_file_size to 25% of the size of "
+"{innodb_buffer_pool_size}. A very innodb_log_file_size slows down the "
+"recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: po/advisory_rules.php:258
+#, php-format
+msgid "Your absolute InnoD log size is %s MiB"
+msgstr ""
+
+#: po/advisory_rules.php:260
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB buffer pool size"
+msgstr "快取池大小"
+
+#: po/advisory_rules.php:261
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: po/advisory_rules.php:262
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on perfomance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: po/advisory_rules.php:263
+msgid ""
+"You are currently using %s% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: po/advisory_rules.php:265
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "MyISAM concurrent inserts"
+msgstr "最大同時連線數"
+
+#: po/advisory_rules.php:266
+msgid "Enable concurrent_insert by setting it to 1"
+msgstr ""
+
+#: po/advisory_rules.php:267
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: po/advisory_rules.php:268
+msgid "concurrent_insert is set to 0"
+msgstr ""
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS 工作簿"
@@ -11343,9 +12453,6 @@ msgstr "將 view改名爲"
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "查詢執行時間對比 (單位:微秒)"
-#~ msgid "Query results"
-#~ msgstr "查詢結果"
-
#~ msgid "GD extension is needed for charts."
#~ msgstr "繪製圖表需要 GD 外掛"
|