From 3ac25417fa45b88f1e1a2b652fa3c0bbb6c7088e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 28 Feb 2007 22:47:26 +0000 Subject: [PATCH 01/14] set default value for ssl connection to MySQL to FALSE --- ChangeLog | 6 ++++++ Documentation.html | 4 ++-- README | 4 ++-- libraries/Config.class.php | 2 +- libraries/config.default.php | 2 +- translators.html | 4 ++-- 6 files changed, 14 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index a825b612b3..1af0183db4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,12 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ +2007-02-28 Marc Delisle + * libraries/config.default.php: set $cfg['Servers'][$i]['ssl'] default + value to false, we got reports from some users having problems with the + default value of true + ### 2.10.0.1 released + 2007-02-27 Marc Delisle * libraries/common.lib.php: bug #1659176, memory error displaying a table with large BLOBs diff --git a/Documentation.html b/Documentation.html index 2825787959..2d1520b59d 100644 --- a/Documentation.html +++ b/Documentation.html @@ -11,7 +11,7 @@ - phpMyAdmin 2.10.0 - Documentation + phpMyAdmin 2.10.0.1 - Documentation @@ -33,7 +33,7 @@
  • Glossary
  • -

    phpMyAdmin 2.10.0 Documentation

    +

    phpMyAdmin 2.10.0.1 Documentation

    • phpMyAdmin homepage
    • diff --git a/README b/README index 206831cc11..0d69f49f72 100644 --- a/README +++ b/README @@ -5,8 +5,8 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.10.0 - -------------- + Version 2.10.0.1 + ---------------- http://www.phpmyadmin.net/ Copyright (C) 1998-2000 Tobias Ratschiller diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 29d646a186..4efbf9b9c1 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -81,7 +81,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '2.10.0'); + $this->set('PMA_VERSION', '2.10.0.1'); /** * @deprecated */ diff --git a/libraries/config.default.php b/libraries/config.default.php index 2421251e16..39d5867a7c 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -56,7 +56,7 @@ $i++; $cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address $cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port $cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket -$cfg['Servers'][$i]['ssl'] = true; // Use SSL for connecting to MySQL server? +$cfg['Servers'][$i]['ssl'] = false; // Use SSL for connecting to MySQL server? $cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket') $cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli') $cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection diff --git a/translators.html b/translators.html index bceb17da47..dd47ac6c99 100644 --- a/translators.html +++ b/translators.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.10.0 - Official translators + phpMyAdmin 2.10.0.1 - Official translators @@ -31,7 +31,7 @@
    • Glossary
    -

    phpMyAdmin 2.10.0 official translators list

    +

    phpMyAdmin 2.10.0.1 official translators list

    Here is the list of the "official translators" of phpMyAdmin.

    From b81f9a364c2a2204e6acbdff5b71e6cc6daead1e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 2 Mar 2007 17:22:14 +0000 Subject: [PATCH 02/14] bug #1671813 CVE-2006-1549 deep recursion crash --- ChangeLog | 3 +++ libraries/common.lib.php | 14 +++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1af0183db4..eab5c938cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ +2007-03-01 Sebastian Mendel + * libraries/common.lib.php: bug #1671813 CVE-2006-1549 deep recursion crash + 2007-02-28 Marc Delisle * libraries/config.default.php: set $cfg['Servers'][$i]['ssl'] default value to false, we got reports from some users having problems with the diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 23f8fe8fc1..a8a108e5d6 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -264,13 +264,24 @@ function PMA_array_merge_recursive() } /** - * calls $function vor every element in $array recursively + * calls $function for every element in $array recursively + * + * this function is protected against deep recursion attack CVE-2006-1549, + * 1000 seems to be more than enough + * + * @see http://www.php-security.org/MOPB/MOPB-02-2007.html + * @see http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-1549 * * @param array $array array to walk * @param string $function function to call for every array element */ function PMA_arrayWalkRecursive(&$array, $function, $apply_to_keys_also = false) { + static $recursive_counter = 0; + if (++$recursive_counter > 1000) { + die('possible deep recursion attack'); + } + foreach ($array as $key => $value) { if (is_array($value)) { PMA_arrayWalkRecursive($array[$key], $function, $apply_to_keys_also); @@ -286,6 +297,7 @@ function PMA_arrayWalkRecursive(&$array, $function, $apply_to_keys_also = false) } } } + $recursive_counter++; } /** From a0a3237d6720d1c6f3b702c7198cf1c225302f6c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 2 Mar 2007 17:35:25 +0000 Subject: [PATCH 03/14] 2.10.0.2 release --- ChangeLog | 5 ++++- Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- translators.html | 4 ++-- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index eab5c938cb..f0808076a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ +2007-03-02 Marc Delisle + ### 2.10.0.2 released from MAINT_2_10_0 + 2007-03-01 Sebastian Mendel * libraries/common.lib.php: bug #1671813 CVE-2006-1549 deep recursion crash @@ -12,7 +15,7 @@ $HeadURL$ * libraries/config.default.php: set $cfg['Servers'][$i]['ssl'] default value to false, we got reports from some users having problems with the default value of true - ### 2.10.0.1 released + ### 2.10.0.1 released from MAINT_2_10_0 2007-02-27 Marc Delisle * libraries/common.lib.php: bug #1659176, memory error displaying diff --git a/Documentation.html b/Documentation.html index 2d1520b59d..db395e80b6 100644 --- a/Documentation.html +++ b/Documentation.html @@ -11,7 +11,7 @@ - phpMyAdmin 2.10.0.1 - Documentation + phpMyAdmin 2.10.0.2 - Documentation @@ -33,7 +33,7 @@
  • Glossary
  • -

    phpMyAdmin 2.10.0.1 Documentation

    +

    phpMyAdmin 2.10.0.2 Documentation

    • phpMyAdmin homepage
    • diff --git a/README b/README index 0d69f49f72..fabb8c29f7 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.10.0.1 + Version 2.10.0.2 ---------------- http://www.phpmyadmin.net/ diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 4efbf9b9c1..4da17f0038 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -81,7 +81,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '2.10.0.1'); + $this->set('PMA_VERSION', '2.10.0.2'); /** * @deprecated */ diff --git a/translators.html b/translators.html index dd47ac6c99..a10a37530a 100644 --- a/translators.html +++ b/translators.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.10.0.1 - Official translators + phpMyAdmin 2.10.0.2 - Official translators @@ -31,7 +31,7 @@
    • Glossary
    -

    phpMyAdmin 2.10.0.1 official translators list

    +

    phpMyAdmin 2.10.0.2 official translators list

    Here is the list of the "official translators" of phpMyAdmin.

    From b4134b65a7e7ed355121b6c2db9ea6c9624509bc Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Tue, 13 Mar 2007 14:21:31 +0000 Subject: [PATCH 04/14] bug #1679801 [core] XSS vulnerability in PMA_sanitize() --- ChangeLog | 5 +++++ libraries/sanitizing.lib.php | 26 +++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f0808076a4..ee5aa2e2b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ +2.10.0.3 (not released yet) +===================== + +- bug #1679801 [core] XSS vulnerability in PMA_sanitize(), thanks to sp3x SecurityReason + 2007-03-02 Marc Delisle ### 2.10.0.2 released from MAINT_2_10_0 diff --git a/libraries/sanitizing.lib.php b/libraries/sanitizing.lib.php index b36af285af..6de0bbd745 100644 --- a/libraries/sanitizing.lib.php +++ b/libraries/sanitizing.lib.php @@ -34,7 +34,31 @@ function PMA_sanitize($message) '[br]' => '
    ', '[/a]' => '', ); - return preg_replace('/\[a@([^"@]*)@([^]"]*)\]/', '', strtr($message, $replace_pairs)); + $sanitized_message = strtr($message, $replace_pairs); + $sanitized_message = preg_replace( + '/\[a@([^"@]*)@([^]"]*)\]/e', + '\'\'', + $sanitized_message); + + return $sanitized_message; } +/** + * removes javascript + * + * @uses trim() + * @uses strtolower() + * @uses substr() + * @param string uri + */ +function PMA_sanitizeUri($uri) +{ + $uri = trim($uri); + + if (strtolower(substr($uri, 0, 10)) === 'javascript') { + return ''; + } + + return $uri; +} ?> From dd0a92bc125b8904590d9a528dbee348a7f26973 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Thu, 29 Mar 2007 13:52:26 +0000 Subject: [PATCH 05/14] bug #1690561 Blobs being cleared on Edit of row --- ChangeLog | 1 + libraries/tbl_replace_fields.inc.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index ee5aa2e2b7..550c585036 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ $HeadURL$ 2.10.0.3 (not released yet) ===================== +- bug #1690561 Blobs being cleared on Edit of row - bug #1679801 [core] XSS vulnerability in PMA_sanitize(), thanks to sp3x SecurityReason 2007-03-02 Marc Delisle diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php index ec3c05378e..89d5efdd0a 100644 --- a/libraries/tbl_replace_fields.inc.php +++ b/libraries/tbl_replace_fields.inc.php @@ -190,6 +190,8 @@ if (false === $valid_file_was_uploaded) { if (! empty($prot_row[$key])) { $val = '0x' . bin2hex($prot_row[$key]); $seen_binary = true; + } else { + $val = ''; } break; From f52b00230b9080e1fc7769b477ecdfb62456fcfc Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 8 Jun 2007 18:37:07 +0000 Subject: [PATCH 06/14] 2.10.2-rc1 and 2.10.3-dev --- Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- translators.html | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation.html b/Documentation.html index 9195dce4ac..4a90f98cd3 100644 --- a/Documentation.html +++ b/Documentation.html @@ -11,7 +11,7 @@ - phpMyAdmin 2.10.2-dev - Documentation + phpMyAdmin 2.10.2-rc1 - Documentation @@ -33,7 +33,7 @@
  • Glossary
  • -

    phpMyAdmin 2.10.2-dev Documentation

    +

    phpMyAdmin 2.10.2-rc1 Documentation

    • phpMyAdmin homepage
    • diff --git a/README b/README index cb6bc7c9e7..a865bfdb0a 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.10.2-dev + Version 2.10.2-rc1 ------------------ http://www.phpmyadmin.net/ diff --git a/libraries/Config.class.php b/libraries/Config.class.php index d9fc7fd786..8695d0113d 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -81,7 +81,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '2.10.2-dev'); + $this->set('PMA_VERSION', '2.10.2-rc1'); /** * @deprecated */ diff --git a/translators.html b/translators.html index 0581f99e58..197015b56f 100644 --- a/translators.html +++ b/translators.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.10.2-dev - Official translators + phpMyAdmin 2.10.2-rc1 - Official translators @@ -31,7 +31,7 @@
    • Glossary
    -

    phpMyAdmin 2.10.2-dev official translators list

    +

    phpMyAdmin 2.10.2-rc1 official translators list

    Here is the list of the "official translators" of phpMyAdmin.

    From ee9e458f45d715d543e6b4fa350d1faa8de75693 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 10 Jun 2007 18:58:03 +0000 Subject: [PATCH 07/14] patch #1733762 Typo in message "INSERT DELAY", thanks to Victor Volkov --- ChangeLog | 1 + lang/afrikaans-iso-8859-1.inc.php | 2 +- lang/afrikaans-utf-8.inc.php | 2 +- lang/albanian-iso-8859-1.inc.php | 2 +- lang/albanian-utf-8.inc.php | 2 +- lang/arabic-utf-8.inc.php | 2 +- lang/arabic-windows-1256.inc.php | 2 +- lang/azerbaijani-iso-8859-9.inc.php | 2 +- lang/azerbaijani-utf-8.inc.php | 2 +- lang/basque-iso-8859-1.inc.php | 2 +- lang/basque-utf-8.inc.php | 2 +- lang/belarusian_cyrillic-utf-8.inc.php | 2 +- lang/belarusian_cyrillic-windows-1251.inc.php | 2 +- lang/belarusian_latin-utf-8.inc.php | 2 +- lang/bosnian-utf-8.inc.php | 2 +- lang/bosnian-windows-1250.inc.php | 2 +- lang/brazilian_portuguese-iso-8859-1.inc.php | 2 +- lang/brazilian_portuguese-utf-8.inc.php | 2 +- lang/bulgarian-koi8-r.inc.php | 2 +- lang/bulgarian-utf-8.inc.php | 2 +- lang/bulgarian-windows-1251.inc.php | 2 +- lang/catalan-iso-8859-1.inc.php | 2 +- lang/catalan-utf-8.inc.php | 2 +- lang/chinese_simplified-gb2312.inc.php | 2 +- lang/chinese_simplified-utf-8.inc.php | 2 +- lang/chinese_traditional-big5.inc.php | 2 +- lang/chinese_traditional-utf-8.inc.php | 2 +- lang/croatian-iso-8859-2.inc.php | 2 +- lang/croatian-utf-8.inc.php | 2 +- lang/croatian-windows-1250.inc.php | 2 +- lang/danish-iso-8859-1.inc.php | 2 +- lang/danish-utf-8.inc.php | 2 +- lang/dutch-iso-8859-1.inc.php | 2 +- lang/dutch-iso-8859-15.inc.php | 2 +- lang/dutch-utf-8.inc.php | 2 +- lang/english-iso-8859-1.inc.php | 2 +- lang/english-iso-8859-15.inc.php | 2 +- lang/english-utf-8.inc.php | 2 +- lang/estonian-iso-8859-1.inc.php | 2 +- lang/estonian-utf-8.inc.php | 2 +- lang/finnish-iso-8859-1.inc.php | 2 +- lang/finnish-iso-8859-15.inc.php | 2 +- lang/finnish-utf-8.inc.php | 2 +- lang/french-iso-8859-1.inc.php | 2 +- lang/french-iso-8859-15.inc.php | 2 +- lang/french-utf-8.inc.php | 2 +- lang/galician-iso-8859-1.inc.php | 2 +- lang/galician-utf-8.inc.php | 2 +- lang/georgian-utf-8.inc.php | 2 +- lang/german-iso-8859-1.inc.php | 2 +- lang/german-iso-8859-15.inc.php | 2 +- lang/german-utf-8.inc.php | 2 +- lang/greek-iso-8859-7.inc.php | 2 +- lang/greek-utf-8.inc.php | 2 +- lang/hebrew-iso-8859-8-i.inc.php | 2 +- lang/hebrew-utf-8.inc.php | 2 +- lang/hindi-utf-8.inc.php | 2 +- lang/hungarian-iso-8859-2.inc.php | 2 +- lang/hungarian-utf-8.inc.php | 2 +- lang/indonesian-iso-8859-1.inc.php | 2 +- lang/indonesian-utf-8.inc.php | 2 +- lang/italian-iso-8859-1.inc.php | 2 +- lang/italian-iso-8859-15.inc.php | 2 +- lang/italian-utf-8.inc.php | 2 +- lang/japanese-euc.inc.php | 2 +- lang/japanese-sjis.inc.php | 2 +- lang/japanese-utf-8.inc.php | 2 +- lang/korean-euc-kr.inc.php | 2 +- lang/korean-utf-8.inc.php | 2 +- lang/latvian-utf-8.inc.php | 2 +- lang/latvian-windows-1257.inc.php | 2 +- lang/lithuanian-utf-8.inc.php | 2 +- lang/lithuanian-windows-1257.inc.php | 2 +- lang/malay-iso-8859-1.inc.php | 2 +- lang/malay-utf-8.inc.php | 2 +- lang/mongolian-utf-8.inc.php | 2 +- lang/norwegian-iso-8859-1.inc.php | 2 +- lang/norwegian-utf-8.inc.php | 2 +- lang/persian-utf-8.inc.php | 2 +- lang/persian-windows-1256.inc.php | 2 +- lang/polish-iso-8859-2.inc.php | 2 +- lang/polish-utf-8.inc.php | 2 +- lang/polish-windows-1250.inc.php | 2 +- lang/portuguese-iso-8859-1.inc.php | 2 +- lang/portuguese-iso-8859-15.inc.php | 2 +- lang/portuguese-utf-8.inc.php | 2 +- lang/romanian-iso-8859-1.inc.php | 2 +- lang/romanian-utf-8.inc.php | 2 +- lang/serbian_cyrillic-utf-8.inc.php | 2 +- lang/serbian_cyrillic-windows-1251.inc.php | 2 +- lang/serbian_latin-utf-8.inc.php | 2 +- lang/serbian_latin-windows-1250.inc.php | 2 +- lang/slovak-iso-8859-2.inc.php | 2 +- lang/slovak-utf-8.inc.php | 2 +- lang/slovak-windows-1250.inc.php | 2 +- lang/slovenian-iso-8859-2.inc.php | 2 +- lang/slovenian-utf-8.inc.php | 2 +- lang/slovenian-windows-1250.inc.php | 2 +- lang/spanish-iso-8859-1.inc.php | 2 +- lang/spanish-iso-8859-15.inc.php | 2 +- lang/spanish-utf-8.inc.php | 2 +- lang/tatarish-iso-8859-9.inc.php | 2 +- lang/tatarish-utf-8.inc.php | 2 +- lang/thai-tis-620.inc.php | 2 +- lang/thai-utf-8.inc.php | 2 +- lang/turkish-iso-8859-9.inc.php | 2 +- lang/turkish-utf-8.inc.php | 2 +- lang/ukrainian-utf-8.inc.php | 2 +- lang/ukrainian-windows-1251.inc.php | 2 +- 109 files changed, 109 insertions(+), 108 deletions(-) diff --git a/ChangeLog b/ChangeLog index d188853b5e..6aec17b03f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,6 +24,7 @@ $HeadURL$ - patch #1726500 Wrong position of , thanks to Jürgen Wind - bug #1728590 Detected failing session_start fails, thanks to Jürgen Wind - RFE #1714760 Obey ShowCreateDb on the Databases tab +- patch #1733762 Typo in message "INSERT DELAY", thanks to Victor Volkov 2.10.1.0 (2007-04-23) ===================== diff --git a/lang/afrikaans-iso-8859-1.inc.php b/lang/afrikaans-iso-8859-1.inc.php index 1558903e2e..988755f4ed 100644 --- a/lang/afrikaans-iso-8859-1.inc.php +++ b/lang/afrikaans-iso-8859-1.inc.php @@ -841,7 +841,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/afrikaans-utf-8.inc.php b/lang/afrikaans-utf-8.inc.php index d4eeae3d00..9c0e597006 100644 --- a/lang/afrikaans-utf-8.inc.php +++ b/lang/afrikaans-utf-8.inc.php @@ -842,7 +842,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/albanian-iso-8859-1.inc.php b/lang/albanian-iso-8859-1.inc.php index 62a6b23d55..94d3496e3d 100644 --- a/lang/albanian-iso-8859-1.inc.php +++ b/lang/albanian-iso-8859-1.inc.php @@ -904,7 +904,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/albanian-utf-8.inc.php b/lang/albanian-utf-8.inc.php index e9ae27b957..9452836349 100644 --- a/lang/albanian-utf-8.inc.php +++ b/lang/albanian-utf-8.inc.php @@ -905,7 +905,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php index 587d3ebdb1..afc2815812 100644 --- a/lang/arabic-utf-8.inc.php +++ b/lang/arabic-utf-8.inc.php @@ -899,7 +899,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/arabic-windows-1256.inc.php b/lang/arabic-windows-1256.inc.php index 8c258086ea..263687659c 100644 --- a/lang/arabic-windows-1256.inc.php +++ b/lang/arabic-windows-1256.inc.php @@ -898,7 +898,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/azerbaijani-iso-8859-9.inc.php b/lang/azerbaijani-iso-8859-9.inc.php index dd0b6c0e78..702ae16437 100644 --- a/lang/azerbaijani-iso-8859-9.inc.php +++ b/lang/azerbaijani-iso-8859-9.inc.php @@ -884,7 +884,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/azerbaijani-utf-8.inc.php b/lang/azerbaijani-utf-8.inc.php index 1f982c5e6e..5c64f15088 100644 --- a/lang/azerbaijani-utf-8.inc.php +++ b/lang/azerbaijani-utf-8.inc.php @@ -885,7 +885,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/basque-iso-8859-1.inc.php b/lang/basque-iso-8859-1.inc.php index 5435da4105..447b175b13 100644 --- a/lang/basque-iso-8859-1.inc.php +++ b/lang/basque-iso-8859-1.inc.php @@ -890,7 +890,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/basque-utf-8.inc.php b/lang/basque-utf-8.inc.php index dde33f1388..09b5f0022a 100644 --- a/lang/basque-utf-8.inc.php +++ b/lang/basque-utf-8.inc.php @@ -891,7 +891,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/belarusian_cyrillic-utf-8.inc.php b/lang/belarusian_cyrillic-utf-8.inc.php index 5f3491cd27..fd4ee0f1a9 100644 --- a/lang/belarusian_cyrillic-utf-8.inc.php +++ b/lang/belarusian_cyrillic-utf-8.inc.php @@ -781,7 +781,7 @@ $strShowStatusKey_readsDescr = 'Колькасьць фізычных чытан $strShowStatusKey_write_requestsDescr = 'Колькасьць запытаў на запіс блёку ключоў у кэш.'; $strShowStatusKey_writesDescr = 'Колькасьць фізычных запісаў блёку ключоў на дыск.'; $strShowStatusLast_query_costDescr = 'Агульны кошт апошняга зкампіляванага запыту, падлічанага аптымізатарам запытаў. Карысна для параўнаньня розных спосабаў рэалізацыі аднаго запыту. Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў зкампіляваны.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, значэньне кэшу табліц імаверна вельмі малое.'; $strShowStatusOpen_filesDescr = 'Колькасьць адкрытых файлаў.'; $strShowStatusOpen_streamsDescr = 'Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня).'; diff --git a/lang/belarusian_cyrillic-windows-1251.inc.php b/lang/belarusian_cyrillic-windows-1251.inc.php index 69212eb963..95947e2489 100644 --- a/lang/belarusian_cyrillic-windows-1251.inc.php +++ b/lang/belarusian_cyrillic-windows-1251.inc.php @@ -780,7 +780,7 @@ $strShowStatusKey_readsDescr = ' $strShowStatusKey_write_requestsDescr = ' .'; $strShowStatusKey_writesDescr = ' .'; $strShowStatusLast_query_costDescr = ' , . . 0 , .'; -$strShowStatusNot_flushed_delayed_rowsDescr = ' , INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = ' , INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = ' , . , .'; $strShowStatusOpen_filesDescr = ' .'; $strShowStatusOpen_streamsDescr = ' ( ).'; diff --git a/lang/belarusian_latin-utf-8.inc.php b/lang/belarusian_latin-utf-8.inc.php index 23050baa22..9107af8360 100644 --- a/lang/belarusian_latin-utf-8.inc.php +++ b/lang/belarusian_latin-utf-8.inc.php @@ -780,7 +780,7 @@ $strShowStatusKey_readsDescr = 'Kolkaść fizyčnych čytańniaŭ bloku klučoŭ $strShowStatusKey_write_requestsDescr = 'Kolkaść zapytaŭ na zapis bloku klučoŭ u keš.'; $strShowStatusKey_writesDescr = 'Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk.'; $strShowStatusLast_query_costDescr = 'Ahulny košt apošniaha zkampilavanaha zapytu, padličanaha aptymizataram zapytaŭ. Karysna dla paraŭnańnia roznych sposabaŭ realizacyi adnaho zapytu. Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ zkampilavany.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, značeńnie kešu tablic imavierna vielmi małoje.'; $strShowStatusOpen_filesDescr = 'Kolkaść adkrytych fajłaŭ.'; $strShowStatusOpen_streamsDescr = 'Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia).'; diff --git a/lang/bosnian-utf-8.inc.php b/lang/bosnian-utf-8.inc.php index 079a52cdf9..ad70ca880e 100644 --- a/lang/bosnian-utf-8.inc.php +++ b/lang/bosnian-utf-8.inc.php @@ -894,7 +894,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/bosnian-windows-1250.inc.php b/lang/bosnian-windows-1250.inc.php index dd71f7c6af..5965db5a4a 100644 --- a/lang/bosnian-windows-1250.inc.php +++ b/lang/bosnian-windows-1250.inc.php @@ -893,7 +893,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php b/lang/brazilian_portuguese-iso-8859-1.inc.php index 67fb50fb20..186ef5d8dc 100644 --- a/lang/brazilian_portuguese-iso-8859-1.inc.php +++ b/lang/brazilian_portuguese-iso-8859-1.inc.php @@ -821,7 +821,7 @@ $strShowStatusKey_readsDescr = 'O n $strShowStatusKey_write_requestsDescr = 'O nmero de requisies para escrever um bloco chave para o cache.'; $strShowStatusKey_writesDescr = 'O nmero de escritas fsicas para um bloco chave para o disco.'; $strShowStatusLast_query_costDescr = 'O custo total da ltima consulta compilada como computado pelo otimizador de consultas. til para comparar o custo de diferentes planos de consulta para a mesma consulta. O valor padro 0 significa que nenhuma consulta foi compilada ainda.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'O nmero de linhas esperando para serem escritas na fila de INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'O nmero de linhas esperando para serem escritas na fila de INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'O nmero de tabelas que devem estar abertas. Se aberta, as tabelas so grandes, o valor do cache de suas tabelas provavelmente muito pequeno.'; $strShowStatusOpen_filesDescr = 'O nmero de arquivos que esto abertos.'; $strShowStatusOpen_streamsDescr = 'O nmero de streams que esto abertos (usados principalmente para log).'; diff --git a/lang/brazilian_portuguese-utf-8.inc.php b/lang/brazilian_portuguese-utf-8.inc.php index 0681504599..54d8f93825 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php +++ b/lang/brazilian_portuguese-utf-8.inc.php @@ -822,7 +822,7 @@ $strShowStatusKey_readsDescr = 'O número de leituras físicas de um bloco chave $strShowStatusKey_write_requestsDescr = 'O número de requisições para escrever um bloco chave para o cache.'; $strShowStatusKey_writesDescr = 'O número de escritas físicas para um bloco chave para o disco.'; $strShowStatusLast_query_costDescr = 'O custo total da última consulta compilada como computado pelo otimizador de consultas. Útil para comparar o custo de diferentes planos de consulta para a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi compilada ainda.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'O número de linhas esperando para serem escritas na fila de INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'O número de linhas esperando para serem escritas na fila de INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'O número de tabelas que devem estar abertas. Se aberta, as tabelas são grandes, o valor do cache de suas tabelas é provavelmente muito pequeno.'; $strShowStatusOpen_filesDescr = 'O número de arquivos que estão abertos.'; $strShowStatusOpen_streamsDescr = 'O número de streams que estão abertos (usados principalmente para log).'; diff --git a/lang/bulgarian-koi8-r.inc.php b/lang/bulgarian-koi8-r.inc.php index d5439c3134..ca7bf8ae51 100644 --- a/lang/bulgarian-koi8-r.inc.php +++ b/lang/bulgarian-koi8-r.inc.php @@ -950,7 +950,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusQcache_free_blocksDescr = 'The number of free memory blocks in query cache.'; //to translate $strShowStatusQcache_free_memoryDescr = 'The amount of free memory for query cache.'; //to translate diff --git a/lang/bulgarian-utf-8.inc.php b/lang/bulgarian-utf-8.inc.php index a69e8cfdf0..182c50301a 100644 --- a/lang/bulgarian-utf-8.inc.php +++ b/lang/bulgarian-utf-8.inc.php @@ -951,7 +951,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusQcache_free_blocksDescr = 'The number of free memory blocks in query cache.'; //to translate $strShowStatusQcache_free_memoryDescr = 'The amount of free memory for query cache.'; //to translate diff --git a/lang/bulgarian-windows-1251.inc.php b/lang/bulgarian-windows-1251.inc.php index a4f7051840..a6eeabbf2d 100644 --- a/lang/bulgarian-windows-1251.inc.php +++ b/lang/bulgarian-windows-1251.inc.php @@ -950,7 +950,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusQcache_free_blocksDescr = 'The number of free memory blocks in query cache.'; //to translate $strShowStatusQcache_free_memoryDescr = 'The amount of free memory for query cache.'; //to translate diff --git a/lang/catalan-iso-8859-1.inc.php b/lang/catalan-iso-8859-1.inc.php index d3fb77afd1..71cb4800b1 100644 --- a/lang/catalan-iso-8859-1.inc.php +++ b/lang/catalan-iso-8859-1.inc.php @@ -811,7 +811,7 @@ $strShowStatusKey_readsDescr = 'El nombre de lectures f $strShowStatusKey_write_requestsDescr = 'El nombre de peticions d\'escriptura d\'un bloc de clau a la memria cau.'; $strShowStatusKey_writesDescr = 'El nombre d\'escriptures fsiques d\'un bloc de clau a disc.'; $strShowStatusLast_query_costDescr = 'El cost total de la darrera consulta compilada tal com el valora l\'optimitzador de consultes. s til per comparar el cost de diferents plans de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s\'ha compilat cap consulta.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'El nombre de files esperant a ser escrites en cues INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'El nombre de files esperant a ser escrites en cues INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'El nombre de taules que han estat obertes. Si el nombre de taules obertes s gran, probablement el valor de memria cau de taula s massa petit.'; $strShowStatusOpen_filesDescr = 'El nombre d\'arxius que estn oberts.'; $strShowStatusOpen_streamsDescr = 'El nombre de fluxes que estn oberts (usats principalment per a registre).'; diff --git a/lang/catalan-utf-8.inc.php b/lang/catalan-utf-8.inc.php index 999d41c3e9..9a8b0177c5 100644 --- a/lang/catalan-utf-8.inc.php +++ b/lang/catalan-utf-8.inc.php @@ -812,7 +812,7 @@ $strShowStatusKey_readsDescr = 'El nombre de lectures físiques d\'un bloc de cl $strShowStatusKey_write_requestsDescr = 'El nombre de peticions d\'escriptura d\'un bloc de clau a la memòria cau.'; $strShowStatusKey_writesDescr = 'El nombre d\'escriptures físiques d\'un bloc de clau a disc.'; $strShowStatusLast_query_costDescr = 'El cost total de la darrera consulta compilada tal com el valora l\'optimitzador de consultes. És útil per comparar el cost de diferents plans de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s\'ha compilat cap consulta.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'El nombre de files esperant a ser escrites en cues INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'El nombre de files esperant a ser escrites en cues INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'El nombre de taules que han estat obertes. Si el nombre de taules obertes és gran, probablement el valor de memòria cau de taula és massa petit.'; $strShowStatusOpen_filesDescr = 'El nombre d\'arxius que estàn oberts.'; $strShowStatusOpen_streamsDescr = 'El nombre de fluxes que estàn oberts (usats principalment per a registre).'; diff --git a/lang/chinese_simplified-gb2312.inc.php b/lang/chinese_simplified-gb2312.inc.php index 2c35beb13f..a332fd0f58 100644 --- a/lang/chinese_simplified-gb2312.inc.php +++ b/lang/chinese_simplified-gb2312.inc.php @@ -908,7 +908,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/chinese_simplified-utf-8.inc.php b/lang/chinese_simplified-utf-8.inc.php index fbc0b44f9f..c4716b3367 100644 --- a/lang/chinese_simplified-utf-8.inc.php +++ b/lang/chinese_simplified-utf-8.inc.php @@ -909,7 +909,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/chinese_traditional-big5.inc.php b/lang/chinese_traditional-big5.inc.php index f7a7199d0a..1b19b39ecb 100644 --- a/lang/chinese_traditional-big5.inc.php +++ b/lang/chinese_traditional-big5.inc.php @@ -919,7 +919,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate $strShowStatusOpen_tablesDescr = 'The number of tables that are open.'; //to translate diff --git a/lang/chinese_traditional-utf-8.inc.php b/lang/chinese_traditional-utf-8.inc.php index d077ac3c4d..3666337006 100644 --- a/lang/chinese_traditional-utf-8.inc.php +++ b/lang/chinese_traditional-utf-8.inc.php @@ -920,7 +920,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate $strShowStatusOpen_tablesDescr = 'The number of tables that are open.'; //to translate diff --git a/lang/croatian-iso-8859-2.inc.php b/lang/croatian-iso-8859-2.inc.php index 49d6dfbf36..35b44ff0f0 100644 --- a/lang/croatian-iso-8859-2.inc.php +++ b/lang/croatian-iso-8859-2.inc.php @@ -778,7 +778,7 @@ $strShowStatusKey_readsDescr = 'Broj fizi $strShowStatusKey_write_requestsDescr = 'Broj zahtjeva za zapisivanje kljunog bloka u pohranu.'; $strShowStatusKey_writesDescr = 'Broj fizikih zapisivanja kljunih blokova na disk. '; $strShowStatusLast_query_costDescr = 'Ukupan troak posljednjeg sloenog upita, izraunat od strane optimizatora upita. Korisno za usporeivanje trokova razliitih planova upita za isti upit. Zadana vrijednost je 0 i podrazumijeva da jo nema sloenog upita.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Broj redaka koji ekaju svoje upisivanje u red ekanja INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Broj redaka koji ekaju svoje upisivanje u red ekanja INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaa vrijednost za pohranu tablica vjerojatno je premala.'; $strShowStatusOpen_filesDescr = 'Broj otvorenih datoteka.'; $strShowStatusOpen_streamsDescr = 'Broj otvorenih protoka (uglavnom se upotrebljava za voenje zapisnika).'; diff --git a/lang/croatian-utf-8.inc.php b/lang/croatian-utf-8.inc.php index e51886f9ed..9241549045 100644 --- a/lang/croatian-utf-8.inc.php +++ b/lang/croatian-utf-8.inc.php @@ -779,7 +779,7 @@ $strShowStatusKey_readsDescr = 'Broj fizičkih čitanja ključnih blokova s disk $strShowStatusKey_write_requestsDescr = 'Broj zahtjeva za zapisivanje ključnog bloka u pohranu.'; $strShowStatusKey_writesDescr = 'Broj fizičkih zapisivanja ključnih blokova na disk. '; $strShowStatusLast_query_costDescr = 'Ukupan trošak posljednjeg složenog upita, izračunat od strane optimizatora upita. Korisno za uspoređivanje troškova različitih planova upita za isti upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša vrijednost za pohranu tablica vjerojatno je premala.'; $strShowStatusOpen_filesDescr = 'Broj otvorenih datoteka.'; $strShowStatusOpen_streamsDescr = 'Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika).'; diff --git a/lang/croatian-windows-1250.inc.php b/lang/croatian-windows-1250.inc.php index 456c9e2d06..592189ad55 100644 --- a/lang/croatian-windows-1250.inc.php +++ b/lang/croatian-windows-1250.inc.php @@ -778,7 +778,7 @@ $strShowStatusKey_readsDescr = 'Broj fizi $strShowStatusKey_write_requestsDescr = 'Broj zahtjeva za zapisivanje kljunog bloka u pohranu.'; $strShowStatusKey_writesDescr = 'Broj fizikih zapisivanja kljunih blokova na disk. '; $strShowStatusLast_query_costDescr = 'Ukupan troak posljednjeg sloenog upita, izraunat od strane optimizatora upita. Korisno za usporeivanje trokova razliitih planova upita za isti upit. Zadana vrijednost je 0 i podrazumijeva da jo nema sloenog upita.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Broj redaka koji ekaju svoje upisivanje u red ekanja INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Broj redaka koji ekaju svoje upisivanje u red ekanja INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaa vrijednost za pohranu tablica vjerojatno je premala.'; $strShowStatusOpen_filesDescr = 'Broj otvorenih datoteka.'; $strShowStatusOpen_streamsDescr = 'Broj otvorenih protoka (uglavnom se upotrebljava za voenje zapisnika).'; diff --git a/lang/danish-iso-8859-1.inc.php b/lang/danish-iso-8859-1.inc.php index 73c2f682a7..cc61486d41 100644 --- a/lang/danish-iso-8859-1.inc.php +++ b/lang/danish-iso-8859-1.inc.php @@ -817,7 +817,7 @@ $strShowStatusKey_readsDescr = 'Antallet af fysiske l $strShowStatusKey_write_requestsDescr = 'Antallet af anmodninger om at skrive en ngleblok til mellemlageret.'; $strShowStatusKey_writesDescr = 'Antallet af fysiske skrivninger af en ngleblok til disk.'; $strShowStatusLast_query_costDescr = 'Totale omkostninger for den seneste kompilerede foresprgsel som beregnet af foresprgsels-optimeringsrutinen. Brugbart til at sammenligne omkostninger p forskellige foresprgselsplaner for den samme foresprgsel. En standardvrdi p 0 betyder at der ikke er kompileret nogen foresprgsler endnu.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Antallet af rkker der venter p at blive skrevet i INSERT DELAY ker.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Antallet af rkker der venter p at blive skrevet i INSERT DELAYED ker.'; $strShowStatusOpened_tablesDescr = 'Antallet af tabeller der er blevet bnet. Hvis bnede tabeller er stor, er dit tabelmellemlager sandsynligvis for lille.'; $strShowStatusOpen_filesDescr = 'Antallet af filer der er bne.'; $strShowStatusOpen_streamsDescr = 'Antallet af streams der er bne (bruges hovedsageligt til logning).'; diff --git a/lang/danish-utf-8.inc.php b/lang/danish-utf-8.inc.php index 1dc86c00e5..e68881ec21 100644 --- a/lang/danish-utf-8.inc.php +++ b/lang/danish-utf-8.inc.php @@ -818,7 +818,7 @@ $strShowStatusKey_readsDescr = 'Antallet af fysiske læsninger af en nøgleblok $strShowStatusKey_write_requestsDescr = 'Antallet af anmodninger om at skrive en nøgleblok til mellemlageret.'; $strShowStatusKey_writesDescr = 'Antallet af fysiske skrivninger af en nøgleblok til disk.'; $strShowStatusLast_query_costDescr = 'Totale omkostninger for den seneste kompilerede forespørgsel som beregnet af forespørgsels-optimeringsrutinen. Brugbart til at sammenligne omkostninger på forskellige forespørgselsplaner for den samme forespørgsel. En standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler endnu.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Antallet af rækker der venter på at blive skrevet i INSERT DELAY køer.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer.'; $strShowStatusOpened_tablesDescr = 'Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er dit tabelmellemlager sandsynligvis for lille.'; $strShowStatusOpen_filesDescr = 'Antallet af filer der er åbne.'; $strShowStatusOpen_streamsDescr = 'Antallet af streams der er åbne (bruges hovedsageligt til logning).'; diff --git a/lang/dutch-iso-8859-1.inc.php b/lang/dutch-iso-8859-1.inc.php index c8cb6adf66..ab05e92154 100644 --- a/lang/dutch-iso-8859-1.inc.php +++ b/lang/dutch-iso-8859-1.inc.php @@ -904,7 +904,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/dutch-iso-8859-15.inc.php b/lang/dutch-iso-8859-15.inc.php index 527dfe5827..feb322e57c 100644 --- a/lang/dutch-iso-8859-15.inc.php +++ b/lang/dutch-iso-8859-15.inc.php @@ -904,7 +904,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php index 3da44a4337..1a263eb38a 100644 --- a/lang/dutch-utf-8.inc.php +++ b/lang/dutch-utf-8.inc.php @@ -905,7 +905,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/english-iso-8859-1.inc.php b/lang/english-iso-8859-1.inc.php index 1ad90c0d46..9b5849a702 100644 --- a/lang/english-iso-8859-1.inc.php +++ b/lang/english-iso-8859-1.inc.php @@ -818,7 +818,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; $strShowStatusOpen_filesDescr = 'The number of files that are open.'; $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; diff --git a/lang/english-iso-8859-15.inc.php b/lang/english-iso-8859-15.inc.php index a660d67985..fd2baae050 100644 --- a/lang/english-iso-8859-15.inc.php +++ b/lang/english-iso-8859-15.inc.php @@ -818,7 +818,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; $strShowStatusOpen_filesDescr = 'The number of files that are open.'; $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; diff --git a/lang/english-utf-8.inc.php b/lang/english-utf-8.inc.php index 28dd8f114a..12481b769f 100644 --- a/lang/english-utf-8.inc.php +++ b/lang/english-utf-8.inc.php @@ -819,7 +819,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; $strShowStatusOpen_filesDescr = 'The number of files that are open.'; $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; diff --git a/lang/estonian-iso-8859-1.inc.php b/lang/estonian-iso-8859-1.inc.php index 5ee82fc91b..9f0fb10ff4 100644 --- a/lang/estonian-iso-8859-1.inc.php +++ b/lang/estonian-iso-8859-1.inc.php @@ -813,7 +813,7 @@ $strShowStatusKey_readsDescr = 'Mitu f $strShowStatusKey_write_requestsDescr = 'Mitu pringut et kirjutada vtme plokk vahemllu.'; $strShowStatusKey_writesDescr = 'Mitu fsilist kirjutamist kirjutada vtme plokk kettale.'; $strShowStatusLast_query_costDescr = 'Viimase kompileeritud pringu arvuatud tulemus pringu optimiseerija vastu. Kasulik vrdlemaks erinevaid pringu plaane helt ja samalt pringult. Vaikimisi vrtus 0 thendab et pring pole veel tdeldud.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Mitu rida on ootel INSERT DELAY pringutes.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Mitu rida on ootel INSERT DELAYED pringutes.'; $strShowStatusOpened_tablesDescr = 'Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemlus kindlasti liiga vike.'; $strShowStatusOpen_filesDescr = 'Mitu faili on avatud.'; $strShowStatusOpen_streamsDescr = 'Mitu voogu on hetkel avatud (enamasti logimiseks).'; diff --git a/lang/estonian-utf-8.inc.php b/lang/estonian-utf-8.inc.php index beba8a0b61..e4703e65af 100644 --- a/lang/estonian-utf-8.inc.php +++ b/lang/estonian-utf-8.inc.php @@ -814,7 +814,7 @@ $strShowStatusKey_readsDescr = 'Mitu füüsilist lugemist lugeda võtme plokk ke $strShowStatusKey_write_requestsDescr = 'Mitu päringut et kirjutada võtme plokk vahemällu.'; $strShowStatusKey_writesDescr = 'Mitu füüsilist kirjutamist kirjutada võtme plokk kettale.'; $strShowStatusLast_query_costDescr = 'Viimase kompileeritud päringu arvuatud tulemus päringu optimiseerija vastu. Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Mitu rida on ootel INSERT DELAY päringutes.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Mitu rida on ootel INSERT DELAYED päringutes.'; $strShowStatusOpened_tablesDescr = 'Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus kindlasti liiga väike.'; $strShowStatusOpen_filesDescr = 'Mitu faili on avatud.'; $strShowStatusOpen_streamsDescr = 'Mitu voogu on hetkel avatud (enamasti logimiseks).'; diff --git a/lang/finnish-iso-8859-1.inc.php b/lang/finnish-iso-8859-1.inc.php index 30c23a6868..b33e52b214 100644 --- a/lang/finnish-iso-8859-1.inc.php +++ b/lang/finnish-iso-8859-1.inc.php @@ -820,7 +820,7 @@ $strShowStatusKey_readsDescr = 'Kertoo, kuinka monta kertaa levylt $strShowStatusKey_write_requestsDescr = 'Kertoo, kuinka monta kertaa vlimuistiin on kirjoitettu avainlohko.'; $strShowStatusKey_writesDescr = 'Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko.'; $strShowStatusLast_query_costDescr = 'Viimeksi kootun (compiled) kyselyn kokonaiskulut kyselynoptimoija laskemana. Hydyllinen suunniteltaessa erilaisia kyselyvaihtoehtoja samaa kysely varten. Oletusarvo 0 tarkoittaa, ett yhtn kysely ei ole viel koottu.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Niiden rivien mr, joita odotetaan kirjoitettavan INSERT DELAY -jonoissa.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Niiden rivien mr, joita odotetaan kirjoitettavan INSERT DELAYED -jonoissa.'; $strShowStatusOpened_tablesDescr = 'Avattujen taulujen mr. Jos mr on suuri, tauluvlimuistin arvo saattaa olla liian alhainen.'; $strShowStatusOpen_filesDescr = 'Avoinna olevien tiedostojen mr.'; $strShowStatusOpen_streamsDescr = 'Avoinna olevien voiden mr (kytetn enimmkseen kirjausta varten).'; diff --git a/lang/finnish-iso-8859-15.inc.php b/lang/finnish-iso-8859-15.inc.php index 6b1734d3ae..31fb85ae1c 100644 --- a/lang/finnish-iso-8859-15.inc.php +++ b/lang/finnish-iso-8859-15.inc.php @@ -820,7 +820,7 @@ $strShowStatusKey_readsDescr = 'Kertoo, kuinka monta kertaa levylt $strShowStatusKey_write_requestsDescr = 'Kertoo, kuinka monta kertaa vlimuistiin on kirjoitettu avainlohko.'; $strShowStatusKey_writesDescr = 'Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko.'; $strShowStatusLast_query_costDescr = 'Viimeksi kootun (compiled) kyselyn kokonaiskulut kyselynoptimoija laskemana. Hydyllinen suunniteltaessa erilaisia kyselyvaihtoehtoja samaa kysely varten. Oletusarvo 0 tarkoittaa, ett yhtn kysely ei ole viel koottu.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Niiden rivien mr, joita odotetaan kirjoitettavan INSERT DELAY -jonoissa.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Niiden rivien mr, joita odotetaan kirjoitettavan INSERT DELAYED -jonoissa.'; $strShowStatusOpened_tablesDescr = 'Avattujen taulujen mr. Jos mr on suuri, tauluvlimuistin arvo saattaa olla liian alhainen.'; $strShowStatusOpen_filesDescr = 'Avoinna olevien tiedostojen mr.'; $strShowStatusOpen_streamsDescr = 'Avoinna olevien voiden mr (kytetn enimmkseen kirjausta varten).'; diff --git a/lang/finnish-utf-8.inc.php b/lang/finnish-utf-8.inc.php index ac04b775b3..9c82d9a15b 100644 --- a/lang/finnish-utf-8.inc.php +++ b/lang/finnish-utf-8.inc.php @@ -821,7 +821,7 @@ $strShowStatusKey_readsDescr = 'Kertoo, kuinka monta kertaa levyltä on fyysises $strShowStatusKey_write_requestsDescr = 'Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko.'; $strShowStatusKey_writesDescr = 'Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko.'; $strShowStatusLast_query_costDescr = 'Viimeksi kootun (compiled) kyselyn kokonaiskulut kyselynoptimoija laskemana. Hyödyllinen suunniteltaessa erilaisia kyselyvaihtoehtoja samaa kyselyä varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole vielä koottu.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Niiden rivien määrä, joita odotetaan kirjoitettavan INSERT DELAY -jonoissa.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Niiden rivien määrä, joita odotetaan kirjoitettavan INSERT DELAYED -jonoissa.'; $strShowStatusOpened_tablesDescr = 'Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa olla liian alhainen.'; $strShowStatusOpen_filesDescr = 'Avoinna olevien tiedostojen määrä.'; $strShowStatusOpen_streamsDescr = 'Avoinna olevien voiden määrä (käytetään enimmäkseen kirjausta varten).'; diff --git a/lang/french-iso-8859-1.inc.php b/lang/french-iso-8859-1.inc.php index c5b0cae63a..88e52c0af6 100644 --- a/lang/french-iso-8859-1.inc.php +++ b/lang/french-iso-8859-1.inc.php @@ -814,7 +814,7 @@ $strShowStatusKey_readsDescr = 'Le nombre de lectures physiques d\'un bloc de cl $strShowStatusKey_write_requestsDescr = 'Le nombre de requtes en vue d\'crire un bloc de cl dans la cache.'; $strShowStatusKey_writesDescr = 'Le nombre d\'critures physiques d\'un bloc de cls vers le disque.'; $strShowStatusLast_query_costDescr = 'Le cot total de la dernire requte compile, tel que calcul par l\'optimiseur de requtes. Utile pour comparer le cot de diverses stratgies pour une mme requte. La valeur de 0 indique qu\'aucune requte n\'a encore t compile.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Le nombre d\'enregistrements en attente d\'criture (INSERT DELAY).'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Le nombre d\'enregistrements en attente d\'criture (INSERT DELAYED).'; $strShowStatusOpened_tablesDescr = 'Le nombre tables qui ont t ouvertes. Si trop lev, votre cache de table est probablement trop petite.'; $strShowStatusOpen_filesDescr = 'Le nombre de fichiers qui sont ouverts.'; $strShowStatusOpen_streamsDescr = 'Le nombre de flux de donnes qui sont ouverts.'; diff --git a/lang/french-iso-8859-15.inc.php b/lang/french-iso-8859-15.inc.php index 5633822c82..a06144fd17 100644 --- a/lang/french-iso-8859-15.inc.php +++ b/lang/french-iso-8859-15.inc.php @@ -814,7 +814,7 @@ $strShowStatusKey_readsDescr = 'Le nombre de lectures physiques d\'un bloc de cl $strShowStatusKey_write_requestsDescr = 'Le nombre de requtes en vue d\'crire un bloc de cl dans la cache.'; $strShowStatusKey_writesDescr = 'Le nombre d\'critures physiques d\'un bloc de cls vers le disque.'; $strShowStatusLast_query_costDescr = 'Le cot total de la dernire requte compile, tel que calcul par l\'optimiseur de requtes. Utile pour comparer le cot de diverses stratgies pour une mme requte. La valeur de 0 indique qu\'aucune requte n\'a encore t compile.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Le nombre d\'enregistrements en attente d\'criture (INSERT DELAY).'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Le nombre d\'enregistrements en attente d\'criture (INSERT DELAYED).'; $strShowStatusOpened_tablesDescr = 'Le nombre tables qui ont t ouvertes. Si trop lev, votre cache de table est probablement trop petite.'; $strShowStatusOpen_filesDescr = 'Le nombre de fichiers qui sont ouverts.'; $strShowStatusOpen_streamsDescr = 'Le nombre de flux de donnes qui sont ouverts.'; diff --git a/lang/french-utf-8.inc.php b/lang/french-utf-8.inc.php index a9340d9b89..b8562504bc 100644 --- a/lang/french-utf-8.inc.php +++ b/lang/french-utf-8.inc.php @@ -815,7 +815,7 @@ $strShowStatusKey_readsDescr = 'Le nombre de lectures physiques d\'un bloc de cl $strShowStatusKey_write_requestsDescr = 'Le nombre de requêtes en vue d\'écrire un bloc de clé dans la cache.'; $strShowStatusKey_writesDescr = 'Le nombre d\'écritures physiques d\'un bloc de clés vers le disque.'; $strShowStatusLast_query_costDescr = 'Le coût total de la dernière requête compilée, tel que calculé par l\'optimiseur de requêtes. Utile pour comparer le coût de diverses stratégies pour une même requête. La valeur de 0 indique qu\'aucune requête n\'a encore été compilée.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Le nombre d\'enregistrements en attente d\'écriture (INSERT DELAY).'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Le nombre d\'enregistrements en attente d\'écriture (INSERT DELAYED).'; $strShowStatusOpened_tablesDescr = 'Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table est probablement trop petite.'; $strShowStatusOpen_filesDescr = 'Le nombre de fichiers qui sont ouverts.'; $strShowStatusOpen_streamsDescr = 'Le nombre de flux de données qui sont ouverts.'; diff --git a/lang/galician-iso-8859-1.inc.php b/lang/galician-iso-8859-1.inc.php index 9dd008ad5b..2b7d06cf23 100644 --- a/lang/galician-iso-8859-1.inc.php +++ b/lang/galician-iso-8859-1.inc.php @@ -776,7 +776,7 @@ $strShowStatusKey_readsDescr = 'N $strShowStatusKey_write_requestsDescr = 'Nmero de peticins para escribir un bloque chave na cach.'; $strShowStatusKey_writesDescr = 'Nmero de escritas fsicas dun bloque chave no disco.'; $strShowStatusLast_query_costDescr = 'Custo total da ltima procura compilada tal e como se computa mediante o optimizador de procuras. Resulta til para comparar o custo de planos de procura diferentes para a mesma pesquisa. O valor por omisin 0, que significa que ainda non se compilou nengunha procura.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Nmero de procuras que estn a agardar para seren escritas nas filas INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Nmero de procuras que estn a agardar para seren escritas nas filas INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Nmero de tabelas abertas en total. Se a cantidade grande, o valor da cach de tabelas posibelmente demasiado pequeno.'; $strShowStatusOpen_filesDescr = 'Nmero de ficheiros abertos.'; $strShowStatusOpen_streamsDescr = 'Nmero de fluxos abertos (utilizado principalmente para o rexistro).'; diff --git a/lang/galician-utf-8.inc.php b/lang/galician-utf-8.inc.php index 6490058c06..484ad1bfa3 100644 --- a/lang/galician-utf-8.inc.php +++ b/lang/galician-utf-8.inc.php @@ -777,7 +777,7 @@ $strShowStatusKey_readsDescr = 'Número de lecturas físicas dun bloque chave de $strShowStatusKey_write_requestsDescr = 'Número de peticións para escribir un bloque chave na caché.'; $strShowStatusKey_writesDescr = 'Número de escritas físicas dun bloque chave no disco.'; $strShowStatusLast_query_costDescr = 'Custo total da última procura compilada tal e como se computa mediante o optimizador de procuras. Resulta útil para comparar o custo de planos de procura diferentes para a mesma pesquisa. O valor por omisión é 0, que significa que ainda non se compilou nengunha procura.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Número de procuras que están a agardar para seren escritas nas filas INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Número de procuras que están a agardar para seren escritas nas filas INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Número de tabelas abertas en total. Se a cantidade é grande, o valor da caché de tabelas posibelmente é demasiado pequeno.'; $strShowStatusOpen_filesDescr = 'Número de ficheiros abertos.'; $strShowStatusOpen_streamsDescr = 'Número de fluxos abertos (utilizado principalmente para o rexistro).'; diff --git a/lang/georgian-utf-8.inc.php b/lang/georgian-utf-8.inc.php index 9c84e5d4cf..08ab2d668c 100644 --- a/lang/georgian-utf-8.inc.php +++ b/lang/georgian-utf-8.inc.php @@ -837,7 +837,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/german-iso-8859-1.inc.php b/lang/german-iso-8859-1.inc.php index 0d62787fa2..d4090e8cbe 100644 --- a/lang/german-iso-8859-1.inc.php +++ b/lang/german-iso-8859-1.inc.php @@ -782,7 +782,7 @@ $strShowStatusKey_readsDescr = 'Die Anzahl physikalischer Lesezugriffe eines Sch $strShowStatusKey_write_requestsDescr = 'Die Anzahl der Anfragen, einen Schlssel-Block in den Cache zu schreiben.'; $strShowStatusKey_writesDescr = 'Die Anzahl physikalischer Schreibvorgnge eines Schlssel-Blocks auf Platte.'; $strShowStatusLast_query_costDescr = 'Die Kosten fr die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer berechnet. Ntzlich um verschiedene Formulierungen fr eine Abfrage zu vergleichen. Der Wert 0 besagt das bisher keine Abfrage bersetzt wurde.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Anzahl der Zeilen, die in INSERT-DELAY-Warteschleifen darauf warten, geschrieben zu werden.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, geschrieben zu werden.'; $strShowStatusOpened_tablesDescr = 'Anzahl der Tabellen, die geffnet wurden. Wenn Opened_tables hoch ist, ist Ihre table_cache-Variable wahrscheinlich zu niedrig.'; $strShowStatusOpen_filesDescr = 'Anzahl der geffneten Dateien.'; $strShowStatusOpen_streamsDescr = 'Anzahl der geffneten Streams (hauptschlich zum Loggen benutzt).'; diff --git a/lang/german-iso-8859-15.inc.php b/lang/german-iso-8859-15.inc.php index 776f1097de..2b7d8ccd62 100644 --- a/lang/german-iso-8859-15.inc.php +++ b/lang/german-iso-8859-15.inc.php @@ -782,7 +782,7 @@ $strShowStatusKey_readsDescr = 'Die Anzahl physikalischer Lesezugriffe eines Sch $strShowStatusKey_write_requestsDescr = 'Die Anzahl der Anfragen, einen Schlssel-Block in den Cache zu schreiben.'; $strShowStatusKey_writesDescr = 'Die Anzahl physikalischer Schreibvorgnge eines Schlssel-Blocks auf Platte.'; $strShowStatusLast_query_costDescr = 'Die Kosten fr die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer berechnet. Ntzlich um verschiedene Formulierungen fr eine Abfrage zu vergleichen. Der Wert 0 besagt das bisher keine Abfrage bersetzt wurde.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Anzahl der Zeilen, die in INSERT-DELAY-Warteschleifen darauf warten, geschrieben zu werden.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, geschrieben zu werden.'; $strShowStatusOpened_tablesDescr = 'Anzahl der Tabellen, die geffnet wurden. Wenn Opened_tables hoch ist, ist Ihre table_cache-Variable wahrscheinlich zu niedrig.'; $strShowStatusOpen_filesDescr = 'Anzahl der geffneten Dateien.'; $strShowStatusOpen_streamsDescr = 'Anzahl der geffneten Streams (hauptschlich zum Loggen benutzt).'; diff --git a/lang/german-utf-8.inc.php b/lang/german-utf-8.inc.php index 10312f0a5b..05124cb137 100644 --- a/lang/german-utf-8.inc.php +++ b/lang/german-utf-8.inc.php @@ -783,7 +783,7 @@ $strShowStatusKey_readsDescr = 'Die Anzahl physikalischer Lesezugriffe eines Sch $strShowStatusKey_write_requestsDescr = 'Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben.'; $strShowStatusKey_writesDescr = 'Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte.'; $strShowStatusLast_query_costDescr = 'Die Kosten für die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Anzahl der Zeilen, die in INSERT-DELAY-Warteschleifen darauf warten, geschrieben zu werden.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, geschrieben zu werden.'; $strShowStatusOpened_tablesDescr = 'Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist Ihre table_cache-Variable wahrscheinlich zu niedrig.'; $strShowStatusOpen_filesDescr = 'Anzahl der geöffneten Dateien.'; $strShowStatusOpen_streamsDescr = 'Anzahl der geöffneten Streams (hauptsächlich zum Loggen benutzt).'; diff --git a/lang/greek-iso-8859-7.inc.php b/lang/greek-iso-8859-7.inc.php index 7735c0f10f..5d4c8d6ac3 100644 --- a/lang/greek-iso-8859-7.inc.php +++ b/lang/greek-iso-8859-7.inc.php @@ -892,7 +892,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php index 3a5b7ca04d..c761e30aab 100644 --- a/lang/greek-utf-8.inc.php +++ b/lang/greek-utf-8.inc.php @@ -893,7 +893,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/hebrew-iso-8859-8-i.inc.php b/lang/hebrew-iso-8859-8-i.inc.php index 503f324d88..4c955cf193 100644 --- a/lang/hebrew-iso-8859-8-i.inc.php +++ b/lang/hebrew-iso-8859-8-i.inc.php @@ -875,7 +875,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/hebrew-utf-8.inc.php b/lang/hebrew-utf-8.inc.php index 8efdc5df75..41b301dcc7 100644 --- a/lang/hebrew-utf-8.inc.php +++ b/lang/hebrew-utf-8.inc.php @@ -876,7 +876,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/hindi-utf-8.inc.php b/lang/hindi-utf-8.inc.php index 24315a8fcb..30f8c0f3dc 100644 --- a/lang/hindi-utf-8.inc.php +++ b/lang/hindi-utf-8.inc.php @@ -822,7 +822,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/hungarian-iso-8859-2.inc.php b/lang/hungarian-iso-8859-2.inc.php index 6881710047..12e3721a52 100644 --- a/lang/hungarian-iso-8859-2.inc.php +++ b/lang/hungarian-iso-8859-2.inc.php @@ -641,7 +641,7 @@ $strShowStatusInnodb_rows_deletedDescr = 'InnoDB t $strShowStatusInnodb_rows_insertedDescr = 'InnoDB tblkba beszrt sorok szma.'; $strShowStatusInnodb_rows_readDescr = 'InnoDB tblkbl olvasott sorok szma.'; $strShowStatusInnodb_rows_updatedDescr = 'InnoDB tblkban frisstett sorok szma.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'rsra vrakoz sorok az INSERT DELAY sorokban.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'rsra vrakoz sorok az INSERT DELAYED sorokban.'; $strShowStatusOpen_filesDescr = 'Megnyitott fjlok szma.'; $strShowStatusOpen_tablesDescr = 'Megnyitott tblk szma.'; $strShowStatusQcache_free_blocksDescr = 'Szabad memriablokkok a lekrdezs cache-ben.'; diff --git a/lang/hungarian-utf-8.inc.php b/lang/hungarian-utf-8.inc.php index b7f64c407b..c70918f01b 100644 --- a/lang/hungarian-utf-8.inc.php +++ b/lang/hungarian-utf-8.inc.php @@ -642,7 +642,7 @@ $strShowStatusInnodb_rows_deletedDescr = 'InnoDB táblákból törölt sorok sz $strShowStatusInnodb_rows_insertedDescr = 'InnoDB táblákba beszúrt sorok száma.'; $strShowStatusInnodb_rows_readDescr = 'InnoDB táblákból olvasott sorok száma.'; $strShowStatusInnodb_rows_updatedDescr = 'InnoDB táblákban frissített sorok száma.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Írásra várakozó sorok az INSERT DELAY sorokban.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Írásra várakozó sorok az INSERT DELAYED sorokban.'; $strShowStatusOpen_filesDescr = 'Megnyitott fájlok száma.'; $strShowStatusOpen_tablesDescr = 'Megnyitott táblák száma.'; $strShowStatusQcache_free_blocksDescr = 'Szabad memóriablokkok a lekérdezés cache-ben.'; diff --git a/lang/indonesian-iso-8859-1.inc.php b/lang/indonesian-iso-8859-1.inc.php index 470091215c..29bb577a11 100644 --- a/lang/indonesian-iso-8859-1.inc.php +++ b/lang/indonesian-iso-8859-1.inc.php @@ -907,7 +907,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/indonesian-utf-8.inc.php b/lang/indonesian-utf-8.inc.php index 3603c423cb..4d24bdc5d9 100644 --- a/lang/indonesian-utf-8.inc.php +++ b/lang/indonesian-utf-8.inc.php @@ -908,7 +908,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/italian-iso-8859-1.inc.php b/lang/italian-iso-8859-1.inc.php index ac343ab571..4d54c8ea7f 100644 --- a/lang/italian-iso-8859-1.inc.php +++ b/lang/italian-iso-8859-1.inc.php @@ -779,7 +779,7 @@ $strShowStatusKey_readsDescr = 'Il numero di letture fisiche dal disco di un blo $strShowStatusKey_write_requestsDescr = 'Il numero di richieste per scrivere una blocco chiave nella cache.'; $strShowStatusKey_writesDescr = 'Il numero di scritture fisiche di un blocco chiave sul disco.'; $strShowStatusLast_query_costDescr = 'Il costo totale dell\'ultima query compilata cos come computato dall\'ottimizzatore delle query. Utile per comparare il costo di differenti query per la stessa operazione di query. Il valore di default 0, che significa che nessuna query stata ancora compilata.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Il numero di tabelle che sono state aperte. Se il valore opened_tables grande, probabilmente il valore di table cache troppo piccolo.'; $strShowStatusOpen_filesDescr = 'Il numero di files che sono aperti.'; $strShowStatusOpen_streamsDescr = 'il numero di stream che sono aperti (usato principalmente per il logging).'; diff --git a/lang/italian-iso-8859-15.inc.php b/lang/italian-iso-8859-15.inc.php index 7e8d94e0cb..29a8782168 100644 --- a/lang/italian-iso-8859-15.inc.php +++ b/lang/italian-iso-8859-15.inc.php @@ -779,7 +779,7 @@ $strShowStatusKey_readsDescr = 'Il numero di letture fisiche dal disco di un blo $strShowStatusKey_write_requestsDescr = 'Il numero di richieste per scrivere una blocco chiave nella cache.'; $strShowStatusKey_writesDescr = 'Il numero di scritture fisiche di un blocco chiave sul disco.'; $strShowStatusLast_query_costDescr = 'Il costo totale dell\'ultima query compilata cos come computato dall\'ottimizzatore delle query. Utile per comparare il costo di differenti query per la stessa operazione di query. Il valore di default 0, che significa che nessuna query stata ancora compilata.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Il numero di tabelle che sono state aperte. Se il valore opened_tables grande, probabilmente il valore di table cache troppo piccolo.'; $strShowStatusOpen_filesDescr = 'Il numero di files che sono aperti.'; $strShowStatusOpen_streamsDescr = 'il numero di stream che sono aperti (usato principalmente per il logging).'; diff --git a/lang/italian-utf-8.inc.php b/lang/italian-utf-8.inc.php index c8a0086fe1..0bbdd69834 100644 --- a/lang/italian-utf-8.inc.php +++ b/lang/italian-utf-8.inc.php @@ -780,7 +780,7 @@ $strShowStatusKey_readsDescr = 'Il numero di letture fisiche dal disco di un blo $strShowStatusKey_write_requestsDescr = 'Il numero di richieste per scrivere una blocco chiave nella cache.'; $strShowStatusKey_writesDescr = 'Il numero di scritture fisiche di un blocco chiave sul disco.'; $strShowStatusLast_query_costDescr = 'Il costo totale dell\'ultima query compilata così come computato dall\'ottimizzatore delle query. Utile per comparare il costo di differenti query per la stessa operazione di query. Il valore di default è 0, che significa che nessuna query è stata ancora compilata.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Il numero di tabelle che sono state aperte. Se il valore opened_tables è grande, probabilmente il valore di table cache è troppo piccolo.'; $strShowStatusOpen_filesDescr = 'Il numero di files che sono aperti.'; $strShowStatusOpen_streamsDescr = 'il numero di stream che sono aperti (usato principalmente per il logging).'; diff --git a/lang/japanese-euc.inc.php b/lang/japanese-euc.inc.php index 09a8492d95..bf76a4b37b 100644 --- a/lang/japanese-euc.inc.php +++ b/lang/japanese-euc.inc.php @@ -821,7 +821,7 @@ $strShowStatusKey_readsDescr = ' $strShowStatusKey_write_requestsDescr = 'å˥֥å񤭹ꥯȤο'; $strShowStatusKey_writesDescr = 'ǥ˥֥åʪ񤭹ߤ'; $strShowStatusLast_query_costDescr = 'ꥪץƥޥη׻ˤ롢Ǹ˥ѥ뤵줿ȡΥץѤȤ˥ȤɤѤ뤫ӤȤǤǥեͤ 0 Ϥޤ٤⥯򥳥ѥ뤷ƤʤȤ̣Ǥ'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAY 塼ǽ񤭹ޤΤԤäƤԿ'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAYED 塼ǽ񤭹ޤΤԤäƤԿ'; $strShowStatusOpened_tablesDescr = 'Ƥơ֥οƤơ֥뤬¿Ϥ餯ơ֥륭åͤޤ'; $strShowStatusOpen_filesDescr = 'Ƥեο'; $strShowStatusOpen_streamsDescr = 'Ƥ륹ȥ꡼ο (˥εϿѤǤ)'; diff --git a/lang/japanese-sjis.inc.php b/lang/japanese-sjis.inc.php index 2750f590ff..39ee720e0f 100644 --- a/lang/japanese-sjis.inc.php +++ b/lang/japanese-sjis.inc.php @@ -821,7 +821,7 @@ $strShowStatusKey_readsDescr = ' $strShowStatusKey_write_requestsDescr = 'LbVɃL[ubN񂾃NGXg̐'; $strShowStatusKey_writesDescr = 'fBXNɃL[ubN𕨗݂'; $strShowStatusLast_query_costDescr = 'NGIveB}CU[̌vZɂAŌɃRpCꂽNG̑RXgBNG̃vςƂɃRXgǂς邩rƂɕ֗łBftHgl 0 ͂܂xNGRpCĂȂƂӖł'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAY L[̒ŏ܂̂҂Ăs'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAYED L[̒ŏ܂̂҂Ăs'; $strShowStatusOpened_tablesDescr = 'JĂe[u̐BJĂe[uꍇ͂炭e[uLbV̒l܂'; $strShowStatusOpen_filesDescr = 'JĂt@C̐'; $strShowStatusOpen_streamsDescr = 'JĂXg[̐ (ɃŐL^pł)'; diff --git a/lang/japanese-utf-8.inc.php b/lang/japanese-utf-8.inc.php index 35142340bd..cf4bdff0bd 100644 --- a/lang/japanese-utf-8.inc.php +++ b/lang/japanese-utf-8.inc.php @@ -821,7 +821,7 @@ $strShowStatusKey_readsDescr = 'ディスクからキーブロックを物理読 $strShowStatusKey_write_requestsDescr = 'キャッシュにキーブロックを書き込んだリクエストの数'; $strShowStatusKey_writesDescr = 'ディスクにキーブロックを物理書き込みした回数'; $strShowStatusLast_query_costDescr = 'クエリオプティマイザーの計算による、最後にコンパイルされたクエリの総コスト。クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デフォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAY キューの中で書き込まれるのを待っている行数'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAYED キューの中で書き込まれるのを待っている行数'; $strShowStatusOpened_tablesDescr = '開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッシュの値が小さすぎます'; $strShowStatusOpen_filesDescr = '開いているファイルの数'; $strShowStatusOpen_streamsDescr = '開いているストリームの数 (主にログの記録用です)'; diff --git a/lang/korean-euc-kr.inc.php b/lang/korean-euc-kr.inc.php index 9838860945..af133b0658 100644 --- a/lang/korean-euc-kr.inc.php +++ b/lang/korean-euc-kr.inc.php @@ -856,7 +856,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/korean-utf-8.inc.php b/lang/korean-utf-8.inc.php index 1558b00eab..2006b1f009 100644 --- a/lang/korean-utf-8.inc.php +++ b/lang/korean-utf-8.inc.php @@ -857,7 +857,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/latvian-utf-8.inc.php b/lang/latvian-utf-8.inc.php index ea9bb214b2..2329ea5128 100644 --- a/lang/latvian-utf-8.inc.php +++ b/lang/latvian-utf-8.inc.php @@ -906,7 +906,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/latvian-windows-1257.inc.php b/lang/latvian-windows-1257.inc.php index 0012c33ea3..ec9bcc385d 100644 --- a/lang/latvian-windows-1257.inc.php +++ b/lang/latvian-windows-1257.inc.php @@ -905,7 +905,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/lithuanian-utf-8.inc.php b/lang/lithuanian-utf-8.inc.php index 0e8ebaf7ea..0d54b720e5 100644 --- a/lang/lithuanian-utf-8.inc.php +++ b/lang/lithuanian-utf-8.inc.php @@ -907,7 +907,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/lithuanian-windows-1257.inc.php b/lang/lithuanian-windows-1257.inc.php index 2b2c7778f6..5c1bf825bc 100644 --- a/lang/lithuanian-windows-1257.inc.php +++ b/lang/lithuanian-windows-1257.inc.php @@ -906,7 +906,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/malay-iso-8859-1.inc.php b/lang/malay-iso-8859-1.inc.php index da65d4a2b9..6f250b32d5 100644 --- a/lang/malay-iso-8859-1.inc.php +++ b/lang/malay-iso-8859-1.inc.php @@ -864,7 +864,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/malay-utf-8.inc.php b/lang/malay-utf-8.inc.php index e307d92356..b4aaed6a38 100644 --- a/lang/malay-utf-8.inc.php +++ b/lang/malay-utf-8.inc.php @@ -865,7 +865,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/mongolian-utf-8.inc.php b/lang/mongolian-utf-8.inc.php index 9faecbbf26..d392619d5d 100644 --- a/lang/mongolian-utf-8.inc.php +++ b/lang/mongolian-utf-8.inc.php @@ -913,7 +913,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/norwegian-iso-8859-1.inc.php b/lang/norwegian-iso-8859-1.inc.php index 262aaaea19..ebe5a77d46 100644 --- a/lang/norwegian-iso-8859-1.inc.php +++ b/lang/norwegian-iso-8859-1.inc.php @@ -776,7 +776,7 @@ $strShowStatusKey_readsDescr = 'Antall fysiske lesninger av en n $strShowStatusKey_write_requestsDescr = 'Antall foresprsler for skrive en nkkelblokk til mellomlageret.'; $strShowStatusKey_writesDescr = 'Antall fysiske skrivinger av en nkkelblokk til disk.'; $strShowStatusLast_query_costDescr = 'Den totale kostnad ved siste kompilerte sprring slik den ble utregnet av sprringsoptimisereren. Nyttig for kunne sammenligne kostnader ved forskjellige sprringsplaner for den samme sprringen. Standardverdien p 0 betyr at ingen sprring har blitt kompilert enn.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Antall rader som venter p bli skrevet i INSERT DELAY ker.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Antall rader som venter p bli skrevet i INSERT DELAYED ker.'; $strShowStatusOpened_tablesDescr = 'Antall tabeller som har blitt pnet. Hvis denne er stor er nok din tabellmellomlagerverdi for liten.'; $strShowStatusOpen_filesDescr = 'Antall pne filer.'; $strShowStatusOpen_streamsDescr = 'Antall pne dataflyter (hovedsaklig brukt til logging).'; diff --git a/lang/norwegian-utf-8.inc.php b/lang/norwegian-utf-8.inc.php index 34c1f380f0..95c3a52270 100644 --- a/lang/norwegian-utf-8.inc.php +++ b/lang/norwegian-utf-8.inc.php @@ -777,7 +777,7 @@ $strShowStatusKey_readsDescr = 'Antall fysiske lesninger av en nøkkelblokk fra $strShowStatusKey_write_requestsDescr = 'Antall forespørsler for å skrive en nøkkelblokk til mellomlageret.'; $strShowStatusKey_writesDescr = 'Antall fysiske skrivinger av en nøkkelblokk til disk.'; $strShowStatusLast_query_costDescr = 'Den totale kostnad ved siste kompilerte spørring slik den ble utregnet av spørringsoptimisereren. Nyttig for å kunne sammenligne kostnader ved forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 betyr at ingen spørring har blitt kompilert ennå.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Antall rader som venter på å bli skrevet i INSERT DELAY køer.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Antall rader som venter på å bli skrevet i INSERT DELAYED køer.'; $strShowStatusOpened_tablesDescr = 'Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din tabellmellomlagerverdi for liten.'; $strShowStatusOpen_filesDescr = 'Antall åpne filer.'; $strShowStatusOpen_streamsDescr = 'Antall åpne dataflyter (hovedsaklig brukt til logging).'; diff --git a/lang/persian-utf-8.inc.php b/lang/persian-utf-8.inc.php index 33c5b8c153..570c2b391d 100644 --- a/lang/persian-utf-8.inc.php +++ b/lang/persian-utf-8.inc.php @@ -834,7 +834,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/persian-windows-1256.inc.php b/lang/persian-windows-1256.inc.php index 7329a7a035..b4303bebd9 100644 --- a/lang/persian-windows-1256.inc.php +++ b/lang/persian-windows-1256.inc.php @@ -833,7 +833,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/polish-iso-8859-2.inc.php b/lang/polish-iso-8859-2.inc.php index 74e0b66d40..e86142a9be 100644 --- a/lang/polish-iso-8859-2.inc.php +++ b/lang/polish-iso-8859-2.inc.php @@ -773,7 +773,7 @@ $strShowStatusKey_readsDescr = 'Liczba fizycznych odczyt $strShowStatusKey_write_requestsDescr = 'Liczba da zapisw blokw indeksw to bufora podrcznego.'; $strShowStatusKey_writesDescr = 'Liczba fizycznych zapisw blokw indeksw na dysk.'; $strShowStatusLast_query_costDescr = 'Cakowity koszta ostatnio skompilowanego zapytania, wyliczony przez optymalizator zapyta. Przydatny do porwna kosztw rnych planw wykonania tego samego zapytania. Domylna warto 0 oznacza, e jeszcze adne zapytanie nie zostao skompilowane.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Liczba rekordw oczekujcych na zapisanie w kolejkach INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Liczba rekordw oczekujcych na zapisanie w kolejkach INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Liczba kiedykolwiek otwartych tabel. Jeli ta warto jest dua, prawdopodobnie wielko pamici podrcznej tabel jest zbyt maa.'; $strShowStatusOpen_filesDescr = 'Liczba otwartych plikw.'; $strShowStatusOpen_streamsDescr = 'Liczba otwartych strumieni (uywanych gownie do rejestracji w dzienniku).'; diff --git a/lang/polish-utf-8.inc.php b/lang/polish-utf-8.inc.php index 5d908f5f80..29962b6cd5 100644 --- a/lang/polish-utf-8.inc.php +++ b/lang/polish-utf-8.inc.php @@ -774,7 +774,7 @@ $strShowStatusKey_readsDescr = 'Liczba fizycznych odczytów bloków indeksów z $strShowStatusKey_write_requestsDescr = 'Liczba żądań zapisów bloków indeksów to bufora podręcznego.'; $strShowStatusKey_writesDescr = 'Liczba fizycznych zapisów bloków indeksów na dysk.'; $strShowStatusLast_query_costDescr = 'Całkowity koszta ostatnio skompilowanego zapytania, wyliczony przez optymalizator zapytań. Przydatny do porównań kosztów różnych planów wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze żadne zapytanie nie zostało skompilowane.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała.'; $strShowStatusOpen_filesDescr = 'Liczba otwartych plików.'; $strShowStatusOpen_streamsDescr = 'Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku).'; diff --git a/lang/polish-windows-1250.inc.php b/lang/polish-windows-1250.inc.php index 2ee2699f5c..59f44e3315 100644 --- a/lang/polish-windows-1250.inc.php +++ b/lang/polish-windows-1250.inc.php @@ -773,7 +773,7 @@ $strShowStatusKey_readsDescr = 'Liczba fizycznych odczyt $strShowStatusKey_write_requestsDescr = 'Liczba da zapisw blokw indeksw to bufora podrcznego.'; $strShowStatusKey_writesDescr = 'Liczba fizycznych zapisw blokw indeksw na dysk.'; $strShowStatusLast_query_costDescr = 'Cakowity koszta ostatnio skompilowanego zapytania, wyliczony przez optymalizator zapyta. Przydatny do porwna kosztw rnych planw wykonania tego samego zapytania. Domylna warto 0 oznacza, e jeszcze adne zapytanie nie zostao skompilowane.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Liczba rekordw oczekujcych na zapisanie w kolejkach INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Liczba rekordw oczekujcych na zapisanie w kolejkach INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Liczba kiedykolwiek otwartych tabel. Jeli ta warto jest dua, prawdopodobnie wielko pamici podrcznej tabel jest zbyt maa.'; $strShowStatusOpen_filesDescr = 'Liczba otwartych plikw.'; $strShowStatusOpen_streamsDescr = 'Liczba otwartych strumieni (uywanych gownie do rejestracji w dzienniku).'; diff --git a/lang/portuguese-iso-8859-1.inc.php b/lang/portuguese-iso-8859-1.inc.php index d79c831fb1..4b6675d58d 100644 --- a/lang/portuguese-iso-8859-1.inc.php +++ b/lang/portuguese-iso-8859-1.inc.php @@ -888,7 +888,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/portuguese-iso-8859-15.inc.php b/lang/portuguese-iso-8859-15.inc.php index 308bfabec2..ed13a0daf0 100644 --- a/lang/portuguese-iso-8859-15.inc.php +++ b/lang/portuguese-iso-8859-15.inc.php @@ -888,7 +888,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/portuguese-utf-8.inc.php b/lang/portuguese-utf-8.inc.php index 7f76f22b70..18ca66b3f9 100644 --- a/lang/portuguese-utf-8.inc.php +++ b/lang/portuguese-utf-8.inc.php @@ -889,7 +889,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/romanian-iso-8859-1.inc.php b/lang/romanian-iso-8859-1.inc.php index 0359138c83..859521d4a8 100644 --- a/lang/romanian-iso-8859-1.inc.php +++ b/lang/romanian-iso-8859-1.inc.php @@ -906,7 +906,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/romanian-utf-8.inc.php b/lang/romanian-utf-8.inc.php index 3576010e0f..dfa46a1e76 100644 --- a/lang/romanian-utf-8.inc.php +++ b/lang/romanian-utf-8.inc.php @@ -907,7 +907,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/serbian_cyrillic-utf-8.inc.php b/lang/serbian_cyrillic-utf-8.inc.php index bf57f6bf97..13b3ae7d75 100644 --- a/lang/serbian_cyrillic-utf-8.inc.php +++ b/lang/serbian_cyrillic-utf-8.inc.php @@ -914,7 +914,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/serbian_cyrillic-windows-1251.inc.php b/lang/serbian_cyrillic-windows-1251.inc.php index 9ae2f9ea93..b11648859d 100644 --- a/lang/serbian_cyrillic-windows-1251.inc.php +++ b/lang/serbian_cyrillic-windows-1251.inc.php @@ -913,7 +913,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/serbian_latin-utf-8.inc.php b/lang/serbian_latin-utf-8.inc.php index 01e71c60bb..441a796083 100644 --- a/lang/serbian_latin-utf-8.inc.php +++ b/lang/serbian_latin-utf-8.inc.php @@ -914,7 +914,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/serbian_latin-windows-1250.inc.php b/lang/serbian_latin-windows-1250.inc.php index 360bb7d066..4e4d54c798 100644 --- a/lang/serbian_latin-windows-1250.inc.php +++ b/lang/serbian_latin-windows-1250.inc.php @@ -913,7 +913,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/slovak-iso-8859-2.inc.php b/lang/slovak-iso-8859-2.inc.php index d484b47af9..760afaa67b 100644 --- a/lang/slovak-iso-8859-2.inc.php +++ b/lang/slovak-iso-8859-2.inc.php @@ -773,7 +773,7 @@ $strShowStatusKey_readsDescr = 'Po $strShowStatusKey_write_requestsDescr = 'Poet poiadavkov na zpis kovho bloku do vyrovnvacej pamti.'; $strShowStatusKey_writesDescr = 'Poet fyzickch zpisov kovho bloku na disk.'; $strShowStatusLast_query_costDescr = 'Celkov nklady na posledn kompilovan prkaz, vypotan optimizrom prkazov. Uiton na porovnvanie nkladov na rzne prkazy pre t ist poiadavku. Prednastaven hodnota 0 znamen, e doposia neboli skompilovan iadne prkazy.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Poet riadkov akajcich na zpis cez INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Poet riadkov akajcich na zpis cez INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Poet doposia otvorench tabuliek. Ak je tto hodnota prli vysok, pravdepodobne je vyrovnvacia pam pre tabuky prli mal.'; $strShowStatusOpen_filesDescr = 'Poet otvorench sborov.'; $strShowStatusOpen_streamsDescr = 'Poet otvorench streamov (vinou vyuvan na logovanie).'; diff --git a/lang/slovak-utf-8.inc.php b/lang/slovak-utf-8.inc.php index 20d21d51e4..cdd3570b71 100644 --- a/lang/slovak-utf-8.inc.php +++ b/lang/slovak-utf-8.inc.php @@ -774,7 +774,7 @@ $strShowStatusKey_readsDescr = 'Počet načítaní kľúčového bloku priamo z $strShowStatusKey_write_requestsDescr = 'Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti.'; $strShowStatusKey_writesDescr = 'Počet fyzických zápisov kľúčového bloku na disk.'; $strShowStatusLast_query_costDescr = 'Celkové náklady na posledný kompilovaný príkaz, vypočítané optimizérom príkazov. Užitočné na porovnávanie nákladov na rôzne príkazy pre tú istú požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované žiadne príkazy.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Počet riadkov čakajúcich na zápis cez INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Počet riadkov čakajúcich na zápis cez INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá.'; $strShowStatusOpen_filesDescr = 'Počet otvorených súborov.'; $strShowStatusOpen_streamsDescr = 'Počet otvorených streamov (väčšinou využívané na logovanie).'; diff --git a/lang/slovak-windows-1250.inc.php b/lang/slovak-windows-1250.inc.php index e21a9248e4..2d47e78b5d 100644 --- a/lang/slovak-windows-1250.inc.php +++ b/lang/slovak-windows-1250.inc.php @@ -773,7 +773,7 @@ $strShowStatusKey_readsDescr = 'Po $strShowStatusKey_write_requestsDescr = 'Poet poiadavkov na zpis kovho bloku do vyrovnvacej pamti.'; $strShowStatusKey_writesDescr = 'Poet fyzickch zpisov kovho bloku na disk.'; $strShowStatusLast_query_costDescr = 'Celkov nklady na posledn kompilovan prkaz, vypotan optimizrom prkazov. Uiton na porovnvanie nkladov na rzne prkazy pre t ist poiadavku. Prednastaven hodnota 0 znamen, e doposia neboli skompilovan iadne prkazy.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'Poet riadkov akajcich na zpis cez INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'Poet riadkov akajcich na zpis cez INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'Poet doposia otvorench tabuliek. Ak je tto hodnota prli vysok, pravdepodobne je vyrovnvacia pam pre tabuky prli mal.'; $strShowStatusOpen_filesDescr = 'Poet otvorench sborov.'; $strShowStatusOpen_streamsDescr = 'Poet otvorench streamov (vinou vyuvan na logovanie).'; diff --git a/lang/slovenian-iso-8859-2.inc.php b/lang/slovenian-iso-8859-2.inc.php index 44dd6966f6..d60261951d 100644 --- a/lang/slovenian-iso-8859-2.inc.php +++ b/lang/slovenian-iso-8859-2.inc.php @@ -893,7 +893,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php index f164e231aa..6ff299fa0b 100644 --- a/lang/slovenian-utf-8.inc.php +++ b/lang/slovenian-utf-8.inc.php @@ -894,7 +894,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/slovenian-windows-1250.inc.php b/lang/slovenian-windows-1250.inc.php index f1a89d0244..316a13dcaf 100644 --- a/lang/slovenian-windows-1250.inc.php +++ b/lang/slovenian-windows-1250.inc.php @@ -893,7 +893,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/spanish-iso-8859-1.inc.php b/lang/spanish-iso-8859-1.inc.php index 8652e3c80b..45b10e5fbd 100644 --- a/lang/spanish-iso-8859-1.inc.php +++ b/lang/spanish-iso-8859-1.inc.php @@ -813,7 +813,7 @@ $strShowStatusKey_readsDescr = 'El n $strShowStatusKey_write_requestsDescr = 'El nmero de solicitudes para escribir un key block al cache.'; $strShowStatusKey_writesDescr = 'El nmero de escrituras fsicas a un key block al disco.'; $strShowStatusLast_query_costDescr = 'El costo total de la ltima consulta compilada como fuera computada por el optimizador de consultas. Es til para comparar el costo de diferentes planes de consulta para una misma consulta. El valor por omisin de 0 significa que ninguna consulta ha sido compilada todava.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'El nmero de filas esperando ser escritas en las colas INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'El nmero de filas esperando ser escritas en las colas INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'El nmero de tablas que han sido abiertas. Si el nmero de tablas abiertas es grande, su valor del cache de tabla probablemente es muy pequeo.'; $strShowStatusOpen_filesDescr = 'El nmero de archivos que estn abiertos.'; $strShowStatusOpen_streamsDescr = 'El nmero de flujos de datos que estn abiertos (usado principalmente para alimentar a los logs).'; diff --git a/lang/spanish-iso-8859-15.inc.php b/lang/spanish-iso-8859-15.inc.php index 6cb90edcb3..8a081610df 100644 --- a/lang/spanish-iso-8859-15.inc.php +++ b/lang/spanish-iso-8859-15.inc.php @@ -813,7 +813,7 @@ $strShowStatusKey_readsDescr = 'El n $strShowStatusKey_write_requestsDescr = 'El nmero de solicitudes para escribir un key block al cache.'; $strShowStatusKey_writesDescr = 'El nmero de escrituras fsicas a un key block al disco.'; $strShowStatusLast_query_costDescr = 'El costo total de la ltima consulta compilada como fuera computada por el optimizador de consultas. Es til para comparar el costo de diferentes planes de consulta para una misma consulta. El valor por omisin de 0 significa que ninguna consulta ha sido compilada todava.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'El nmero de filas esperando ser escritas en las colas INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'El nmero de filas esperando ser escritas en las colas INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'El nmero de tablas que han sido abiertas. Si el nmero de tablas abiertas es grande, su valor del cache de tabla probablemente es muy pequeo.'; $strShowStatusOpen_filesDescr = 'El nmero de archivos que estn abiertos.'; $strShowStatusOpen_streamsDescr = 'El nmero de flujos de datos que estn abiertos (usado principalmente para alimentar a los logs).'; diff --git a/lang/spanish-utf-8.inc.php b/lang/spanish-utf-8.inc.php index 781bf9fd43..d22629b31f 100644 --- a/lang/spanish-utf-8.inc.php +++ b/lang/spanish-utf-8.inc.php @@ -814,7 +814,7 @@ $strShowStatusKey_readsDescr = 'El número de lecturas físicas del key block de $strShowStatusKey_write_requestsDescr = 'El número de solicitudes para escribir un key block al cache.'; $strShowStatusKey_writesDescr = 'El número de escrituras físicas a un key block al disco.'; $strShowStatusLast_query_costDescr = 'El costo total de la última consulta compilada como fuera computada por el optimizador de consultas. Es útil para comparar el costo de diferentes planes de consulta para una misma consulta. El valor por omisión de 0 significa que ninguna consulta ha sido compilada todavía.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'El número de filas esperando ser escritas en las colas INSERT DELAY.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'El número de filas esperando ser escritas en las colas INSERT DELAYED.'; $strShowStatusOpened_tablesDescr = 'El número de tablas que han sido abiertas. Si el número de tablas abiertas es grande, su valor del cache de tabla probablemente es muy pequeño.'; $strShowStatusOpen_filesDescr = 'El número de archivos que están abiertos.'; $strShowStatusOpen_streamsDescr = 'El número de flujos de datos que están abiertos (usado principalmente para alimentar a los logs).'; diff --git a/lang/tatarish-iso-8859-9.inc.php b/lang/tatarish-iso-8859-9.inc.php index 21f47bcd66..4ec4e66d3a 100644 --- a/lang/tatarish-iso-8859-9.inc.php +++ b/lang/tatarish-iso-8859-9.inc.php @@ -940,7 +940,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate $strShowStatusQcache_free_blocksDescr = 'The number of free memory blocks in query cache.'; //to translate diff --git a/lang/tatarish-utf-8.inc.php b/lang/tatarish-utf-8.inc.php index 7b3ba3a848..32bfb2a6bd 100644 --- a/lang/tatarish-utf-8.inc.php +++ b/lang/tatarish-utf-8.inc.php @@ -941,7 +941,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate $strShowStatusQcache_free_blocksDescr = 'The number of free memory blocks in query cache.'; //to translate diff --git a/lang/thai-tis-620.inc.php b/lang/thai-tis-620.inc.php index ceab685c7b..e2df8a687c 100644 --- a/lang/thai-tis-620.inc.php +++ b/lang/thai-tis-620.inc.php @@ -889,7 +889,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/thai-utf-8.inc.php b/lang/thai-utf-8.inc.php index 1d57badfd6..e49e2b33ec 100644 --- a/lang/thai-utf-8.inc.php +++ b/lang/thai-utf-8.inc.php @@ -890,7 +890,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/turkish-iso-8859-9.inc.php b/lang/turkish-iso-8859-9.inc.php index ed639a8752..ffff30f9f8 100644 --- a/lang/turkish-iso-8859-9.inc.php +++ b/lang/turkish-iso-8859-9.inc.php @@ -822,7 +822,7 @@ $strShowStatusKey_readsDescr = 'Diskten anahtar blo $strShowStatusKey_write_requestsDescr = 'nbellee anahtar blou yazmak iin istek saysdr.'; $strShowStatusKey_writesDescr = 'Diske anahtar blounu fiziksel yazma saysdr.'; $strShowStatusLast_query_costDescr = 'Sorgu en iyileyicisi tarafndan hesaplanm gibi son derlenen sorgunun toplam maliyetidir. Ayn sorgu iin farkl sorgu planlarnn maliyetini karlatrmak iin yararldr. Varsaylan deer 0, henz derlenmi sorgu olmad anlamna gelir.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAY sralarnda yazlmak iin bekleyen satr saysdr.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAYED sralarnda yazlmak iin bekleyen satr saysdr.'; $strShowStatusOpened_tablesDescr = 'Ak olan tablo saysdr. Eer ak tablolar bykse, tablo nbellek deeriniz muhtemelen ok kktr.'; $strShowStatusOpen_filesDescr = 'Ak olan dosya saysdr.'; $strShowStatusOpen_streamsDescr = 'Ak olan ak saysdr (balca gnlkleme iin kullanlr).'; diff --git a/lang/turkish-utf-8.inc.php b/lang/turkish-utf-8.inc.php index 77be9e1bbc..57149ee811 100644 --- a/lang/turkish-utf-8.inc.php +++ b/lang/turkish-utf-8.inc.php @@ -823,7 +823,7 @@ $strShowStatusKey_readsDescr = 'Diskten anahtar bloğunun fiziksel okunma sayıs $strShowStatusKey_write_requestsDescr = 'Önbelleğe anahtar bloğu yazmak için istek sayısıdır.'; $strShowStatusKey_writesDescr = 'Diske anahtar bloğunu fiziksel yazma sayısıdır.'; $strShowStatusLast_query_costDescr = 'Sorgu en iyileyicisi tarafından hesaplanmış gibi son derlenen sorgunun toplam maliyetidir. Aynı sorgu için farklı sorgu planlarının maliyetini karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu olmadığı anlamına gelir.'; -$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAY sıralarında yazılmak için bekleyen satır sayısıdır.'; +$strShowStatusNot_flushed_delayed_rowsDescr = 'INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır.'; $strShowStatusOpened_tablesDescr = 'Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek değeriniz muhtemelen çok küçüktür.'; $strShowStatusOpen_filesDescr = 'Açık olan dosya sayısıdır.'; $strShowStatusOpen_streamsDescr = 'Açık olan akış sayısıdır (başlıca günlükleme için kullanılır).'; diff --git a/lang/ukrainian-utf-8.inc.php b/lang/ukrainian-utf-8.inc.php index 69759cee8d..edfbfe96cd 100644 --- a/lang/ukrainian-utf-8.inc.php +++ b/lang/ukrainian-utf-8.inc.php @@ -888,7 +888,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate diff --git a/lang/ukrainian-windows-1251.inc.php b/lang/ukrainian-windows-1251.inc.php index 650365d6a3..1cb85b2d89 100644 --- a/lang/ukrainian-windows-1251.inc.php +++ b/lang/ukrainian-windows-1251.inc.php @@ -887,7 +887,7 @@ $strShowStatusKey_readsDescr = 'The number of physical reads of a key block from $strShowStatusKey_write_requestsDescr = 'The number of requests to write a key block to the cache.'; //to translate $strShowStatusKey_writesDescr = 'The number of physical writes of a key block to disk.'; //to translate $strShowStatusLast_query_costDescr = 'The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'; //to translate -$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAY queues.'; //to translate +$strShowStatusNot_flushed_delayed_rowsDescr = 'The number of rows waiting to be written in INSERT DELAYED queues.'; //to translate $strShowStatusOpened_tablesDescr = 'The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'; //to translate $strShowStatusOpen_filesDescr = 'The number of files that are open.'; //to translate $strShowStatusOpen_streamsDescr = 'The number of streams that are open (used mainly for logging).'; //to translate From ed633f88133c2423bdf845f15c71a2c3647971ad Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 10 Jun 2007 19:28:56 +0000 Subject: [PATCH 08/14] patch #1730171 Dead message strLanguageFileNotFound, thanks to Victor Volkov --- ChangeLog | 1 + lang/afrikaans-iso-8859-1.inc.php | 1 - lang/afrikaans-utf-8.inc.php | 1 - lang/albanian-iso-8859-1.inc.php | 1 - lang/albanian-utf-8.inc.php | 1 - lang/arabic-utf-8.inc.php | 1 - lang/arabic-windows-1256.inc.php | 1 - lang/azerbaijani-iso-8859-9.inc.php | 1 - lang/azerbaijani-utf-8.inc.php | 1 - lang/basque-iso-8859-1.inc.php | 1 - lang/basque-utf-8.inc.php | 1 - lang/belarusian_cyrillic-utf-8.inc.php | 1 - lang/belarusian_cyrillic-windows-1251.inc.php | 1 - lang/belarusian_latin-utf-8.inc.php | 1 - lang/bosnian-utf-8.inc.php | 1 - lang/bosnian-windows-1250.inc.php | 1 - lang/brazilian_portuguese-iso-8859-1.inc.php | 1 - lang/brazilian_portuguese-utf-8.inc.php | 1 - lang/bulgarian-koi8-r.inc.php | 1 - lang/bulgarian-utf-8.inc.php | 1 - lang/bulgarian-windows-1251.inc.php | 1 - lang/catalan-iso-8859-1.inc.php | 1 - lang/catalan-utf-8.inc.php | 1 - lang/chinese_simplified-gb2312.inc.php | 1 - lang/chinese_simplified-utf-8.inc.php | 1 - lang/chinese_traditional-big5.inc.php | 1 - lang/chinese_traditional-utf-8.inc.php | 1 - lang/croatian-iso-8859-2.inc.php | 1 - lang/croatian-utf-8.inc.php | 1 - lang/croatian-windows-1250.inc.php | 1 - lang/czech-iso-8859-2.inc.php | 1 - lang/czech-utf-8.inc.php | 1 - lang/czech-windows-1250.inc.php | 1 - lang/danish-iso-8859-1.inc.php | 1 - lang/danish-utf-8.inc.php | 1 - lang/dutch-iso-8859-1.inc.php | 1 - lang/dutch-iso-8859-15.inc.php | 1 - lang/dutch-utf-8.inc.php | 1 - lang/english-iso-8859-1.inc.php | 1 - lang/english-iso-8859-15.inc.php | 1 - lang/english-utf-8.inc.php | 1 - lang/estonian-iso-8859-1.inc.php | 1 - lang/estonian-utf-8.inc.php | 1 - lang/finnish-iso-8859-1.inc.php | 1 - lang/finnish-iso-8859-15.inc.php | 1 - lang/finnish-utf-8.inc.php | 1 - lang/french-iso-8859-1.inc.php | 1 - lang/french-iso-8859-15.inc.php | 1 - lang/french-utf-8.inc.php | 1 - lang/galician-iso-8859-1.inc.php | 1 - lang/galician-utf-8.inc.php | 1 - lang/georgian-utf-8.inc.php | 1 - lang/german-iso-8859-1.inc.php | 1 - lang/german-iso-8859-15.inc.php | 1 - lang/german-utf-8.inc.php | 1 - lang/greek-iso-8859-7.inc.php | 1 - lang/greek-utf-8.inc.php | 1 - lang/hebrew-iso-8859-8-i.inc.php | 1 - lang/hebrew-utf-8.inc.php | 1 - lang/hindi-utf-8.inc.php | 1 - lang/hungarian-iso-8859-2.inc.php | 1 - lang/hungarian-utf-8.inc.php | 1 - lang/indonesian-iso-8859-1.inc.php | 1 - lang/indonesian-utf-8.inc.php | 1 - lang/italian-iso-8859-1.inc.php | 1 - lang/italian-iso-8859-15.inc.php | 1 - lang/italian-utf-8.inc.php | 1 - lang/japanese-euc.inc.php | 1 - lang/japanese-sjis.inc.php | 1 - lang/japanese-utf-8.inc.php | 1 - lang/korean-euc-kr.inc.php | 1 - lang/korean-utf-8.inc.php | 1 - lang/latvian-utf-8.inc.php | 1 - lang/latvian-windows-1257.inc.php | 1 - lang/lithuanian-utf-8.inc.php | 1 - lang/lithuanian-windows-1257.inc.php | 1 - lang/malay-iso-8859-1.inc.php | 1 - lang/malay-utf-8.inc.php | 1 - lang/mongolian-utf-8.inc.php | 1 - lang/norwegian-iso-8859-1.inc.php | 1 - lang/norwegian-utf-8.inc.php | 1 - lang/persian-utf-8.inc.php | 1 - lang/persian-windows-1256.inc.php | 1 - lang/polish-iso-8859-2.inc.php | 1 - lang/polish-utf-8.inc.php | 1 - lang/polish-windows-1250.inc.php | 1 - lang/portuguese-iso-8859-1.inc.php | 1 - lang/portuguese-iso-8859-15.inc.php | 1 - lang/portuguese-utf-8.inc.php | 1 - lang/romanian-iso-8859-1.inc.php | 1 - lang/romanian-utf-8.inc.php | 1 - lang/russian-cp-866.inc.php | 1 - lang/russian-koi8-r.inc.php | 1 - lang/russian-utf-8.inc.php | 1 - lang/russian-windows-1251.inc.php | 1 - lang/serbian_cyrillic-utf-8.inc.php | 1 - lang/serbian_cyrillic-windows-1251.inc.php | 1 - lang/serbian_latin-utf-8.inc.php | 1 - lang/serbian_latin-windows-1250.inc.php | 1 - lang/slovak-iso-8859-2.inc.php | 1 - lang/slovak-utf-8.inc.php | 1 - lang/slovak-windows-1250.inc.php | 1 - lang/slovenian-iso-8859-2.inc.php | 1 - lang/slovenian-utf-8.inc.php | 1 - lang/slovenian-windows-1250.inc.php | 1 - lang/spanish-iso-8859-1.inc.php | 1 - lang/spanish-iso-8859-15.inc.php | 1 - lang/spanish-utf-8.inc.php | 1 - lang/swedish-iso-8859-1.inc.php | 1 - lang/swedish-utf-8.inc.php | 1 - lang/tatarish-iso-8859-9.inc.php | 1 - lang/tatarish-utf-8.inc.php | 1 - lang/thai-tis-620.inc.php | 1 - lang/thai-utf-8.inc.php | 1 - lang/turkish-iso-8859-9.inc.php | 1 - lang/turkish-utf-8.inc.php | 1 - lang/ukrainian-utf-8.inc.php | 1 - lang/ukrainian-windows-1251.inc.php | 1 - libraries/select_lang.lib.php | 2 +- 119 files changed, 2 insertions(+), 118 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6aec17b03f..04fe51fd7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,7 @@ $HeadURL$ - bug #1728590 Detected failing session_start fails, thanks to Jürgen Wind - RFE #1714760 Obey ShowCreateDb on the Databases tab - patch #1733762 Typo in message "INSERT DELAY", thanks to Victor Volkov +- patch #1730171 Dead message strLanguageFileNotFound, thanks to Victor Volkov 2.10.1.0 (2007-04-23) ===================== diff --git a/lang/afrikaans-iso-8859-1.inc.php b/lang/afrikaans-iso-8859-1.inc.php index 988755f4ed..8e7bc97e61 100644 --- a/lang/afrikaans-iso-8859-1.inc.php +++ b/lang/afrikaans-iso-8859-1.inc.php @@ -597,7 +597,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/afrikaans-utf-8.inc.php b/lang/afrikaans-utf-8.inc.php index 9c0e597006..c50dfafe30 100644 --- a/lang/afrikaans-utf-8.inc.php +++ b/lang/afrikaans-utf-8.inc.php @@ -598,7 +598,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/albanian-iso-8859-1.inc.php b/lang/albanian-iso-8859-1.inc.php index 94d3496e3d..a0fc286125 100644 --- a/lang/albanian-iso-8859-1.inc.php +++ b/lang/albanian-iso-8859-1.inc.php @@ -769,7 +769,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/albanian-utf-8.inc.php b/lang/albanian-utf-8.inc.php index 9452836349..eaad0b48c5 100644 --- a/lang/albanian-utf-8.inc.php +++ b/lang/albanian-utf-8.inc.php @@ -770,7 +770,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php index afc2815812..9340c0856a 100644 --- a/lang/arabic-utf-8.inc.php +++ b/lang/arabic-utf-8.inc.php @@ -752,7 +752,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatvian = 'Latvian'; //to translate diff --git a/lang/arabic-windows-1256.inc.php b/lang/arabic-windows-1256.inc.php index 263687659c..2bcbd5639e 100644 --- a/lang/arabic-windows-1256.inc.php +++ b/lang/arabic-windows-1256.inc.php @@ -751,7 +751,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatvian = 'Latvian'; //to translate diff --git a/lang/azerbaijani-iso-8859-9.inc.php b/lang/azerbaijani-iso-8859-9.inc.php index 702ae16437..cfaf041ffa 100644 --- a/lang/azerbaijani-iso-8859-9.inc.php +++ b/lang/azerbaijani-iso-8859-9.inc.php @@ -733,7 +733,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexContent = 'Content of table __TABLE__';//to translate diff --git a/lang/azerbaijani-utf-8.inc.php b/lang/azerbaijani-utf-8.inc.php index 5c64f15088..6f951ff71d 100644 --- a/lang/azerbaijani-utf-8.inc.php +++ b/lang/azerbaijani-utf-8.inc.php @@ -734,7 +734,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexContent = 'Content of table __TABLE__';//to translate diff --git a/lang/basque-iso-8859-1.inc.php b/lang/basque-iso-8859-1.inc.php index 447b175b13..ab1da8354b 100644 --- a/lang/basque-iso-8859-1.inc.php +++ b/lang/basque-iso-8859-1.inc.php @@ -739,7 +739,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate $strLandscape = 'Horizontal'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexContinuedCaption = 'Continued table caption'; //to translate diff --git a/lang/basque-utf-8.inc.php b/lang/basque-utf-8.inc.php index 09b5f0022a..160b69e3eb 100644 --- a/lang/basque-utf-8.inc.php +++ b/lang/basque-utf-8.inc.php @@ -740,7 +740,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate $strLandscape = 'Horizontal'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexContinuedCaption = 'Continued table caption'; //to translate diff --git a/lang/belarusian_cyrillic-utf-8.inc.php b/lang/belarusian_cyrillic-utf-8.inc.php index fd4ee0f1a9..a823a3ec60 100644 --- a/lang/belarusian_cyrillic-utf-8.inc.php +++ b/lang/belarusian_cyrillic-utf-8.inc.php @@ -397,7 +397,6 @@ $strKill = 'Спыніць'; $strKorean = 'Карэйская'; $strLandscape = 'Краявід'; -$strLanguageFileNotFound = 'Моўны файл "%1$s" ня знойдзены.'; $strLanguage = 'Мова'; $strLanguageUnknown = 'Невядомая мова: %1$s.'; $strLatchedPages = 'Фіксаваныя старонкі'; diff --git a/lang/belarusian_cyrillic-windows-1251.inc.php b/lang/belarusian_cyrillic-windows-1251.inc.php index 95947e2489..d1c597b49c 100644 --- a/lang/belarusian_cyrillic-windows-1251.inc.php +++ b/lang/belarusian_cyrillic-windows-1251.inc.php @@ -396,7 +396,6 @@ $strKill = ' $strKorean = ''; $strLandscape = ''; -$strLanguageFileNotFound = ' "%1$s" .'; $strLanguage = ''; $strLanguageUnknown = ' : %1$s.'; $strLatchedPages = 'Գ '; diff --git a/lang/belarusian_latin-utf-8.inc.php b/lang/belarusian_latin-utf-8.inc.php index 9107af8360..83f12543b5 100644 --- a/lang/belarusian_latin-utf-8.inc.php +++ b/lang/belarusian_latin-utf-8.inc.php @@ -396,7 +396,6 @@ $strKill = 'Spynić'; $strKorean = 'Karejskaja'; $strLandscape = 'Krajavid'; -$strLanguageFileNotFound = 'Moŭny fajł "%1$s" nia znojdzieny.'; $strLanguage = 'Mova'; $strLanguageUnknown = 'Nieviadomaja mova: %1$s.'; $strLatchedPages = 'Fiksavanyja staronki'; diff --git a/lang/bosnian-utf-8.inc.php b/lang/bosnian-utf-8.inc.php index ad70ca880e..35eb7b1dcb 100644 --- a/lang/bosnian-utf-8.inc.php +++ b/lang/bosnian-utf-8.inc.php @@ -738,7 +738,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption'; //to translate diff --git a/lang/bosnian-windows-1250.inc.php b/lang/bosnian-windows-1250.inc.php index 5965db5a4a..a85435b018 100644 --- a/lang/bosnian-windows-1250.inc.php +++ b/lang/bosnian-windows-1250.inc.php @@ -737,7 +737,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption'; //to translate diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php b/lang/brazilian_portuguese-iso-8859-1.inc.php index 186ef5d8dc..62f4d4c01a 100644 --- a/lang/brazilian_portuguese-iso-8859-1.inc.php +++ b/lang/brazilian_portuguese-iso-8859-1.inc.php @@ -424,7 +424,6 @@ $strKnownExternalBug = 'A funcionalidade %s $strKorean = 'Coreano'; $strLandscape = 'Paisagem'; -$strLanguageFileNotFound = 'Arquivo da linguagem "%1$s" no encontrado.'; $strLanguage = 'Linguagem'; $strLanguageUnknown = 'Linguagem desconhecida: %1$s.'; $strLatchedPages = 'Pginas trancadas'; diff --git a/lang/brazilian_portuguese-utf-8.inc.php b/lang/brazilian_portuguese-utf-8.inc.php index 54d8f93825..741eb8d056 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php +++ b/lang/brazilian_portuguese-utf-8.inc.php @@ -425,7 +425,6 @@ $strKnownExternalBug = 'A funcionalidade %s é afetada por um bug conhecido, vej $strKorean = 'Coreano'; $strLandscape = 'Paisagem'; -$strLanguageFileNotFound = 'Arquivo da linguagem "%1$s" não encontrado.'; $strLanguage = 'Linguagem'; $strLanguageUnknown = 'Linguagem desconhecida: %1$s.'; $strLatchedPages = 'Páginas trancadas'; diff --git a/lang/bulgarian-koi8-r.inc.php b/lang/bulgarian-koi8-r.inc.php index ca7bf8ae51..e207929665 100644 --- a/lang/bulgarian-koi8-r.inc.php +++ b/lang/bulgarian-koi8-r.inc.php @@ -347,7 +347,6 @@ $strKill = ' $strKorean = ''; $strLandscape = ''; -$strLanguageFileNotFound = ' "%1$s" .'; $strLanguage = ''; $strLatexCaption = ' '; $strLatexContent = ' __TABLE__'; diff --git a/lang/bulgarian-utf-8.inc.php b/lang/bulgarian-utf-8.inc.php index 182c50301a..e13c07563d 100644 --- a/lang/bulgarian-utf-8.inc.php +++ b/lang/bulgarian-utf-8.inc.php @@ -348,7 +348,6 @@ $strKill = 'СТОП'; $strKorean = 'Корейски'; $strLandscape = 'Пейзажно'; -$strLanguageFileNotFound = 'Езиковият файл "%1$s" не е намерен.'; $strLanguage = 'Език'; $strLatexCaption = 'Заглавие на таблицата'; $strLatexContent = 'Съдържание на таблица __TABLE__'; diff --git a/lang/bulgarian-windows-1251.inc.php b/lang/bulgarian-windows-1251.inc.php index a6eeabbf2d..9d9a26725a 100644 --- a/lang/bulgarian-windows-1251.inc.php +++ b/lang/bulgarian-windows-1251.inc.php @@ -347,7 +347,6 @@ $strKill = ' $strKorean = ''; $strLandscape = ''; -$strLanguageFileNotFound = ' "%1$s" .'; $strLanguage = ''; $strLatexCaption = ' '; $strLatexContent = ' __TABLE__'; diff --git a/lang/catalan-iso-8859-1.inc.php b/lang/catalan-iso-8859-1.inc.php index 71cb4800b1..eebca1afbe 100644 --- a/lang/catalan-iso-8859-1.inc.php +++ b/lang/catalan-iso-8859-1.inc.php @@ -414,7 +414,6 @@ $strKnownExternalBug = 'La funcionalitat %s es veu afectada per un error conegut $strKorean = 'Core'; $strLandscape = 'Horitzontal'; -$strLanguageFileNotFound = 'Arxiu d\'idioma "%1$s" no trobat.'; $strLanguage = 'Idioma'; $strLanguageUnknown = 'Idioma desconegut: %1$s.'; $strLatchedPages = 'Pgines inalterables'; diff --git a/lang/catalan-utf-8.inc.php b/lang/catalan-utf-8.inc.php index 9a8b0177c5..7d496e1824 100644 --- a/lang/catalan-utf-8.inc.php +++ b/lang/catalan-utf-8.inc.php @@ -415,7 +415,6 @@ $strKnownExternalBug = 'La funcionalitat %s es veu afectada per un error conegut $strKorean = 'Coreà'; $strLandscape = 'Horitzontal'; -$strLanguageFileNotFound = 'Arxiu d\'idioma "%1$s" no trobat.'; $strLanguage = 'Idioma'; $strLanguageUnknown = 'Idioma desconegut: %1$s.'; $strLatchedPages = 'Pàgines inalterables'; diff --git a/lang/chinese_simplified-gb2312.inc.php b/lang/chinese_simplified-gb2312.inc.php index a332fd0f58..89f06e749b 100644 --- a/lang/chinese_simplified-gb2312.inc.php +++ b/lang/chinese_simplified-gb2312.inc.php @@ -780,7 +780,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/chinese_simplified-utf-8.inc.php b/lang/chinese_simplified-utf-8.inc.php index c4716b3367..229c619464 100644 --- a/lang/chinese_simplified-utf-8.inc.php +++ b/lang/chinese_simplified-utf-8.inc.php @@ -781,7 +781,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/chinese_traditional-big5.inc.php b/lang/chinese_traditional-big5.inc.php index 1b19b39ecb..8576e75b64 100644 --- a/lang/chinese_traditional-big5.inc.php +++ b/lang/chinese_traditional-big5.inc.php @@ -382,7 +382,6 @@ $strKill = 'Kill'; //should expressed in English $strKorean = 'y'; $strLandscape = 'V'; -$strLanguageFileNotFound = '䤣yɮ "%1$s".'; $strLanguageUnknown = 'Wy: %1$s.'; $strLatchedPages = 'W'; $strLaTeX = 'LaTeX'; // use eng diff --git a/lang/chinese_traditional-utf-8.inc.php b/lang/chinese_traditional-utf-8.inc.php index 3666337006..9b83daf27d 100644 --- a/lang/chinese_traditional-utf-8.inc.php +++ b/lang/chinese_traditional-utf-8.inc.php @@ -383,7 +383,6 @@ $strKill = 'Kill'; //should expressed in English $strKorean = '韓語'; $strLandscape = '橫向'; -$strLanguageFileNotFound = '找不到語言檔案 "%1$s".'; $strLanguageUnknown = '不知名語言: %1$s.'; $strLatchedPages = '鎖上頁'; $strLaTeX = 'LaTeX'; // use eng diff --git a/lang/croatian-iso-8859-2.inc.php b/lang/croatian-iso-8859-2.inc.php index 35b44ff0f0..5a9809b151 100644 --- a/lang/croatian-iso-8859-2.inc.php +++ b/lang/croatian-iso-8859-2.inc.php @@ -394,7 +394,6 @@ $strKill = 'Eliminiraj'; $strKorean = 'Korejski'; $strLandscape = 'Poloeno'; -$strLanguageFileNotFound = 'Jezina datoteka "%1$s" nije pronaena.'; $strLanguage = 'Jezik'; $strLanguageUnknown = 'Nepoznati jezik: %1$s.'; $strLatchedPages = 'Vezane stranice'; diff --git a/lang/croatian-utf-8.inc.php b/lang/croatian-utf-8.inc.php index 9241549045..48ad306e35 100644 --- a/lang/croatian-utf-8.inc.php +++ b/lang/croatian-utf-8.inc.php @@ -395,7 +395,6 @@ $strKill = 'Eliminiraj'; $strKorean = 'Korejski'; $strLandscape = 'Položeno'; -$strLanguageFileNotFound = 'Jezična datoteka "%1$s" nije pronađena.'; $strLanguage = 'Jezik'; $strLanguageUnknown = 'Nepoznati jezik: %1$s.'; $strLatchedPages = 'Vezane stranice'; diff --git a/lang/croatian-windows-1250.inc.php b/lang/croatian-windows-1250.inc.php index 592189ad55..bb322699ec 100644 --- a/lang/croatian-windows-1250.inc.php +++ b/lang/croatian-windows-1250.inc.php @@ -394,7 +394,6 @@ $strKill = 'Eliminiraj'; $strKorean = 'Korejski'; $strLandscape = 'Poloeno'; -$strLanguageFileNotFound = 'Jezina datoteka "%1$s" nije pronaena.'; $strLanguage = 'Jezik'; $strLanguageUnknown = 'Nepoznati jezik: %1$s.'; $strLatchedPages = 'Vezane stranice'; diff --git a/lang/czech-iso-8859-2.inc.php b/lang/czech-iso-8859-2.inc.php index ac19393de9..d9032c75ad 100644 --- a/lang/czech-iso-8859-2.inc.php +++ b/lang/czech-iso-8859-2.inc.php @@ -420,7 +420,6 @@ $strKnownExternalBug = 'Funk $strKorean = 'Korejtina'; $strLandscape = 'Na ku'; -$strLanguageFileNotFound = 'Jazykov soubor "%1$s" nebyl nalezen.'; $strLanguage = 'Jazyk'; $strLanguageUnknown = 'Neznm jazyk: %1$s.'; $strLatchedPages = 'Zamench strnek'; diff --git a/lang/czech-utf-8.inc.php b/lang/czech-utf-8.inc.php index 3f567293ee..32069b4a90 100644 --- a/lang/czech-utf-8.inc.php +++ b/lang/czech-utf-8.inc.php @@ -421,7 +421,6 @@ $strKnownExternalBug = 'Funkčnost %s je omezena známou chybou, viz %s.'; $strKorean = 'Korejština'; $strLandscape = 'Na šířku'; -$strLanguageFileNotFound = 'Jazykový soubor "%1$s" nebyl nalezen.'; $strLanguage = 'Jazyk'; $strLanguageUnknown = 'Neznámý jazyk: %1$s.'; $strLatchedPages = 'Zamčených stránek'; diff --git a/lang/czech-windows-1250.inc.php b/lang/czech-windows-1250.inc.php index f6ba57be44..6ba61df707 100644 --- a/lang/czech-windows-1250.inc.php +++ b/lang/czech-windows-1250.inc.php @@ -420,7 +420,6 @@ $strKnownExternalBug = 'Funk $strKorean = 'Korejtina'; $strLandscape = 'Na ku'; -$strLanguageFileNotFound = 'Jazykov soubor "%1$s" nebyl nalezen.'; $strLanguage = 'Jazyk'; $strLanguageUnknown = 'Neznm jazyk: %1$s.'; $strLatchedPages = 'Zamench strnek'; diff --git a/lang/danish-iso-8859-1.inc.php b/lang/danish-iso-8859-1.inc.php index cc61486d41..5ca3f5c78f 100644 --- a/lang/danish-iso-8859-1.inc.php +++ b/lang/danish-iso-8859-1.inc.php @@ -420,7 +420,6 @@ $strKnownExternalBug = 'Funktionaliteten af %s er p $strKorean = 'Koreansk'; $strLandscape = 'Liggende'; -$strLanguageFileNotFound = 'Sprogfil \"%1$s\" ikke fundet.'; $strLanguage = 'Sprog'; $strLanguageUnknown = 'Ukendt sprog: %1$s.'; $strLatchedPages = 'Eksklusivt lste (latched) sider'; diff --git a/lang/danish-utf-8.inc.php b/lang/danish-utf-8.inc.php index e68881ec21..d3d030a5a6 100644 --- a/lang/danish-utf-8.inc.php +++ b/lang/danish-utf-8.inc.php @@ -421,7 +421,6 @@ $strKnownExternalBug = 'Funktionaliteten af %s er påvirket af en kendt fejl, se $strKorean = 'Koreansk'; $strLandscape = 'Liggende'; -$strLanguageFileNotFound = 'Sprogfil \"%1$s\" ikke fundet.'; $strLanguage = 'Sprog'; $strLanguageUnknown = 'Ukendt sprog: %1$s.'; $strLatchedPages = 'Eksklusivt låste (latched) sider'; diff --git a/lang/dutch-iso-8859-1.inc.php b/lang/dutch-iso-8859-1.inc.php index ab05e92154..f7e3c06948 100644 --- a/lang/dutch-iso-8859-1.inc.php +++ b/lang/dutch-iso-8859-1.inc.php @@ -776,7 +776,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/dutch-iso-8859-15.inc.php b/lang/dutch-iso-8859-15.inc.php index feb322e57c..a2f471fde8 100644 --- a/lang/dutch-iso-8859-15.inc.php +++ b/lang/dutch-iso-8859-15.inc.php @@ -776,7 +776,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php index 1a263eb38a..07df55b003 100644 --- a/lang/dutch-utf-8.inc.php +++ b/lang/dutch-utf-8.inc.php @@ -777,7 +777,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/english-iso-8859-1.inc.php b/lang/english-iso-8859-1.inc.php index 9b5849a702..25fb7fdbc1 100644 --- a/lang/english-iso-8859-1.inc.php +++ b/lang/english-iso-8859-1.inc.php @@ -420,7 +420,6 @@ $strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s' $strKorean = 'Korean'; $strLandscape = 'Landscape'; -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; $strLanguage = 'Language'; $strLanguageUnknown = 'Unknown language: %1$s.'; $strLatchedPages = 'Latched pages'; diff --git a/lang/english-iso-8859-15.inc.php b/lang/english-iso-8859-15.inc.php index fd2baae050..cd27c8edea 100644 --- a/lang/english-iso-8859-15.inc.php +++ b/lang/english-iso-8859-15.inc.php @@ -420,7 +420,6 @@ $strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s' $strKorean = 'Korean'; $strLandscape = 'Landscape'; -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; $strLanguage = 'Language'; $strLanguageUnknown = 'Unknown language: %1$s.'; $strLatchedPages = 'Latched pages'; diff --git a/lang/english-utf-8.inc.php b/lang/english-utf-8.inc.php index 12481b769f..20a1cd40c2 100644 --- a/lang/english-utf-8.inc.php +++ b/lang/english-utf-8.inc.php @@ -421,7 +421,6 @@ $strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s' $strKorean = 'Korean'; $strLandscape = 'Landscape'; -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; $strLanguage = 'Language'; $strLanguageUnknown = 'Unknown language: %1$s.'; $strLatchedPages = 'Latched pages'; diff --git a/lang/estonian-iso-8859-1.inc.php b/lang/estonian-iso-8859-1.inc.php index 9f0fb10ff4..4ae86ef1cb 100644 --- a/lang/estonian-iso-8859-1.inc.php +++ b/lang/estonian-iso-8859-1.inc.php @@ -416,7 +416,6 @@ $strKnownExternalBug = 'See %s funktionaalsus on m $strKorean = 'Korea'; $strLandscape = 'Laipilt'; -$strLanguageFileNotFound = 'Ei leia keele fail "%1$s" .'; $strLanguage = 'Keel'; $strLanguageUnknown = 'Tundmatu keel: %1$s.'; $strLatchedPages = 'Lukustatud lehed'; diff --git a/lang/estonian-utf-8.inc.php b/lang/estonian-utf-8.inc.php index e4703e65af..16b9340d1a 100644 --- a/lang/estonian-utf-8.inc.php +++ b/lang/estonian-utf-8.inc.php @@ -417,7 +417,6 @@ $strKnownExternalBug = 'See %s funktionaalsus on mõjutatud tuntud viga, vaata % $strKorean = 'Korea'; $strLandscape = 'Laipilt'; -$strLanguageFileNotFound = 'Ei leia keele fail "%1$s" .'; $strLanguage = 'Keel'; $strLanguageUnknown = 'Tundmatu keel: %1$s.'; $strLatchedPages = 'Lukustatud lehed'; diff --git a/lang/finnish-iso-8859-1.inc.php b/lang/finnish-iso-8859-1.inc.php index b33e52b214..bc338c0cec 100644 --- a/lang/finnish-iso-8859-1.inc.php +++ b/lang/finnish-iso-8859-1.inc.php @@ -423,7 +423,6 @@ $strKnownExternalBug = 'Toimintoon %s vaikuttaa tunnettu vika, katso %s'; $strKorean = 'Korealainen'; $strLandscape = 'Landscape'; -$strLanguageFileNotFound = 'Kielitiedostoa "%1$s" ei lydy.'; $strLanguage = 'Kieli'; $strLanguageUnknown = 'Tuntematon kieli: %1$s.'; $strLatchedPages = "Lukitut sivut"; diff --git a/lang/finnish-iso-8859-15.inc.php b/lang/finnish-iso-8859-15.inc.php index 31fb85ae1c..fd259dd93c 100644 --- a/lang/finnish-iso-8859-15.inc.php +++ b/lang/finnish-iso-8859-15.inc.php @@ -423,7 +423,6 @@ $strKnownExternalBug = 'Toimintoon %s vaikuttaa tunnettu vika, katso %s'; $strKorean = 'Korealainen'; $strLandscape = 'Landscape'; -$strLanguageFileNotFound = 'Kielitiedostoa "%1$s" ei lydy.'; $strLanguage = 'Kieli'; $strLanguageUnknown = 'Tuntematon kieli: %1$s.'; $strLatchedPages = "Lukitut sivut"; diff --git a/lang/finnish-utf-8.inc.php b/lang/finnish-utf-8.inc.php index 9c82d9a15b..302aca54aa 100644 --- a/lang/finnish-utf-8.inc.php +++ b/lang/finnish-utf-8.inc.php @@ -424,7 +424,6 @@ $strKnownExternalBug = 'Toimintoon %s vaikuttaa tunnettu vika, katso %s'; $strKorean = 'Korealainen'; $strLandscape = 'Landscape'; -$strLanguageFileNotFound = 'Kielitiedostoa "%1$s" ei löydy.'; $strLanguage = 'Kieli'; $strLanguageUnknown = 'Tuntematon kieli: %1$s.'; $strLatchedPages = "Lukitut sivut"; diff --git a/lang/french-iso-8859-1.inc.php b/lang/french-iso-8859-1.inc.php index 88e52c0af6..efc411645d 100644 --- a/lang/french-iso-8859-1.inc.php +++ b/lang/french-iso-8859-1.inc.php @@ -417,7 +417,6 @@ $strKnownExternalBug = 'La fonctionnalit $strKorean = 'coren'; $strLandscape = 'Paysage'; -$strLanguageFileNotFound = 'Fichier de langue "%1$s" inexistant.'; $strLanguage = 'Langue'; $strLanguageUnknown = 'Langue inconnue: %1$s.'; $strLatchedPages = 'Pages verrouilles'; diff --git a/lang/french-iso-8859-15.inc.php b/lang/french-iso-8859-15.inc.php index a06144fd17..19799e5edb 100644 --- a/lang/french-iso-8859-15.inc.php +++ b/lang/french-iso-8859-15.inc.php @@ -417,7 +417,6 @@ $strKnownExternalBug = 'La fonctionnalit $strKorean = 'coren'; $strLandscape = 'Paysage'; -$strLanguageFileNotFound = 'Fichier de langue "%1$s" inexistant.'; $strLanguage = 'Langue'; $strLanguageUnknown = 'Langue inconnue: %1$s.'; $strLatchedPages = 'Pages verrouilles'; diff --git a/lang/french-utf-8.inc.php b/lang/french-utf-8.inc.php index b8562504bc..9a042b5071 100644 --- a/lang/french-utf-8.inc.php +++ b/lang/french-utf-8.inc.php @@ -418,7 +418,6 @@ $strKnownExternalBug = 'La fonctionnalité %s est affectée par une anomalie con $strKorean = 'coréen'; $strLandscape = 'Paysage'; -$strLanguageFileNotFound = 'Fichier de langue "%1$s" inexistant.'; $strLanguage = 'Langue'; $strLanguageUnknown = 'Langue inconnue: %1$s.'; $strLatchedPages = 'Pages verrouillées'; diff --git a/lang/galician-iso-8859-1.inc.php b/lang/galician-iso-8859-1.inc.php index 2b7d06cf23..b7fbffb04f 100644 --- a/lang/galician-iso-8859-1.inc.php +++ b/lang/galician-iso-8859-1.inc.php @@ -393,7 +393,6 @@ $strKill = 'Matar (kill)'; $strKorean = 'Coreano'; $strLandscape = 'Horizontal'; -$strLanguageFileNotFound = 'Non se atopou o ficheiro da lingua "%1$s".'; $strLanguageUnknown = 'Linguaxe descoecida: %1$s.'; $strLatchedPages = 'Pxinas fechadas'; $strLatexCaption = 'Ttulo da tabela'; diff --git a/lang/galician-utf-8.inc.php b/lang/galician-utf-8.inc.php index 484ad1bfa3..e09183f6bf 100644 --- a/lang/galician-utf-8.inc.php +++ b/lang/galician-utf-8.inc.php @@ -394,7 +394,6 @@ $strKill = 'Matar (kill)'; $strKorean = 'Coreano'; $strLandscape = 'Horizontal'; -$strLanguageFileNotFound = 'Non se atopou o ficheiro da lingua "%1$s".'; $strLanguageUnknown = 'Linguaxe descoñecida: %1$s.'; $strLatchedPages = 'Páxinas fechadas'; $strLatexCaption = 'Título da tabela'; diff --git a/lang/georgian-utf-8.inc.php b/lang/georgian-utf-8.inc.php index 08ab2d668c..40bfa96a4b 100644 --- a/lang/georgian-utf-8.inc.php +++ b/lang/georgian-utf-8.inc.php @@ -587,7 +587,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/german-iso-8859-1.inc.php b/lang/german-iso-8859-1.inc.php index d4090e8cbe..df1e03c8db 100644 --- a/lang/german-iso-8859-1.inc.php +++ b/lang/german-iso-8859-1.inc.php @@ -400,7 +400,6 @@ $strKorean = 'Koreanisch'; $strLandscape = 'Querformat'; $strLanguage = 'Sprache'; -$strLanguageFileNotFound = 'Sprachdatei "%1$s" nicht gefunden.'; $strLanguageUnknown = 'Unbekannte Sprache: "%1$s".'; $strLatchedPages = 'Belegte Seiten'; $strLatexCaption = 'Tabellenbeschriftung'; diff --git a/lang/german-iso-8859-15.inc.php b/lang/german-iso-8859-15.inc.php index 2b7d8ccd62..405c07aa6e 100644 --- a/lang/german-iso-8859-15.inc.php +++ b/lang/german-iso-8859-15.inc.php @@ -400,7 +400,6 @@ $strKorean = 'Koreanisch'; $strLandscape = 'Querformat'; $strLanguage = 'Sprache'; -$strLanguageFileNotFound = 'Sprachdatei "%1$s" nicht gefunden.'; $strLanguageUnknown = 'Unbekannte Sprache: "%1$s".'; $strLatchedPages = 'Belegte Seiten'; $strLatexCaption = 'Tabellenbeschriftung'; diff --git a/lang/german-utf-8.inc.php b/lang/german-utf-8.inc.php index 05124cb137..4da322bb9c 100644 --- a/lang/german-utf-8.inc.php +++ b/lang/german-utf-8.inc.php @@ -401,7 +401,6 @@ $strKorean = 'Koreanisch'; $strLandscape = 'Querformat'; $strLanguage = 'Sprache'; -$strLanguageFileNotFound = 'Sprachdatei "%1$s" nicht gefunden.'; $strLanguageUnknown = 'Unbekannte Sprache: "%1$s".'; $strLatchedPages = 'Belegte Seiten'; $strLatexCaption = 'Tabellenbeschriftung'; diff --git a/lang/greek-iso-8859-7.inc.php b/lang/greek-iso-8859-7.inc.php index 5d4c8d6ac3..9a0f1ff43d 100644 --- a/lang/greek-iso-8859-7.inc.php +++ b/lang/greek-iso-8859-7.inc.php @@ -736,7 +736,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php index c761e30aab..1294d57c9f 100644 --- a/lang/greek-utf-8.inc.php +++ b/lang/greek-utf-8.inc.php @@ -737,7 +737,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/hebrew-iso-8859-8-i.inc.php b/lang/hebrew-iso-8859-8-i.inc.php index 4c955cf193..b7317291e9 100644 --- a/lang/hebrew-iso-8859-8-i.inc.php +++ b/lang/hebrew-iso-8859-8-i.inc.php @@ -700,7 +700,6 @@ $strKill = 'Kill'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/hebrew-utf-8.inc.php b/lang/hebrew-utf-8.inc.php index 41b301dcc7..63b32f330c 100644 --- a/lang/hebrew-utf-8.inc.php +++ b/lang/hebrew-utf-8.inc.php @@ -701,7 +701,6 @@ $strKill = 'Kill'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/hindi-utf-8.inc.php b/lang/hindi-utf-8.inc.php index 30f8c0f3dc..b2ec1d3404 100644 --- a/lang/hindi-utf-8.inc.php +++ b/lang/hindi-utf-8.inc.php @@ -519,7 +519,6 @@ $strKeyname = 'Keyname'; //to translate $strKill = 'Kill'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/hungarian-iso-8859-2.inc.php b/lang/hungarian-iso-8859-2.inc.php index 12e3721a52..5bce9bc044 100644 --- a/lang/hungarian-iso-8859-2.inc.php +++ b/lang/hungarian-iso-8859-2.inc.php @@ -842,7 +842,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate diff --git a/lang/hungarian-utf-8.inc.php b/lang/hungarian-utf-8.inc.php index c70918f01b..9a56f01e85 100644 --- a/lang/hungarian-utf-8.inc.php +++ b/lang/hungarian-utf-8.inc.php @@ -843,7 +843,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate diff --git a/lang/indonesian-iso-8859-1.inc.php b/lang/indonesian-iso-8859-1.inc.php index 29bb577a11..62380ec484 100644 --- a/lang/indonesian-iso-8859-1.inc.php +++ b/lang/indonesian-iso-8859-1.inc.php @@ -802,7 +802,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/indonesian-utf-8.inc.php b/lang/indonesian-utf-8.inc.php index 4d24bdc5d9..d191a16fb5 100644 --- a/lang/indonesian-utf-8.inc.php +++ b/lang/indonesian-utf-8.inc.php @@ -803,7 +803,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/italian-iso-8859-1.inc.php b/lang/italian-iso-8859-1.inc.php index 4d54c8ea7f..73d3ef5814 100644 --- a/lang/italian-iso-8859-1.inc.php +++ b/lang/italian-iso-8859-1.inc.php @@ -395,7 +395,6 @@ $strKill = 'Rimuovi'; $strKorean = 'Coreano'; $strLandscape = 'Orizzontale'; -$strLanguageFileNotFound = 'File di lingua "%1$s" non trovato.'; $strLanguage = 'Lingua'; $strLanguageUnknown = 'Lingua non conosciuta : %1$s.'; $strLatchedPages = 'Latched pages'; diff --git a/lang/italian-iso-8859-15.inc.php b/lang/italian-iso-8859-15.inc.php index 29a8782168..c973f24347 100644 --- a/lang/italian-iso-8859-15.inc.php +++ b/lang/italian-iso-8859-15.inc.php @@ -395,7 +395,6 @@ $strKill = 'Rimuovi'; $strKorean = 'Coreano'; $strLandscape = 'Orizzontale'; -$strLanguageFileNotFound = 'File di lingua "%1$s" non trovato.'; $strLanguage = 'Lingua'; $strLanguageUnknown = 'Lingua non conosciuta : %1$s.'; $strLatchedPages = 'Latched pages'; diff --git a/lang/italian-utf-8.inc.php b/lang/italian-utf-8.inc.php index 0bbdd69834..d3c155e92e 100644 --- a/lang/italian-utf-8.inc.php +++ b/lang/italian-utf-8.inc.php @@ -396,7 +396,6 @@ $strKill = 'Rimuovi'; $strKorean = 'Coreano'; $strLandscape = 'Orizzontale'; -$strLanguageFileNotFound = 'File di lingua "%1$s" non trovato.'; $strLanguage = 'Lingua'; $strLanguageUnknown = 'Lingua non conosciuta : %1$s.'; $strLatchedPages = 'Latched pages'; diff --git a/lang/japanese-euc.inc.php b/lang/japanese-euc.inc.php index bf76a4b37b..508a2998f0 100644 --- a/lang/japanese-euc.inc.php +++ b/lang/japanese-euc.inc.php @@ -424,7 +424,6 @@ $strKnownExternalBug = '%s $strKorean = 'ڹ'; $strLandscape = ''; -$strLanguageFileNotFound = 'ե%1$sפĤޤ'; $strLanguageUnknown = 'ե뤬ϿƤޤ: %1$s'; $strLanguage = ''; $strLatchedPages = 'åƤڡ'; diff --git a/lang/japanese-sjis.inc.php b/lang/japanese-sjis.inc.php index 39ee720e0f..3f67ccc8a1 100644 --- a/lang/japanese-sjis.inc.php +++ b/lang/japanese-sjis.inc.php @@ -424,7 +424,6 @@ $strKnownExternalBug = '%s $strKorean = '؍'; $strLandscape = ''; -$strLanguageFileNotFound = 't@Cu%1$sv‚܂'; $strLanguageUnknown = 't@Co^Ă܂: %1$s'; $strLanguage = ''; $strLatchedPages = 'b`Ăy[W'; diff --git a/lang/japanese-utf-8.inc.php b/lang/japanese-utf-8.inc.php index cf4bdff0bd..811e96928e 100644 --- a/lang/japanese-utf-8.inc.php +++ b/lang/japanese-utf-8.inc.php @@ -425,7 +425,6 @@ $strKorean = '韓国語'; $strLandscape = '横向き'; $strLanguage = '言語'; -$strLanguageFileNotFound = '言語ファイル「%1$s」が見つかりません'; $strLanguageUnknown = '言語ファイルが登録されていません: %1$s'; $strLatchedPages = 'ラッチされているページ'; $strLatexCaption = 'テーブルのキャプション'; diff --git a/lang/korean-euc-kr.inc.php b/lang/korean-euc-kr.inc.php index af133b0658..b242b505d8 100644 --- a/lang/korean-euc-kr.inc.php +++ b/lang/korean-euc-kr.inc.php @@ -648,7 +648,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/korean-utf-8.inc.php b/lang/korean-utf-8.inc.php index 2006b1f009..c565c7dbfb 100644 --- a/lang/korean-utf-8.inc.php +++ b/lang/korean-utf-8.inc.php @@ -649,7 +649,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/latvian-utf-8.inc.php b/lang/latvian-utf-8.inc.php index 2329ea5128..8a8351100a 100644 --- a/lang/latvian-utf-8.inc.php +++ b/lang/latvian-utf-8.inc.php @@ -776,7 +776,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/latvian-windows-1257.inc.php b/lang/latvian-windows-1257.inc.php index ec9bcc385d..151f739b53 100644 --- a/lang/latvian-windows-1257.inc.php +++ b/lang/latvian-windows-1257.inc.php @@ -775,7 +775,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/lithuanian-utf-8.inc.php b/lang/lithuanian-utf-8.inc.php index 0d54b720e5..f09ea71e3f 100644 --- a/lang/lithuanian-utf-8.inc.php +++ b/lang/lithuanian-utf-8.inc.php @@ -791,7 +791,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/lithuanian-windows-1257.inc.php b/lang/lithuanian-windows-1257.inc.php index 5c1bf825bc..f4bad3193b 100644 --- a/lang/lithuanian-windows-1257.inc.php +++ b/lang/lithuanian-windows-1257.inc.php @@ -790,7 +790,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/malay-iso-8859-1.inc.php b/lang/malay-iso-8859-1.inc.php index 6f250b32d5..53cf63f67c 100644 --- a/lang/malay-iso-8859-1.inc.php +++ b/lang/malay-iso-8859-1.inc.php @@ -640,7 +640,6 @@ $strJustDelete = 'Just delete the users from the privilege tables.'; //to transl $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/malay-utf-8.inc.php b/lang/malay-utf-8.inc.php index b4aaed6a38..39e873982f 100644 --- a/lang/malay-utf-8.inc.php +++ b/lang/malay-utf-8.inc.php @@ -641,7 +641,6 @@ $strJustDelete = 'Just delete the users from the privilege tables.'; //to transl $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/mongolian-utf-8.inc.php b/lang/mongolian-utf-8.inc.php index d392619d5d..a5bee29c39 100644 --- a/lang/mongolian-utf-8.inc.php +++ b/lang/mongolian-utf-8.inc.php @@ -808,7 +808,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/norwegian-iso-8859-1.inc.php b/lang/norwegian-iso-8859-1.inc.php index ebe5a77d46..c00245fbc9 100644 --- a/lang/norwegian-iso-8859-1.inc.php +++ b/lang/norwegian-iso-8859-1.inc.php @@ -393,7 +393,6 @@ $strKill = 'Avslutt'; $strKorean = 'koreansk'; $strLandscape = 'Landskapsformat'; -$strLanguageFileNotFound = 'Sprkfil "%1$s" ble ikke funnet.'; $strLanguage = 'Sprk'; $strLanguageUnknown = 'Ukjent sprk: %1$s.'; $strLatchedPages = 'Tilknyttede sider'; diff --git a/lang/norwegian-utf-8.inc.php b/lang/norwegian-utf-8.inc.php index 95c3a52270..04b42f48bd 100644 --- a/lang/norwegian-utf-8.inc.php +++ b/lang/norwegian-utf-8.inc.php @@ -394,7 +394,6 @@ $strKill = 'Avslutt'; $strKorean = 'koreansk'; $strLandscape = 'Landskapsformat'; -$strLanguageFileNotFound = 'Språkfil "%1$s" ble ikke funnet.'; $strLanguage = 'Språk'; $strLanguageUnknown = 'Ukjent språk: %1$s.'; $strLatchedPages = 'Tilknyttede sider'; diff --git a/lang/persian-utf-8.inc.php b/lang/persian-utf-8.inc.php index 570c2b391d..7f02a35497 100644 --- a/lang/persian-utf-8.inc.php +++ b/lang/persian-utf-8.inc.php @@ -571,7 +571,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption'; //to translate diff --git a/lang/persian-windows-1256.inc.php b/lang/persian-windows-1256.inc.php index b4303bebd9..1b95991ca4 100644 --- a/lang/persian-windows-1256.inc.php +++ b/lang/persian-windows-1256.inc.php @@ -570,7 +570,6 @@ $strKeyCache = 'Key cache'; //to translate $strKorean = 'Korean'; //to translate $strLandscape = 'Landscape'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption'; //to translate diff --git a/lang/polish-iso-8859-2.inc.php b/lang/polish-iso-8859-2.inc.php index e86142a9be..92e0b2957e 100644 --- a/lang/polish-iso-8859-2.inc.php +++ b/lang/polish-iso-8859-2.inc.php @@ -389,7 +389,6 @@ $strKill = 'Unicestwij'; $strKorean = 'Koreaski'; $strLandscape = 'Orientacja pozioma'; -$strLanguageFileNotFound = 'Nie znaleziono pliku jzykowego "%1$s".'; $strLanguage = 'Jzyk'; $strLanguageUnknown = 'Nieznany jzyk: %1$s.'; $strLatchedPages = 'Stron zatrzanitych'; diff --git a/lang/polish-utf-8.inc.php b/lang/polish-utf-8.inc.php index 29962b6cd5..7cbbc90e58 100644 --- a/lang/polish-utf-8.inc.php +++ b/lang/polish-utf-8.inc.php @@ -390,7 +390,6 @@ $strKill = 'Unicestwij'; $strKorean = 'Koreański'; $strLandscape = 'Orientacja pozioma'; -$strLanguageFileNotFound = 'Nie znaleziono pliku językowego "%1$s".'; $strLanguage = 'Język'; $strLanguageUnknown = 'Nieznany język: %1$s.'; $strLatchedPages = 'Stron zatrzaśniętych'; diff --git a/lang/polish-windows-1250.inc.php b/lang/polish-windows-1250.inc.php index 59f44e3315..03a87a8891 100644 --- a/lang/polish-windows-1250.inc.php +++ b/lang/polish-windows-1250.inc.php @@ -389,7 +389,6 @@ $strKill = 'Unicestwij'; $strKorean = 'Koreaski'; $strLandscape = 'Orientacja pozioma'; -$strLanguageFileNotFound = 'Nie znaleziono pliku jzykowego "%1$s".'; $strLanguage = 'Jzyk'; $strLanguageUnknown = 'Nieznany jzyk: %1$s.'; $strLatchedPages = 'Stron zatrzanitych'; diff --git a/lang/portuguese-iso-8859-1.inc.php b/lang/portuguese-iso-8859-1.inc.php index 4b6675d58d..142f41bffa 100644 --- a/lang/portuguese-iso-8859-1.inc.php +++ b/lang/portuguese-iso-8859-1.inc.php @@ -736,7 +736,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexLabel = 'Label key';//to translate diff --git a/lang/portuguese-iso-8859-15.inc.php b/lang/portuguese-iso-8859-15.inc.php index ed13a0daf0..2bda735c10 100644 --- a/lang/portuguese-iso-8859-15.inc.php +++ b/lang/portuguese-iso-8859-15.inc.php @@ -736,7 +736,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexLabel = 'Label key';//to translate diff --git a/lang/portuguese-utf-8.inc.php b/lang/portuguese-utf-8.inc.php index 18ca66b3f9..6a1d687d07 100644 --- a/lang/portuguese-utf-8.inc.php +++ b/lang/portuguese-utf-8.inc.php @@ -737,7 +737,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexLabel = 'Label key';//to translate diff --git a/lang/romanian-iso-8859-1.inc.php b/lang/romanian-iso-8859-1.inc.php index 859521d4a8..1eb42732f7 100644 --- a/lang/romanian-iso-8859-1.inc.php +++ b/lang/romanian-iso-8859-1.inc.php @@ -790,7 +790,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/romanian-utf-8.inc.php b/lang/romanian-utf-8.inc.php index dfa46a1e76..a6cec617f9 100644 --- a/lang/romanian-utf-8.inc.php +++ b/lang/romanian-utf-8.inc.php @@ -791,7 +791,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate diff --git a/lang/russian-cp-866.inc.php b/lang/russian-cp-866.inc.php index 18711785e6..c7918ba25c 100644 --- a/lang/russian-cp-866.inc.php +++ b/lang/russian-cp-866.inc.php @@ -363,7 +363,6 @@ $strKorean = ' $strLandscape = ''; $strLanguage = ''; -$strLanguageFileNotFound = '몮 䠩: "%1$s" .'; $strLanguageUnknown = ' : %1$s.'; $strLaTeX = 'LaTeX'; $strLatexCaption = ' ⠡'; diff --git a/lang/russian-koi8-r.inc.php b/lang/russian-koi8-r.inc.php index 3554a8c6d7..57aeafe775 100644 --- a/lang/russian-koi8-r.inc.php +++ b/lang/russian-koi8-r.inc.php @@ -363,7 +363,6 @@ $strKorean = ' $strLandscape = ''; $strLanguage = ''; -$strLanguageFileNotFound = ' : "%1$s" .'; $strLanguageUnknown = ' : %1$s.'; $strLaTeX = 'LaTeX'; $strLatexCaption = ' '; diff --git a/lang/russian-utf-8.inc.php b/lang/russian-utf-8.inc.php index fddae06c11..924c00003b 100644 --- a/lang/russian-utf-8.inc.php +++ b/lang/russian-utf-8.inc.php @@ -364,7 +364,6 @@ $strKorean = 'Корейский'; $strLandscape = 'Ландшафт'; $strLanguage = 'Язык'; -$strLanguageFileNotFound = 'Языковой файл: "%1$s" не найден.'; $strLanguageUnknown = 'Неизвестный язык: %1$s.'; $strLaTeX = 'LaTeX'; $strLatexCaption = 'Заголовок таблицы'; diff --git a/lang/russian-windows-1251.inc.php b/lang/russian-windows-1251.inc.php index 24b8d1e7b5..2e7abefdf7 100644 --- a/lang/russian-windows-1251.inc.php +++ b/lang/russian-windows-1251.inc.php @@ -363,7 +363,6 @@ $strKorean = ' $strLandscape = ''; $strLanguage = ''; -$strLanguageFileNotFound = ' : "%1$s" .'; $strLanguageUnknown = ' : %1$s.'; $strLaTeX = 'LaTeX'; $strLatexCaption = ' '; diff --git a/lang/serbian_cyrillic-utf-8.inc.php b/lang/serbian_cyrillic-utf-8.inc.php index 13b3ae7d75..01e80604e3 100644 --- a/lang/serbian_cyrillic-utf-8.inc.php +++ b/lang/serbian_cyrillic-utf-8.inc.php @@ -809,7 +809,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/serbian_cyrillic-windows-1251.inc.php b/lang/serbian_cyrillic-windows-1251.inc.php index b11648859d..e4febc97ef 100644 --- a/lang/serbian_cyrillic-windows-1251.inc.php +++ b/lang/serbian_cyrillic-windows-1251.inc.php @@ -808,7 +808,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/serbian_latin-utf-8.inc.php b/lang/serbian_latin-utf-8.inc.php index 441a796083..576334eb82 100644 --- a/lang/serbian_latin-utf-8.inc.php +++ b/lang/serbian_latin-utf-8.inc.php @@ -809,7 +809,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/serbian_latin-windows-1250.inc.php b/lang/serbian_latin-windows-1250.inc.php index 4e4d54c798..b9598d7df0 100644 --- a/lang/serbian_latin-windows-1250.inc.php +++ b/lang/serbian_latin-windows-1250.inc.php @@ -808,7 +808,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLDI = 'CSV using LOAD DATA'; //to translate $strLDIImportOptions = 'Options for CSV import using LOAD DATA'; //to translate diff --git a/lang/slovak-iso-8859-2.inc.php b/lang/slovak-iso-8859-2.inc.php index 760afaa67b..25e748c2bb 100644 --- a/lang/slovak-iso-8859-2.inc.php +++ b/lang/slovak-iso-8859-2.inc.php @@ -392,7 +392,6 @@ $strKill = 'Zabi $strKorean = 'Krejina'; $strLandscape = 'Na rku'; -$strLanguageFileNotFound = 'Jazykov sbor "%1$s" nebol njden.'; $strLanguageUnknown = 'Neznmy jazyk: %1$s.'; $strLatchedPages = 'Uzavretch strnok'; $strLatexCaption = 'Nadpis tabuky'; diff --git a/lang/slovak-utf-8.inc.php b/lang/slovak-utf-8.inc.php index cdd3570b71..83b597eaf2 100644 --- a/lang/slovak-utf-8.inc.php +++ b/lang/slovak-utf-8.inc.php @@ -393,7 +393,6 @@ $strKill = 'Zabiť'; $strKorean = 'Kórejčina'; $strLandscape = 'Na šírku'; -$strLanguageFileNotFound = 'Jazykový súbor "%1$s" nebol nájdený.'; $strLanguageUnknown = 'Neznámy jazyk: %1$s.'; $strLatchedPages = 'Uzavretých stránok'; $strLatexCaption = 'Nadpis tabuľky'; diff --git a/lang/slovak-windows-1250.inc.php b/lang/slovak-windows-1250.inc.php index 2d47e78b5d..1a9d088e2f 100644 --- a/lang/slovak-windows-1250.inc.php +++ b/lang/slovak-windows-1250.inc.php @@ -392,7 +392,6 @@ $strKill = 'Zabi $strKorean = 'Krejina'; $strLandscape = 'Na rku'; -$strLanguageFileNotFound = 'Jazykov sbor "%1$s" nebol njden.'; $strLanguageUnknown = 'Neznmy jazyk: %1$s.'; $strLatchedPages = 'Uzavretch strnok'; $strLatexCaption = 'Nadpis tabuky'; diff --git a/lang/slovenian-iso-8859-2.inc.php b/lang/slovenian-iso-8859-2.inc.php index d60261951d..ba3e221cf3 100644 --- a/lang/slovenian-iso-8859-2.inc.php +++ b/lang/slovenian-iso-8859-2.inc.php @@ -751,7 +751,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatvian = 'Latvian'; //to translate diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php index 6ff299fa0b..6080c88660 100644 --- a/lang/slovenian-utf-8.inc.php +++ b/lang/slovenian-utf-8.inc.php @@ -752,7 +752,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatvian = 'Latvian'; //to translate diff --git a/lang/slovenian-windows-1250.inc.php b/lang/slovenian-windows-1250.inc.php index 316a13dcaf..90ccabaae8 100644 --- a/lang/slovenian-windows-1250.inc.php +++ b/lang/slovenian-windows-1250.inc.php @@ -751,7 +751,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatvian = 'Latvian'; //to translate diff --git a/lang/spanish-iso-8859-1.inc.php b/lang/spanish-iso-8859-1.inc.php index 45b10e5fbd..6aead8c127 100644 --- a/lang/spanish-iso-8859-1.inc.php +++ b/lang/spanish-iso-8859-1.inc.php @@ -416,7 +416,6 @@ $strKnownExternalBug = 'La funcionalidad %s est $strKorean = 'Coreano'; $strLandscape = 'Orientacin horizontal'; -$strLanguageFileNotFound = 'No se hall el archivo de idioma "%1$s".'; $strLanguage = 'Idioma'; $strLanguageUnknown = 'Idioma desconocido: %1$s.'; $strLatchedPages = 'Pginas vinculadas'; diff --git a/lang/spanish-iso-8859-15.inc.php b/lang/spanish-iso-8859-15.inc.php index 8a081610df..f0256d913c 100644 --- a/lang/spanish-iso-8859-15.inc.php +++ b/lang/spanish-iso-8859-15.inc.php @@ -416,7 +416,6 @@ $strKnownExternalBug = 'La funcionalidad %s est $strKorean = 'Coreano'; $strLandscape = 'Orientacin horizontal'; -$strLanguageFileNotFound = 'No se hall el archivo de idioma "%1$s".'; $strLanguage = 'Idioma'; $strLanguageUnknown = 'Idioma desconocido: %1$s.'; $strLatchedPages = 'Pginas vinculadas'; diff --git a/lang/spanish-utf-8.inc.php b/lang/spanish-utf-8.inc.php index d22629b31f..e66e2362da 100644 --- a/lang/spanish-utf-8.inc.php +++ b/lang/spanish-utf-8.inc.php @@ -417,7 +417,6 @@ $strKnownExternalBug = 'La funcionalidad %s está afectada por un fallo conocido $strKorean = 'Coreano'; $strLandscape = 'Orientación horizontal'; -$strLanguageFileNotFound = 'No se halló el archivo de idioma "%1$s".'; $strLanguage = 'Idioma'; $strLanguageUnknown = 'Idioma desconocido: %1$s.'; $strLatchedPages = 'Páginas vinculadas'; diff --git a/lang/swedish-iso-8859-1.inc.php b/lang/swedish-iso-8859-1.inc.php index 153bea4f2c..233458d844 100644 --- a/lang/swedish-iso-8859-1.inc.php +++ b/lang/swedish-iso-8859-1.inc.php @@ -419,7 +419,6 @@ $strKnownExternalBug = 'Funktionaliteten f $strKorean = 'Koreansk'; $strLandscape = 'Liggande'; -$strLanguageFileNotFound = 'Sprkfil "%1$s" hittades inte.'; $strLanguage = 'Sprk'; $strLanguageUnknown = 'Oknt sprk: %1$s.'; $strLatchedPages = 'Lsta sidor'; diff --git a/lang/swedish-utf-8.inc.php b/lang/swedish-utf-8.inc.php index 32a12debeb..20efd9120b 100644 --- a/lang/swedish-utf-8.inc.php +++ b/lang/swedish-utf-8.inc.php @@ -420,7 +420,6 @@ $strKnownExternalBug = 'Funktionaliteten för %s påverkas av en känd bugg, se $strKorean = 'Koreansk'; $strLandscape = 'Liggande'; -$strLanguageFileNotFound = 'Språkfil "%1$s" hittades inte.'; $strLanguage = 'Språk'; $strLanguageUnknown = 'Okänt språk: %1$s.'; $strLatchedPages = 'Låsta sidor'; diff --git a/lang/tatarish-iso-8859-9.inc.php b/lang/tatarish-iso-8859-9.inc.php index 4ec4e66d3a..5ee2478b99 100644 --- a/lang/tatarish-iso-8859-9.inc.php +++ b/lang/tatarish-iso-8859-9.inc.php @@ -370,7 +370,6 @@ $strKill = ' $strKorean = 'Korey'; $strLandscape = 'Yatqrp'; -$strLanguageFileNotFound = '"%1$s" dign tellter bireme tablmad.'; $strLanguageUnknown = 'Belgesez tel: %1$s.'; $strLatchedPages = 'Berketelgn bit'; $strLatexCaption = 'Tm bal'; diff --git a/lang/tatarish-utf-8.inc.php b/lang/tatarish-utf-8.inc.php index 32bfb2a6bd..17e0d23fc1 100644 --- a/lang/tatarish-utf-8.inc.php +++ b/lang/tatarish-utf-8.inc.php @@ -371,7 +371,6 @@ $strKill = 'Üter'; $strKorean = 'Koreyçä'; $strLandscape = 'Yatqırıp'; -$strLanguageFileNotFound = '"%1$s" digän telläşterü bireme tabılmadı.'; $strLanguageUnknown = 'Belgesez tel: %1$s.'; $strLatchedPages = 'Berketelgän bit'; $strLatexCaption = 'Tüşämä başlığı'; diff --git a/lang/thai-tis-620.inc.php b/lang/thai-tis-620.inc.php index e2df8a687c..16ce22c986 100644 --- a/lang/thai-tis-620.inc.php +++ b/lang/thai-tis-620.inc.php @@ -732,7 +732,6 @@ $strJustDeleteDescr = 'The "deleted" users will still be able to acces $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexContent = 'Content of table __TABLE__';//to translate diff --git a/lang/thai-utf-8.inc.php b/lang/thai-utf-8.inc.php index e49e2b33ec..cb06f5b7d0 100644 --- a/lang/thai-utf-8.inc.php +++ b/lang/thai-utf-8.inc.php @@ -733,7 +733,6 @@ $strJustDeleteDescr = 'The "deleted" users will still be able to acces $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexContent = 'Content of table __TABLE__';//to translate diff --git a/lang/turkish-iso-8859-9.inc.php b/lang/turkish-iso-8859-9.inc.php index ffff30f9f8..c018045ff4 100644 --- a/lang/turkish-iso-8859-9.inc.php +++ b/lang/turkish-iso-8859-9.inc.php @@ -426,7 +426,6 @@ $strKorean = 'Korece'; $strLandscape = 'Peyzaj'; $strLanguage = 'Dil'; -$strLanguageFileNotFound = 'Dil dosyas "%1$s" bulunamad.'; $strLanguageUnknown = 'Bilinmeyen dil: %1$s.'; $strLatchedPages = 'Sabitlenmi sayfalar'; $strLatexCaption = 'Tablo bal'; diff --git a/lang/turkish-utf-8.inc.php b/lang/turkish-utf-8.inc.php index 57149ee811..d2a01554c4 100644 --- a/lang/turkish-utf-8.inc.php +++ b/lang/turkish-utf-8.inc.php @@ -427,7 +427,6 @@ $strKorean = 'Korece'; $strLandscape = 'Peyzaj'; $strLanguage = 'Dil'; -$strLanguageFileNotFound = 'Dil dosyası "%1$s" bulunamadı.'; $strLanguageUnknown = 'Bilinmeyen dil: %1$s.'; $strLatchedPages = 'Sabitlenmiş sayfalar'; $strLatexCaption = 'Tablo başlığı'; diff --git a/lang/ukrainian-utf-8.inc.php b/lang/ukrainian-utf-8.inc.php index edfbfe96cd..3b52bc50db 100644 --- a/lang/ukrainian-utf-8.inc.php +++ b/lang/ukrainian-utf-8.inc.php @@ -732,7 +732,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/lang/ukrainian-windows-1251.inc.php b/lang/ukrainian-windows-1251.inc.php index 1cb85b2d89..915081574e 100644 --- a/lang/ukrainian-windows-1251.inc.php +++ b/lang/ukrainian-windows-1251.inc.php @@ -731,7 +731,6 @@ $strJoins = 'Joins'; //to translate $strKeyCache = 'Key cache'; //to translate -$strLanguageFileNotFound = 'Language file "%1$s" not found.'; //to translate $strLanguageUnknown = 'Unknown language: %1$s.'; //to translate $strLatchedPages = 'Latched pages'; //to translate $strLatexCaption = 'Table caption';//to translate diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index 01f04c1c7e..75d0fce07a 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -438,6 +438,6 @@ if ($lang_failed_request) { $GLOBALS['PMA_errors'][] = sprintf($strLanguageUnknown, htmlspecialchars($lang_failed_request)); } -unset($strLanguageFileNotFound, $line, $fall_back_lang, +unset($line, $fall_back_lang, $lang_failed_cfg, $lang_failed_cookie, $lang_failed_request, $strLanguageUnknown); ?> From b39f6f6fbf0edcec906a4e4af57bc60687ecbaff Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 10 Jun 2007 19:47:14 +0000 Subject: [PATCH 09/14] patch #1731280 Avoid negative exponent in gmp_pow(), thanks to anosek --- ChangeLog | 1 + libraries/common.lib.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 04fe51fd7f..6e96682574 100644 --- a/ChangeLog +++ b/ChangeLog @@ -26,6 +26,7 @@ $HeadURL$ - RFE #1714760 Obey ShowCreateDb on the Databases tab - patch #1733762 Typo in message "INSERT DELAY", thanks to Victor Volkov - patch #1730171 Dead message strLanguageFileNotFound, thanks to Victor Volkov +- patch #1731280 Avoid negative exponent in gmp_pow(), thanks to anosek 2.10.1.0 (2007-04-23) ===================== diff --git a/libraries/common.lib.php b/libraries/common.lib.php index b706cc5ae5..3c3c364429 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -492,7 +492,7 @@ if (!defined('PMA_MINIMUM_COMMON')) { $pow = bcpow($base, $exp); break; case 'gmp_pow' : - $pow = gmp_strval(gmp_pow($base, $exp)); + $pow = gmp_strval($exp >= 0 ? gmp_pow($base, $exp) : 0); break; case 'pow' : $base = (float) $base; From 132fadea517932cba4cf6eddb0c2027031e4c670 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 15 Jun 2007 17:25:23 +0000 Subject: [PATCH 10/14] 2.10.2 release --- ChangeLog | 2 +- Documentation.html | 4 ++-- README | 4 ++-- libraries/Config.class.php | 2 +- translators.html | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e96682574..f9af6532d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,7 +5,7 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ -2.10.2.0 (not yet released) +2.10.2.0 (2007-06-15) + [data] display all warnings, not only last one - typo in fix for bug #1671813 diff --git a/Documentation.html b/Documentation.html index 4a90f98cd3..9037aef6af 100644 --- a/Documentation.html +++ b/Documentation.html @@ -11,7 +11,7 @@ - phpMyAdmin 2.10.2-rc1 - Documentation + phpMyAdmin 2.10.2 - Documentation @@ -33,7 +33,7 @@
  • Glossary
  • -

    phpMyAdmin 2.10.2-rc1 Documentation

    +

    phpMyAdmin 2.10.2 Documentation

    • phpMyAdmin homepage
    • diff --git a/README b/README index a865bfdb0a..07e30fdc6e 100644 --- a/README +++ b/README @@ -5,8 +5,8 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.10.2-rc1 - ------------------ + Version 2.10.2 + -------------- http://www.phpmyadmin.net/ Copyright (C) 1998-2000 Tobias Ratschiller diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 8695d0113d..b4fae5f15c 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -81,7 +81,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '2.10.2-rc1'); + $this->set('PMA_VERSION', '2.10.2'); /** * @deprecated */ diff --git a/translators.html b/translators.html index 197015b56f..8cd14fd9c0 100644 --- a/translators.html +++ b/translators.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.10.2-rc1 - Official translators + phpMyAdmin 2.10.2 - Official translators @@ -31,7 +31,7 @@
    • Glossary
    -

    phpMyAdmin 2.10.2-rc1 official translators list

    +

    phpMyAdmin 2.10.2 official translators list

    Here is the list of the "official translators" of phpMyAdmin.

    From 37c0fd03646049a1232da57f0c1a518044647322 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 16 Jul 2007 15:33:02 +0000 Subject: [PATCH 11/14] 2.10.3-rc1 --- Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- translators.html | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation.html b/Documentation.html index 83609c1175..758d68d111 100644 --- a/Documentation.html +++ b/Documentation.html @@ -11,7 +11,7 @@ - phpMyAdmin 2.10.3-dev - Documentation + phpMyAdmin 2.10.3-rc1 - Documentation @@ -33,7 +33,7 @@
  • Glossary
  • -

    phpMyAdmin 2.10.3-dev Documentation

    +

    phpMyAdmin 2.10.3-rc1 Documentation

    • phpMyAdmin homepage
    • diff --git a/README b/README index 24be69b93b..b1a36ca42b 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.10.3-dev + Version 2.10.3-rc1 ------------------ http://www.phpmyadmin.net/ diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 588967200c..d19216675e 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -81,7 +81,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '2.10.3-dev'); + $this->set('PMA_VERSION', '2.10.3-rc1'); /** * @deprecated */ diff --git a/translators.html b/translators.html index de96ed7f12..97ed03a14b 100644 --- a/translators.html +++ b/translators.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.10.3-dev - Official translators + phpMyAdmin 2.10.3-rc1 - Official translators @@ -31,7 +31,7 @@
    • Glossary
    -

    phpMyAdmin 2.10.3-dev official translators list

    +

    phpMyAdmin 2.10.3-rc1 official translators list

    Here is the list of the "official translators" of phpMyAdmin.

    From c8116b23f6978417daae68418ca691b5ec6218ee Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 16 Jul 2007 15:47:27 +0000 Subject: [PATCH 12/14] correct host name phpmyadmin.svn.sourceforge.net --- scripts/create-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-release.sh b/scripts/create-release.sh index a14cf830c8..e47f1873f7 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -138,7 +138,7 @@ cd svn echo "Exporting repository from subversion" -svn export -q https://svn.sourceforge.net/svnroot/phpmyadmin/$branch/phpMyAdmin +svn export -q https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/$branch/phpMyAdmin if [ $? -ne 0 ] ; then echo "Subversion checkout failed, bailing out" From c1fd1d8528b51e3a110176acfa6aff4550219927 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 18 Jul 2007 18:23:43 +0000 Subject: [PATCH 13/14] revert patch 1750500 --- ChangeLog | 1 - favicon.ico | Bin 1406 -> 18902 bytes 2 files changed, 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 42752979fc..f5c8120fa3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,7 +14,6 @@ $HeadURL$ - bug #1736405 Pretty printer and HTML line breaks - bug #1745257 Invalid DB name is still displayed - bug #1730367 Calendar "Go" has no effect -- patch #1750500 Smaller file for favicon.ico, thanks to Thijs Kinkhorst - bug #1748633 Incorrect parameter validation for VIEWs + [lang] Russian revision, thanks to Victor Volkov and the users of php-myadmin.ru diff --git a/favicon.ico b/favicon.ico index fd9b21e49d872749fc4692d25ce7273f24cdb6f3..2352b5fa4e6302b1a6009cb377bb74064d37ae7f 100644 GIT binary patch literal 18902 zcmeHN30M?I_J1%i2y)0N0)r@rfY)%}INaATj3O#V6fcxTQBFlsk!Td-wcZ$UQ8yYq z5_4`6|L!I+Yhqj@@ra4WBxW_ml3p#N@jm{2!NM#`0TNa+@>1SN$Zt`^I22XeI^K{`BPmPy&I&_(*J!g5k zeut-5zvbzLV?5ow%hUIe`^Ooc4nn5zpFB03!)~feUT^Q7kE`#{IN!Bg$$Je|DG)0NviS=aOQFSM)w##8ynJRJq*BjZzRI1j{BvlMOmzPhKLx$0& z#mi{_hx@2@$`m^C@jj{t)(5ymbILWr?saZ_?M2+)Rfem^vr=-g9Z;t$sYO)r4CEY=s$o+lcCX4iiXlt zQi+mNQqw3|P3f8pO3}7PuZr=Cjq~z~Pl)N9s7mTb6zUZg9^vI0=@k|2iYi(4^``)@ zK&PN!uMk~#Zy)mQ*{gS-zDhq`y<2x8cMs1lUOkw0Cubrv7lmtAH&(Z^wBgxHB0f48{ZpGU&pZa7Ru;6?bTcHl!b9A0!{-9;6;*9<(C& zAoU>gKnWzF4R;tq&O*v!V35ne!5tRCK`+oC7(&Q1F=icA;A1mEPKFG!G7>i{LUym^k>8Qth3sC-V_y+cd@YY8 zj~tJxD2y)Hv9M`iuRsxYi&`H01-2&a7{Z28%VW#XE7*Xr|Da$8!Ulx>2ip&JALzl} zgRMueU^ByB#tJqx>}S}{gdMP!$9~qjz&iFtR&MQIjUSMp8N2=?3QXYf0Z$Kj zc)+s*%(X81>)~3My#fe zx$CLJ$cdo{ADB6Z`wp#wrr-Cw>Qw6uf9z0y!AT${oTLOp7(as$9wls6#N9WF;r}Gys&;?uMX)Xf4YhS}q|DaK8#%p3dld=amJ7jkY9^_zP zWTB1q6WaZ}dzqS=l5B!1!(fo(fE35UU8*C8WX5G?cZL;?8`GnwTcA&0ci-^A@NH^-xosX+(t zzAkx)^4m@v%YTW!Z}ryQx|UB zut5}9P*Pe{_iSNFX<6AquBKwIa#}= zxs~G@XOtAJWH!V~*32s`l)&S-y2(Wg zIc{lTSxFW2&zxCOG(*xG=Ghwgy}Ng>U%z(y_H8tA+?`7oFJeCgee34UYgez{zIE%$dLbcl&yIs8bRfKRu9^lH%RXc}P~~!A}na z2L<=_c2{Tg@7t?qd~{gj!B1JQBS(%T#i=~p6tk*kOZ8YA7_7<7H8e57BY~7(I&CK9 zze@=-O2_3;SUxSkN6MjN1}0PDG+KJcrjr#-e4BE%Sjc5~hB%w7q45t9&XvY>kTS?pGN#OCpnzPzCtha^!$~O*i?Do z0NTcDLVXI#D`_2X7%|FFW@v0>@9geF)nC%kjSH(QrTXX3ojWZ(eO`99pR22ngF~2` zn{&sGoh&Us|LlP6s8u-3vO&PD<=rFFWJ@m5_?_Wiw#>9!a0|soLG--HPSoWaIs1arK7hc|_ z2VQKH8KcG)Poq`5+}YP~;W-K)_tAU1-hOpE6~0HgFV$A&TZUxPD|}y9ySsNess0c4 z?#)j~$d8R3nwxw2?Ag;7E_f*vuM`y}CM6Y)8cHwnhLhi=>4&vhgZW!m+($2ga|Fyo z>vOY&m(rDUr_tOiMt)kF`U&N|KD~INR5|Fg=g$vGNLV*|w70XfS%(f?U0kNB)msY+ zBBP@gKU+!juhCYXa<>(Y%Z2c|KQEw}-@_u-PDLZ0(9afAh`P_ip{9>Yrmj zX{+(zMG09WFI_kX4c{Hv?=^f*htc)HnR!g1-W?C9$G`gO%M&M#9y66J+k+ zzjyrTp<|5)-v9e9JS5{8`Q*uy2>8ZN_U?Y?O%Pz>K^f1Z=T3ij?6U*6ZwS2}QNBHO z>i7vfVhiQgty@^vH*eg)qb^o1@-u=KYZC+>kgs03a{m1J)2C14;TuMQ5HhShLO-6k z@jwq$c)W+6bLY-sRWc61qd*V3VU%fpm|j}(L#4Ri#4KmrFN0uB8z1U_Clz{DuPL>10K z6`H}vh%jVSA6C}G#(_ms02w)ZoKmvJDvONS`1XRq`OrFgFy})F4545~z`>x9H&FhwY1JDeT!GnyDu8F^5Jm73rhrxT!@~lZ&aWXex~^uBM2RwPaiRCUq$P2N_iCBYO4((ej%(Z@ff1=2B zC#bOgeOj~eC3DgLc098omC;8}!aQ@6h}2zfYfh@(CS0c#sYsKHTEm5PJ;e&HS;mi=ZtHrq?b}!voA);M(PKe!-u+RuAS$96zd^U*nfpfuII1{|x z;ye&bv*|qWp6)ylxkYy-h^6!NJn%O<4@8Q3>f0yq0n(`6%4bz<1Ap)m-^P9w3cnGDFK= zXzOPwGc+^eZ)Qv&DV${jFceR@t&O2j$j~au%1J?TCxx*>(ZR$~VdUP+9DSXga5J-tVDi3l zTU%ReYir!d4p=&ni<6~^!i8KEW+t3FG#gpT6$%*}F2|`b00S#~J4+i|Yng{BS`>~} zo@NTO4hl!3C@m1lyp7S_m#ODC=%*fBa;OP@dqWdM?X_0U0ub`lL|I@gW(r4>pk{g9 zfZ+qOwUznET_9)V-ViJRSCGAy^Fn`x!qgsaWyK2v#tg}91pN*en+tizCAm8a9j&4{ zt-WB1nx_<#VS>>LrIT@|Fb^{)CnrN+Wk9GU2s11H1TImafx!`x;lTk)Wne-J zNmj`WRr&`6geE2@rD?R8nOcoHIX)&@=;yCgh9_mV>JkeG%D}{UfB%5M;Ly;}s5Gu2 zCOS4gJ~1ISDl$4IF-g;+PYNt60}{9hp&v?MBG(WMPGE2h$2Dlvk`j|!$O8~sLG915wDO_@7 zpi-P%QNK=GKU8%ihkS!hUeyo{gi#N~M5-UO3H;0uoqkn=fIm1v7zB*8E`o=`1(-Sm z{yKU8h#;Y}Bo-w7;L1=f>N-~``!&FyK|1l!R)f{`ic=~>)B*)Usf^Cl1}Q@^yG~WJuSEyY^*W}rs5tkSY4+mRa4&-e_<#w51CofK)euex)R|J`N-h5XSP|0 zQ^#aBsMWD)nuhp*L{1yp)>0RR1w!4Rjg3*osM54S@myk5LyN|?E80x10dirnTx^qf z+m_RD8&Z;^VpD`D>enx`t*F=Un-rg%6fZX z$D1~7+PQNlj!{{!ty{OQTeoia?%g;x0CVr&y&E@fgdT8Se);9~>(?`3Q3(j>$C<>N zZ@&4$3oo>8g#Zo?1O5D*yL7R)vGMWt{_w-*{}hyJ(VeNgc=ob#?Ap=ZY23JRZ@u-F ze^@lDS~f$3SL`XJ+`5={a=hkj&VGbuNWw(rDp%RN)6B*S`3Zcl9%M z50uAG6uQhhV&mk7L-*Erwr$&{4hR6Ag*iE{4i2uJJ2(9~I2g%fh^wruEF5GF8ZlPz zb1iRdY3JD|h|yiW`v}TwdDA|LA*w{?6B9T8`ucj<>XtZywF>uHM_898j(XO>fdi#q zQAA+-_wSF<;Q=K4u~=drV^yGeL^xU0gh;x;iN_ z5gucZT)K2YNZZDaV%nNwVB`kPprH*rcABRagD;OSv$c>E|p6*UgNKO7h!7O5#X$0ru#fxz+htDa#aaj-W0Fumj z#*7(&3M)HaeWTfdx=60&JA@9wLKBmK6bYlT?!=IGb96*hR{iLfNFeExe(95sr$ou%m*KQ&>Duw z!I^V%M1&a0Qevb^rS$O`J9;$EnCoABNeF3O8pPe)#sPZ-&Zn^j;EPsLs#f^{Sy6$%8PlfWucEyC`I?$Nd-foW zERc!6ECJ{COFe_+V5~fyo3Q19yph5b!5VOHD9HQcinlgsZ3)I+0{pFDYLtfC*v( zNDCq#gmlNm1fe^o>_3PiconlCY8HJCod_P0&jPv0ffJ5J@Gym3S}Le?&YC062&oq#!A5F~%MXhE!Nw;21U5h1dja zq92$=I1^KY0=IwzBzj;VFCCGn>ahqcD`pN8gd{BOD>g9!1PROmGlK!^a1m?59kkx6 zm#S(%ElwFmt%nDunJbu41Q)@);|3CtB0}FDAo=}4HMWAK%-#zm<|LC zI6#YlXBiml5o_v69^j>RA3*~HOv4-&5wKzU*d3_AMEtOT2P#Z1Bp;#b*KLAzHWx4| z+C~0h0fW03NWZRKJ#8?}avfGNjDm*8L>WXE3UGoiGJk6V1IMHw{UUThNS8A>zyr>2 o8piD(ASMyv^m{tz7qJ1%|A=#b5$aQcC-;E<_pqn+-`4~G4~;GfJ^%m! literal 1406 zcmeIuSxA&o7zW_iX)OEwtN+ikvfRoVYix5WE5~xOa>>S4GaWs5=0LPSBw4oxK@@ot zgA@Z|5aETb#!wMyIN3(!RDz(O=2F%W+G6>3a-xf%t1i0nJ3I&81Lx!81A^qyG{`#y zCBZ;AfOtthAx8T7{X1C*5o&)6$2aXpzabk}XCrg|-?R3Ib zT8gUja#WqFKutvjF1uW)bGrc-5hMjy5~1e^^*o`wiO6aqN{YEa#7YU5h{PJgT1%uz z4?P~FT_w`55gFHs>>Gr=j>x%5-CrwCK*L$*eVgJ&r6*erOzJuJ2z3JPl-*L9yZNBl9w$KV*boE zar(+Y>(m4xl4oo%%_ Date: Fri, 20 Jul 2007 13:03:09 +0000 Subject: [PATCH 14/14] 2.10.3 --- ChangeLog | 2 +- Documentation.html | 4 ++-- README | 4 ++-- libraries/Config.class.php | 2 +- translators.html | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index f5c8120fa3..1095c318fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,7 +5,7 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ -2.10.3.0 (not yet released) +2.10.3.0 (2007-07-20) - bug #1734285 Copy database with VIEWs - bug #1722502 DROP TABLE in export VIEW diff --git a/Documentation.html b/Documentation.html index 758d68d111..191c8d60ea 100644 --- a/Documentation.html +++ b/Documentation.html @@ -11,7 +11,7 @@ - phpMyAdmin 2.10.3-rc1 - Documentation + phpMyAdmin 2.10.3 - Documentation @@ -33,7 +33,7 @@
  • Glossary
  • -

    phpMyAdmin 2.10.3-rc1 Documentation

    +

    phpMyAdmin 2.10.3 Documentation

    • phpMyAdmin homepage
    • diff --git a/README b/README index b1a36ca42b..4943561e07 100644 --- a/README +++ b/README @@ -5,8 +5,8 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.10.3-rc1 - ------------------ + Version 2.10.3 + -------------- http://www.phpmyadmin.net/ Copyright (C) 1998-2000 Tobias Ratschiller diff --git a/libraries/Config.class.php b/libraries/Config.class.php index d19216675e..cbdc16196c 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -81,7 +81,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '2.10.3-rc1'); + $this->set('PMA_VERSION', '2.10.3'); /** * @deprecated */ diff --git a/translators.html b/translators.html index 97ed03a14b..2a90edc14c 100644 --- a/translators.html +++ b/translators.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.10.3-rc1 - Official translators + phpMyAdmin 2.10.3 - Official translators @@ -31,7 +31,7 @@
    • Glossary
    -

    phpMyAdmin 2.10.3-rc1 official translators list

    +

    phpMyAdmin 2.10.3 official translators list

    Here is the list of the "official translators" of phpMyAdmin.