The branch, master has been updated
via 2074bd87b1ddfab89fe5c522825e1f5a338598a2 (commit)
via 7ead858d587c2e62b3015b965acda2c4d9378280 (commit)
from d1803b5aee4b35e5166329daa3790de5aea6df20 (commit)
- Log -----------------------------------------------------------------
commit 2074bd87b1ddfab89fe5c522825e1f5a338598a2
Merge: 7ead858 d1803b5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Aug 11 09:14:25 2011 -0400
Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit 7ead858d587c2e62b3015b965acda2c4d9378280
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Aug 11 09:14:01 2011 -0400
More typos
-----------------------------------------------------------------------
Summary of changes:
libraries/advisory_rules.txt | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt
index 8941148..edbdb7b 100644
--- a/libraries/advisory_rules.txt
+++ b/libraries/advisory_rules.txt
@@ -240,14 +240,14 @@ rule '% temp disk tables' [Created_tmp_tables + Created_tmp_disk_tables > 0]
Created_tmp_disk_tables / (Created_tmp_tables + Created_tmp_disk_tables) * 100
value > 25
Many temporary tables are being written to disk instead of being kept in memory.
- 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 temporary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in the beginning of an <a href="http://www.facebook.com/note.php?note_id=10150111255065841&comments">Article by the Pythian Group</a>
+ 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 eliminate these you will have to rewrite your queries to avoid those conditions (Within a temporary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in the beginning of an <a href="http://www.facebook.com/note.php?note_id=10150111255065841&comments">Article by the Pythian Group</a>
%s% of all temporary tables are being written to disk, this value should be below 25% | round(value,1)
rule 'temp disk rate'
Created_tmp_disk_tables / Uptime
value * 60 * 60 > 1
Many temporary tables are being written to disk instead of being kept in memory.
- 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 <a href="http://dev.mysql.com/doc/refman/5.0/en/internal-temporary-tables.html">MySQL Documentation</a>
+ 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 eliminate 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 <a href="http://dev.mysql.com/doc/refman/5.0/en/internal-temporary-tables.html">MySQL Documentation</a>
Rate of temporay tables being written to disk: %s, this value should be less than 1 per hour | PMA_bytime(value,2)
# I couldn't find any source on the internet that suggests a direct relation between high counts of temporary tables and any of these variables.
hooks/post-receive
--
phpMyAdmin
The branch, master has been updated
via d1803b5aee4b35e5166329daa3790de5aea6df20 (commit)
from a7ed32de3a3b92262a05ed28186413e019212974 (commit)
- Log -----------------------------------------------------------------
commit d1803b5aee4b35e5166329daa3790de5aea6df20
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Thu Aug 11 15:12:45 2011 +0200
Exclude generated file from git
-----------------------------------------------------------------------
Summary of changes:
po/.gitignore | 4 +-
po/advisory_rules.php | 268 -------------------------------------------------
2 files changed, 1 insertions(+), 271 deletions(-)
delete mode 100644 po/advisory_rules.php
diff --git a/po/.gitignore b/po/.gitignore
index 5113c58..37d0c90 100644
--- a/po/.gitignore
+++ b/po/.gitignore
@@ -1,3 +1 @@
-# pootle cache
-.translation_index
-*.pending
+advisory_rules.php
diff --git a/po/advisory_rules.php b/po/advisory_rules.php
deleted file mode 100644
index f9201ba..0000000
--- a/po/advisory_rules.php
+++ /dev/null
@@ -1,268 +0,0 @@
-<?php
-/* DO NOT EDIT! */
-/* This is automatically generated file from libraries/advisory_rules.txt */
-
-echo __('Uptime below one day');
-echo __('Uptime is less than 1 day, performance tuning may not be accurate.');
-echo __('To have more accurate averages it is recommended to let the server run for longer than a day before running this analyzer');
-printf(__('The uptime is only %s'), 0);
-
-echo __('Questions below 1,000');
-echo __('Fewer than 1,000 questions have been run against this server. The recommendations may not be accurate.');
-echo __('Let the server run for a longer time until it has executed a greater amount of queries.');
-printf(__('Current amount of Questions: %s'), 0);
-
-echo __('% slow queries');
-echo __('There is a lot of slow queries compared to the overall amount of Queries.');
-echo __('You might want to increase {long_query_time} or optimize the queries listed in the slow query log');
-printf(__('The slow query rate should be below 5%%, your value is %s%%.'), 0);
-
-echo __('slow query rate');
-echo __('There is a high percentage of slow queries compared to the server uptime.');
-echo __('You might want to increase {long_query_time} or optimize the queries listed in the slow query log');
-printf(__('You have a slow query rate of %s per hour, you should have less than 1%% per hour.'), 0);
-
-echo __('Long query time');
-echo __('long_query_time is set to 10 seconds or more, thus only slow queries that take above 10 seconds are logged.');
-echo __('It is suggested to set {long_query_time} to a lower value, depending on your environment. Usually a value of 1-5 seconds is suggested.');
-printf(__('long_query_time is currently set to %ds.'), 0);
-
-echo __('Slow query logging');
-echo __('The slow query log is disabled.');
-echo __('Enable slow query logging by setting {log_slow_queries} to \'ON\'. This will help troubleshooting badly performing queries.');
-echo __('log_slow_queries is set to \'OFF\'');
-
-echo __('Release Series');
-echo __('The MySQL server version less then 5.1.');
-echo __('You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 even more so.');
-printf(__('Current version: %s'), 0);
-
-echo __('Minor Version');
-echo __('Version less than 5.1.30 (the first GA release of 5.1).');
-echo __('You should upgrade, as recent versions of MySQL 5.1 have improved performance and MySQL 5.5 even more so.');
-printf(__('Current version: %s'), 0);
-
-echo __('Minor Version');
-echo __('Version less than 5.5.8 (the first GA release of 5.5).');
-echo __('You should upgrade, to a stable version of MySQL 5.5');
-printf(__('Current version: %s'), 0);
-
-echo __('Distribution');
-echo __('Version is compiled from source, not a MySQL official binary.');
-echo __('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).');
-echo __('\'source\' found in version_comment');
-
-echo __('Distribution');
-echo __('The MySQL manual only is accurate for official MySQL binaries.');
-echo __('Percona documentation is at http://www.percona.com/docs/wiki/');
-echo __('\'percona\' found in version_comment');
-
-echo __('MySQL Architecture');
-echo __('MySQL is not compiled as a 64-bit package.');
-echo __('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.');
-printf(__('Available memory on this host: %s'), 0);
-
-echo __('Query cache disabled');
-echo __('The query cache is not enabled.');
-echo __('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\'. <b>Note:</b> 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 <a href=\"http://dev.mysql.com/doc/refman/5.1/en/ha-memcached.html\">memcached</a> 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 environment, 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 deliberately 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 increase 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 temporary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in the beginning of an <a href=\"http://www.facebook.com/note.php?note_id=10150111255065841&comments\">Article by the Pythian Group</a>');
-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 <a href=\"http://dev.mysql.com/doc/refman/5.0/en/internal-temporary-tables.html\">MySQL Documentation</a>');
-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 connections 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. <a href=\"http://www.mysqlperformanceblog.com/2008/08/23/how-to-track-down-the-source…">This article</a> 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. <a href=\"http://www.mysqlperformanceblog.com/2008/08/23/how-to-track-down-the-source…">This article</a> 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 __('Especially one a system with a lot of writes to InnoDB tables you should 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 <a href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogf…">this blog entry</a>');
-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 <a href=\"http://www.mysqlperformanceblog.com/2006/07/03/choosing-proper-innodb_log_f…">this Article</a>. 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 <a href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogf…">this blog entry</a>');
-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 performance 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 <a href=\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_…">this article</a>');
-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 <a href=\"http://dev.mysql.com/doc/refman/5.0/en/concurrent-inserts.html\">MySQL Documentation</a>');
-echo __('concurrent_insert is set to 0');
hooks/post-receive
--
phpMyAdmin
The branch, master has been updated
via a7ed32de3a3b92262a05ed28186413e019212974 (commit)
from 1e9568f13395a97f26bdecb965b573f4a4b4738b (commit)
- Log -----------------------------------------------------------------
commit a7ed32de3a3b92262a05ed28186413e019212974
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Thu Aug 11 15:11:54 2011 +0200
Update po files
-----------------------------------------------------------------------
Summary of changes:
po/advisory_rules.php | 10 +++---
po/af.po | 48 +++++++++++++-------------
po/ar.po | 60 +++++++++++++++++-----------------
po/az.po | 48 +++++++++++++-------------
po/be.po | 56 ++++++++++++++++----------------
po/be(a)latin.po | 68 +++++++++++++++++++-------------------
po/bg.po | 56 ++++++++++++++++----------------
po/bn.po | 60 +++++++++++++++++-----------------
po/br.po | 60 +++++++++++++++++-----------------
po/bs.po | 48 +++++++++++++-------------
po/ca.po | 68 +++++++++++++++++++-------------------
po/cs.po | 68 +++++++++++++++++++-------------------
po/cy.po | 52 +++++++++++++++---------------
po/da.po | 72 ++++++++++++++++++++--------------------
po/de.po | 64 ++++++++++++++++++------------------
po/el.po | 76 +++++++++++++++++++++---------------------
po/en_GB.po | 72 ++++++++++++++++++++--------------------
po/es.po | 61 +++++++++++++++++-----------------
po/et.po | 48 +++++++++++++-------------
po/eu.po | 48 +++++++++++++-------------
po/fa.po | 64 ++++++++++++++++++------------------
po/fi.po | 62 +++++++++++++++++-----------------
po/fr.po | 75 +++++++++++++++++++++---------------------
po/gl.po | 66 +++++++++++++++++++-------------------
po/he.po | 48 +++++++++++++-------------
po/hi.po | 56 ++++++++++++++++----------------
po/hr.po | 60 +++++++++++++++++-----------------
po/hu.po | 78 ++++++++++++++++++++++----------------------
po/id.po | 56 ++++++++++++++++----------------
po/it.po | 64 ++++++++++++++++++------------------
po/ja.po | 61 +++++++++++++++++-----------------
po/ka.po | 74 +++++++++++++++++++++---------------------
po/ko.po | 56 ++++++++++++++++----------------
po/lt.po | 66 +++++++++++++++++++-------------------
po/lv.po | 52 +++++++++++++++---------------
po/mk.po | 48 +++++++++++++-------------
po/ml.po | 48 +++++++++++++-------------
po/mn.po | 60 +++++++++++++++++-----------------
po/ms.po | 48 +++++++++++++-------------
po/nb.po | 62 +++++++++++++++++-----------------
po/nl.po | 60 +++++++++++++++++-----------------
po/phpmyadmin.pot | 47 +++++++++++++-------------
po/pl.po | 74 +++++++++++++++++++++---------------------
po/pt.po | 56 ++++++++++++++++----------------
po/pt_BR.po | 52 +++++++++++++++---------------
po/ro.po | 56 ++++++++++++++++----------------
po/ru.po | 56 ++++++++++++++++----------------
po/si.po | 60 +++++++++++++++++-----------------
po/sk.po | 64 ++++++++++++++++++------------------
po/sl.po | 48 +++++++++++++-------------
po/sq.po | 52 +++++++++++++++---------------
po/sr.po | 56 ++++++++++++++++----------------
po/sr(a)latin.po | 56 ++++++++++++++++----------------
po/sv.po | 64 ++++++++++++++++++------------------
po/ta.po | 48 +++++++++++++-------------
po/te.po | 48 +++++++++++++-------------
po/th.po | 52 +++++++++++++++---------------
po/tr.po | 66 +++++++++++++++++++-------------------
po/tt.po | 52 +++++++++++++++---------------
po/ug.po | 60 +++++++++++++++++-----------------
po/uk.po | 60 +++++++++++++++++-----------------
po/ur.po | 56 ++++++++++++++++----------------
po/uz.po | 78 ++++++++++++++++++++++----------------------
po/uz(a)latin.po | 86 ++++++++++++++++++++++++------------------------
po/zh_CN.po | 56 ++++++++++++++++----------------
po/zh_TW.po | 52 +++++++++++++++---------------
66 files changed, 1933 insertions(+), 1929 deletions(-)
diff --git a/po/advisory_rules.php b/po/advisory_rules.php
index 837e629..f9201ba 100644
--- a/po/advisory_rules.php
+++ b/po/advisory_rules.php
@@ -124,7 +124,7 @@ printf(__('Table joins average: %s, this value should be less than 1 per hour'),
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.');
+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');
@@ -139,12 +139,12 @@ printf(__('Rate of reading next table row: %s, this value should be less than 1
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.');
+echo __('If you have deliberately 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 increase 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 <a href=\"http://www.facebook.com/note.php?note_id=10150111255065841&comments\">Article by the Pythian Group</a>');
+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 temporary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in the beginning of an <a href=\"http://www.facebook.com/note.php?note_id=10150111255065841&comments\">Article by the Pythian Group</a>');
printf(__('%s%% of all temporary tables are being written to disk, this value should be below 25%%'), 0);
echo __('temp disk rate');
@@ -218,7 +218,7 @@ echo __('Set slow_launch_time to 1s or 2s to correctly count threads that are sl
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 __('The maximum amount of used connections 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);
@@ -249,7 +249,7 @@ 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 <a href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogf…">this blog entry</a>');
+echo __('Especially one a system with a lot of writes to InnoDB tables you should 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 <a href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogf…">this blog entry</a>');
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');
diff --git a/po/af.po b/po/af.po
index 36591cb..ce4fe95 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
+"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -638,8 +638,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -882,8 +882,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -2343,8 +2343,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -5312,8 +5312,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -6023,8 +6023,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8814,8 +8814,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -11537,8 +11537,8 @@ 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%%"
+"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
@@ -11657,8 +11657,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -11724,7 +11724,7 @@ 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 "
+"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 "
@@ -11788,9 +11788,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -11816,7 +11816,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -12082,7 +12082,7 @@ msgstr ""
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -12193,7 +12193,7 @@ msgstr ""
#: po/advisory_rules.php:252
#, php-format
msgid ""
-"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
diff --git a/po/ar.po b/po/ar.po
index 9c0da6e..69815b6 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2011-08-07 03:51+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10(a)windowslive.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -347,8 +347,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: db_operations.php:584
msgid "Edit or export relational schema"
@@ -624,8 +624,8 @@ msgstr "التتبع غير نشط."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -859,8 +859,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل "
"المشكلة."
@@ -2259,8 +2259,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه."
#: libraries/auth/config.auth.lib.php:109
@@ -5199,8 +5199,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5915,8 +5915,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8059,8 +8059,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: main.php:314
msgid ""
@@ -8801,8 +8801,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -11536,8 +11536,8 @@ 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%%"
+"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
@@ -11660,8 +11660,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -11727,7 +11727,7 @@ 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 "
+"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 "
@@ -11791,9 +11791,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -11820,7 +11820,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -12093,7 +12093,7 @@ msgstr "اتصالات"
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -12211,7 +12211,7 @@ msgstr ""
#: po/advisory_rules.php:252
#, php-format
msgid ""
-"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
@@ -12440,8 +12440,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
-#~ "sهنا%s."
+#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
+#~ "%sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index 2966b45..ab08f72 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
@@ -639,8 +639,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -886,8 +886,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -2372,8 +2372,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -5380,8 +5380,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -6100,8 +6100,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8998,8 +8998,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
@@ -11747,8 +11747,8 @@ 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%%"
+"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
@@ -11873,8 +11873,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -11940,7 +11940,7 @@ 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 "
+"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 "
@@ -12004,9 +12004,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -12032,7 +12032,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -12302,7 +12302,7 @@ msgstr "Elaqeler"
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -12418,7 +12418,7 @@ msgstr ""
#: po/advisory_rules.php:252
#, php-format
msgid ""
-"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
diff --git a/po/be.po b/po/be.po
index 0b371ec..12bef42 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
@@ -638,11 +638,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
-"sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
+"%sдакумэнтацыі%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -892,8 +892,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -912,8 +912,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
-"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
+"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:335
@@ -2423,8 +2423,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -5494,8 +5494,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -6286,8 +6286,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -9275,8 +9275,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
@@ -12183,8 +12183,8 @@ 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%%"
+"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
@@ -12312,8 +12312,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -12380,7 +12380,7 @@ 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 "
+"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 "
@@ -12444,9 +12444,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -12472,7 +12472,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -12754,7 +12754,7 @@ msgstr "Падлучэньні"
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -12874,7 +12874,7 @@ msgstr "Колькасьць запісаў, зробленых у буфэрн
#: po/advisory_rules.php:252
#, php-format
msgid ""
-"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 4fbb884..268eb66 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
+"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: be@latin\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
@@ -644,11 +644,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
-"sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
+"%sdakumentacyi%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -889,8 +889,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -909,8 +909,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
-"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
+"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:335
@@ -2432,8 +2432,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -5472,8 +5472,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -6266,8 +6266,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -7995,8 +7995,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
-"sdakumentacyi%s."
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
+"%sdakumentacyi%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8196,8 +8196,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
-"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
+"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -9255,8 +9255,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
@@ -12154,8 +12154,8 @@ 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%%"
+"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
@@ -12284,8 +12284,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -12351,7 +12351,7 @@ 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 "
+"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 "
@@ -12415,9 +12415,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -12443,7 +12443,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -12725,7 +12725,7 @@ msgstr "Padłučeńni"
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -12845,7 +12845,7 @@ 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 "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
diff --git a/po/bg.po b/po/bg.po
index ef3c895..0c39b39 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
"Last-Translator: <stoyanster(a)gmail.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -613,8 +613,8 @@ msgstr "Проследяването е неактивно."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -851,8 +851,8 @@ msgstr "Схемата беше запазена във файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -2269,8 +2269,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Изглежда не се създали конфигурационен файл. Вероятно ще искате да "
"използвате %1$sскрипта за настройки%2$s, за да го създадете."
@@ -5161,8 +5161,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5839,8 +5839,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -7437,8 +7437,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
-"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
-"s."
+"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
+"%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8119,8 +8119,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %"
-"sскрипта за настройки%s."
+"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез "
+"%sскрипта за настройки%s."
#: prefs_manage.php:300
msgid "Save to browser's storage"
@@ -8564,8 +8564,8 @@ msgstr "Изтриване на БД, които имат имена като т
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
@@ -11263,8 +11263,8 @@ 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%%"
+"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
@@ -11393,8 +11393,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -11462,7 +11462,7 @@ 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 "
+"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 "
@@ -11526,9 +11526,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -11555,7 +11555,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -11833,7 +11833,7 @@ msgstr "Конекции"
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -11951,7 +11951,7 @@ msgstr ""
#: po/advisory_rules.php:252
#, php-format
msgid ""
-"Especiallay one a system with a lot of writes to InnoDB tables you shoud set "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
diff --git a/po/bn.po b/po/bn.po
index e2cc241..e1f78b6 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
+"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -635,8 +635,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -884,11 +884,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -2398,8 +2398,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -5451,12 +5451,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -6205,8 +6205,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -9161,13 +9161,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -12038,8 +12038,8 @@ 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%%"
+"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
@@ -12168,8 +12168,8 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
@@ -12236,7 +12236,7 @@ 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 "
+"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 "
@@ -12300,9 +12300,9 @@ msgstr ""
#: po/advisory_rules.php:142
msgid ""
-"If you have deliberatly changed one of either: The server uses the lower "
+"If you have deliberately 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 "
+"wish to increase the in-memory table limit you will have to increase the "
"other value as well."
msgstr ""
@@ -12328,7 +12328,7 @@ 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 "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
"mentioned in the beginning of an <a href=\\\"http://www.facebook.com/note."
"php?note_id=10150111255065841&comments\\\">Article by the Pythian Group</a>"
@@ -12609,7 +12609,7 @@ msgstr "সংযোগসমূহ"
#: po/advisory_rules.php:221
msgid ""
-"The maximum amount of used connnections is getting close to the value of "
+"The maximum amount of used connections is getting close to the value of "
"max_connections."
msgstr ""
@@ -12729,7 +12729,7 @@ 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 "
+"Especially one a system with a lot of writes to InnoDB tables you should 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 "
diff --git a/po/br.po b/po/br.po
index cbec980..810e069 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:06-0400\n"
+"POT-Creation-Date: 2011-08-11 15:11+0200\n"
"PO-Revision-Date: 2011-08-10 22:33+0200\n"
"Last-Translator: Fulup <fulup.jakez(a)ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -617,11 +617,11 @@ msgstr "N'eo ket oberiant an heuliañ."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
-"steulioù titouriñ%s."
+"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
+"%steulioù titouriñ%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -856,11 +856,11 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %"
-"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
+"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an "
+"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -2257,11 +2257,11 @@ msgstr "Degemer mat e %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %"
-"1$sskript kefluniañ%2$s da sevel unan."
+"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
+"%1$sskript kefluniañ%2$s da sevel unan."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -5187,8 +5187,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5865,8 +5865,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found o the %"