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 a825b612b..1af0183db 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 282578795..2d1520b59 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 206831cc1..0d69f49f7 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 29d646a18..4efbf9b9c 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 2421251e1..39d5867a7 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 bceb17da4..dd47ac6c9 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 1af0183db..eab5c938c 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 23f8fe8fc..a8a108e5d 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 eab5c938c..f0808076a 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 2d1520b59..db395e80b 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 0d69f49f7..fabb8c29f 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 4efbf9b9c..4da17f003 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 dd47ac6c9..a10a37530 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 f0808076a..ee5aa2e2b 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 b36af285a..6de0bbd74 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 ee5aa2e2b..550c58503 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 ec3c05378..89d5efdd0 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 9195dce4a..4a90f98cd 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 cb6bc7c9e..a865bfdb0 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 d9fc7fd78..8695d0113 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 0581f99e5..197015b56 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 d188853b5..6aec17b03 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 1558903e2..988755f4e 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 d4eeae3d0..9c0e59700 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 62a6b23d5..94d3496e3 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 e9ae27b95..945283634 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 587d3ebdb..afc281581 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 8c258086e..263687659 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 dd0b6c0e7..702ae1643 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 1f982c5e6..5c64f1508 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 5435da410..447b175b1 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 dde33f138..09b5f0022 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 5f3491cd2..fd4ee0f1a 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 69212eb96..95947e248 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 23050baa2..9107af836 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 079a52cdf..ad70ca880 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 dd71f7c6a..5965db5a4 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 67fb50fb2..186ef5d8d 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 068150459..54d8f9382 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 d5439c313..ca7bf8ae5 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 a69e8cfdf..182c50301 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 a4f705184..a6eeabbf2 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 d3fb77afd..71cb4800b 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 999d41c3e..9a8b0177c 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 2c35beb13..a332fd0f5 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 fbc0b44f9..c4716b336 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 f7a7199d0..1b19b39ec 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 d077ac3c4..366633700 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 49d6dfbf3..35b44ff0f 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 e51886f9e..924154904 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 456c9e2d0..592189ad5 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 73c2f682a..cc61486d4 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 1dc86c00e..e68881ec2 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 c8cb6adf6..ab05e9215 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 527dfe582..feb322e57 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 3da44a433..1a263eb38 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 1ad90c0d4..9b5849a70 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 a660d6798..fd2baae05 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 28dd8f114..12481b769 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 5ee82fc91..9f0fb10ff 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 beba8a0b6..e4703e65a 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 30c23a686..b33e52b21 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 6b1734d3a..31fb85ae1 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 ac04b775b..9c82d9a15 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 c5b0cae63..88e52c0af 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 5633822c8..a06144fd1 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 a9340d9b8..b8562504b 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 9dd008ad5..2b7d06cf2 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 6490058c0..484ad1bfa 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 9c84e5d4c..08ab2d668 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 0d62787fa..d4090e8cb 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 776f1097d..2b7d8ccd6 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 10312f0a5..05124cb13 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 7735c0f10..5d4c8d6ac 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 3a5b7ca04..c761e30aa 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 503f324d8..4c955cf19 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 8efdc5df7..41b301dcc 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 24315a8fc..30f8c0f3d 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 688171004..12e3721a5 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 b7f64c407..c70918f01 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 470091215..29bb577a1 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 3603c423c..4d24bdc5d 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 ac343ab57..4d54c8ea7 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 7e8d94e0c..29a878216 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 c8a0086fe..0bbdd6983 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 09a8492d9..bf76a4b37 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 2750f590f..39ee720e0 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 35142340b..cf4bdff0b 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 983886094..af133b065 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 1558b00ea..2006b1f00 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 ea9bb214b..2329ea512 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 0012c33ea..ec9bcc385 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 0e8ebaf7e..0d54b720e 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 2b2c7778f..5c1bf825b 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 da65d4a2b..6f250b32d 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 e307d9235..b4aaed6a3 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 9faecbbf2..d392619d5 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 262aaaea1..ebe5a77d4 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 34c1f380f..95c3a5227 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 33c5b8c15..570c2b391 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 7329a7a03..b4303bebd 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 74e0b66d4..e86142a9b 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 5d908f5f8..29962b6cd 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 2ee2699f5..59f44e331 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 d79c831fb..4b6675d58 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 308bfabec..ed13a0daf 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 7f76f22b7..18ca66b3f 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 0359138c8..859521d4a 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 3576010e0..dfa46a1e7 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 bf57f6bf9..13b3ae7d7 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 9ae2f9ea9..b11648859 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 01e71c60b..441a79608 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 360bb7d06..4e4d54c79 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 d484b47af..760afaa67 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 20d21d51e..cdd3570b7 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 e21a9248e..2d47e78b5 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 44dd6966f..d60261951 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 f164e231a..6ff299fa0 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 f1a89d024..316a13dca 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 8652e3c80..45b10e5fb 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 6cb90edcb..8a081610d 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 781bf9fd4..d22629b31 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 21f47bcd6..4ec4e66d3 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 7b3ba3a84..32bfb2a6b 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 ceab685c7..e2df8a687 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 1d57badfd..e49e2b33e 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 ed639a875..ffff30f9f 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 77be9e1bb..57149ee81 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 69759cee8..edfbfe96c 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 650365d6a..1cb85b2d8 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 6aec17b03..04fe51fd7 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 988755f4e..8e7bc97e6 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 9c0e59700..c50dfafe3 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 94d3496e3..a0fc28612 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 945283634..eaad0b48c 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 afc281581..9340c0856 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 263687659..2bcbd5639 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 702ae1643..cfaf041ff 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 5c64f1508..6f951ff71 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 447b175b1..ab1da8354 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 09b5f0022..160b69e3e 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 fd4ee0f1a..a823a3ec6 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 95947e248..d1c597b49 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 9107af836..83f12543b 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 ad70ca880..35eb7b1dc 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 5965db5a4..a85435b01 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 186ef5d8d..62f4d4c01 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 54d8f9382..741eb8d05 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 ca7bf8ae5..e20792966 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 182c50301..e13c07563 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 a6eeabbf2..9d9a26725 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 71cb4800b..eebca1afb 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 9a8b0177c..7d496e182 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 a332fd0f5..89f06e749 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 c4716b336..229c61946 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 1b19b39ec..8576e75b6 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 366633700..9b83daf27 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 35b44ff0f..5a9809b15 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 924154904..48ad306e3 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 592189ad5..bb322699e 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 ac19393de..d9032c75a 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 3f567293e..32069b4a9 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 f6ba57be4..6ba61df70 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 cc61486d4..5ca3f5c78 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 e68881ec2..d3d030a5a 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 ab05e9215..f7e3c0694 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 feb322e57..a2f471fde 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 1a263eb38..07df55b00 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 9b5849a70..25fb7fdbc 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 fd2baae05..cd27c8ede 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 12481b769..20a1cd40c 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 9f0fb10ff..4ae86ef1c 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 e4703e65a..16b9340d1 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 b33e52b21..bc338c0ce 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 31fb85ae1..fd259dd93 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 9c82d9a15..302aca54a 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 88e52c0af..efc411645 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 a06144fd1..19799e5ed 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 b8562504b..9a042b507 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 2b7d06cf2..b7fbffb04 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 484ad1bfa..e09183f6b 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 08ab2d668..40bfa96a4 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 d4090e8cb..df1e03c8d 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 2b7d8ccd6..405c07aa6 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 05124cb13..4da322bb9 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 5d4c8d6ac..9a0f1ff43 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 c761e30aa..1294d57c9 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 4c955cf19..b7317291e 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 41b301dcc..63b32f330 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 30f8c0f3d..b2ec1d340 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 12e3721a5..5bce9bc04 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 c70918f01..9a56f01e8 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 29bb577a1..62380ec48 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 4d24bdc5d..d191a16fb 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 4d54c8ea7..73d3ef581 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 29a878216..c973f2434 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 0bbdd6983..d3c155e92 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 bf76a4b37..508a2998f 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 39ee720e0..3f67ccc8a 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 cf4bdff0b..811e96928 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 af133b065..b242b505d 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 2006b1f00..c565c7dbf 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 2329ea512..8a8351100 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 ec9bcc385..151f739b5 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 0d54b720e..f09ea71e3 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 5c1bf825b..f4bad3193 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 6f250b32d..53cf63f67 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 b4aaed6a3..39e873982 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 d392619d5..a5bee29c3 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 ebe5a77d4..c00245fbc 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 95c3a5227..04b42f48b 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 570c2b391..7f02a3549 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 b4303bebd..1b95991ca 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 e86142a9b..92e0b2957 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 29962b6cd..7cbbc90e5 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 59f44e331..03a87a889 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 4b6675d58..142f41bff 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 ed13a0daf..2bda735c1 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 18ca66b3f..6a1d687d0 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 859521d4a..1eb42732f 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 dfa46a1e7..a6cec617f 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 18711785e..c7918ba25 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 3554a8c6d..57aeafe77 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 fddae06c1..924c00003 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 24b8d1e7b..2e7abefdf 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 13b3ae7d7..01e80604e 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 b11648859..e4febc97e 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 441a79608..576334eb8 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 4e4d54c79..b9598d7df 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 760afaa67..25e748c2b 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 cdd3570b7..83b597eaf 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 2d47e78b5..1a9d088e2 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 d60261951..ba3e221cf 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 6ff299fa0..6080c8866 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 316a13dca..90ccabaae 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 45b10e5fb..6aead8c12 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 8a081610d..f0256d913 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 d22629b31..e66e2362d 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 153bea4f2..233458d84 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 32a12debe..20efd9120 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 4ec4e66d3..5ee2478b9 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 32bfb2a6b..17e0d23fc 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 e2df8a687..16ce22c98 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 e49e2b33e..cb06f5b7d 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 ffff30f9f..c018045ff 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 57149ee81..d2a01554c 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 edfbfe96c..3b52bc50d 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 1cb85b2d8..915081574 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 01f04c1c7..75d0fce07 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 04fe51fd7..6e9668257 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 b706cc5ae..3c3c36442 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 6e9668257..f9af6532d 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 4a90f98cd..9037aef6a 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 a865bfdb0..07e30fdc6 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 8695d0113..b4fae5f15 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 197015b56..8cd14fd9c 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 83609c117..758d68d11 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 24be69b93..b1a36ca42 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 588967200..d19216675 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 de96ed7f1..97ed03a14 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 a14cf830c..e47f1873f 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 42752979f..f5c8120fa 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 zcmZQzU}Rup5D);-91Iz(3=C-u3{buVLk2Sg!#P$41_cF({0a^R1~X0=UxHx;4+FzJ zK?Vi`1E@S714Ek}j4#2kLWY4sPnUr~17s!x1A_tsL>&VI1A_x2h(yKz|Nm$B_y0e` zi*NrKo__t$@cZw7hF9PJGhBG{pW)Km{|twp|7ZC4^FPDJ2mcvnU;oeW?e~9%XJ7v_ z?0@>7;ryHb40%WYGpxM(pJDpd{|vwW{%3gk?LR}+ss9WQKmTV?T=t*g%Devzemnj% z9DMelA?L_{28Ct+8BV|Y&k(iuKZDWQ{|tZr{b!hX`9DM9vHuLQ`~EZNtp3li`^kR> zhME5v7To;L;J@=fL-ncu3};{eXW*XupTT|We}>Hu|1-!f{m;NU`#*#1(*F!M-v4J< zeCt1h&Bp%>VY~k`@XY(qV7u`@gU7c243#JUGn{z&pW)o={|t;X|1+F?`Jcgg%YTNM z*Zwoy{rI2Z-H-naf(!mLoO%79!Dst_hO!g?8Lqzj&v5I*e}Nbq*WH^ZixGa1%SnuHn|qrA}&pmPWW#4<22 z1o(Oe_{4emGx)^&1o*}<`1p8u`ULoRd3weA28V=(g-3WsMnyAt#d!G#1~D-B`TGSh zc=|E;dU`Q1czAkwGkEwg`1<)Xcm`m)-oa7L$yrU!#nn;V&B5KCfx$w}(#l#*&PL7F zPR^czfq`G&h{0IRM9S1m%^a*WzS8v_G_h^R1wn7D)_H$<9&k&Ty+UqDbu7|Lg0VCUfE;^u*K8JU<_SlQrQiWsQn ztOVFB2WBvZLM(1=J+piFe;8QY+IsEe$^OjD#jUM77A)8_b7p~~<>%L*nOWuMcV_qQYbQ_UJ2mdEnO9Dn>`c$>$;kZw|9_RA--Bz{s{H(3KY8-?fgG%C=|IfVs4=Rdh{%4r^zwE^StM5SKip&1r`tbkVkN-zs{J;AVYA~pD zpZWj9%m3$I{|A-sGyg~J{SPYQXa0BI@_*(v5Eria|NsBz-~4Bt{eST-kakdQG4p@e z?*9j${pXqYA5>w?{O_?1B!!IqcmA(F1rj*>`ak#F|L$A=Z+`e+ZYjtd*`@z)ya!1k zQs#E`e{RN3V{QO^W+5ao=K<3ZB4idq{|Nj5K@aF%sumATy1$jU3=>L^> z|4+XPH33sSMC8)j|A(Ld|M>I&#s~jrU;qE@H$)ga`S1V#7vKIr{rdm+-~X?^gRH|; zhmsk{;DGWOD8D-(wPzYwFb(46=4RmK;%4CG;bq|EuwxL=aAe@ua$(@r z^J3sP^kon+@@9}Tc4tsGb!O1BaAYvCa$vBwv172ewPA3!wPA3xvu5zJvu5yhuww9c zux1Exv}K5NabSpZcV>w9_Fzc#^=3%%^JPd2@Mp*j31%pa2xlmZi)N@#N?>S7Pi5%L z%VuaVDqv_WDPm|SDQ2iCEMO?l&0{Fa$z#aL%wtGN%Vmg4&SUV1FJiEatz^)OX<$%@ zX=9L#>R=F$?Pm~)o6H~(Kb?U)VIBiV;vxq2{ODjM+OF81wcrFcckTV5mIHz|e4=fua2o14Hj?28KzW7#OC0Wnh^8 zoq=KYF9wDMzZn=7{b68S{D*;M@lOWMMPC`j7QAK9nD>yuVeTb{xVZ-yD(7xs=$^Zb zVaEJL3=0-7W>~&_8N<3YD;c(KT*t6;+h&G+yS6hNKCqYJ#IeH+7tWq$xP0+E!_~`| z7_MHu%5d%4H88$@{W`-95WaDP;pWYo47YCGVz_<#HpA^ZcNp&6y~}X#-aUr<_d)nR z!-EG87#==+$nfaVBZkM1A2U3C`jp|>vu6y?pFd}K{^AA0i;nU~O44*%LX87{u z3&Yp1Um3oA`^xbB`!|LkApGMy!_S{T;rQ3DUko7p`}c2#KYu{@55wQTe;NLP@V|cy z|3)!Q!T{87!OZ;(pt$%&5x6k77ovY&-;7^#+ZX+s);qmx7D#AT=R6Q4$76H>L}&6S zW~*^&WlQsD^2%rb`jscoX#^5y)Me}h(MI03I$|MW8n(eKJ}!*edBzUjG9YnzeI^Sd z)1(<0eom_HkwMa8k&0$vVvH=j0ZxV>c|#2yPEJk+<{Srq#xRK>Pl<5JCYy+0=io^3 zY><44y0(IeroOV4RXAIim3b&zkXUA#uZzA|Bq!K?S*ofQO|6^;@;Z^e{#w)RA|sqM ze;Ede`Fj|HwEt>R(c@&~(9oAL42pEs{go6L>C5x$mu*m_FxdECzl_wiw6!$k(u-}K z#geL~Te{j=w*AVrak2ty|Mjbt1uzBE z%1R1n{3xd{1R zy@iDne*LN~E-h~S)m2zLqdhMV$$7ti%`GVG`Soi;UTJZ|ug-$Hy5hoGB;CJ${i-Wy z`St5pO>uFsMcKaow+m^0JZwaFipYf6Xmv`~`AnVaf7M{q{_Dc8x&8gU7n-I{#dI9loOzS` z7GC((HDLzWp`-jpN-m`bFmYRx>r`v^dXT3c= zH58>ILW9qrJ8NcYrmvyw;~%K6qwQj6dExvyi1}BpTyb}HP*ISrZ)k*wKuAGG#u*6- zOziA$-n@Z`K**A+I)=<$46d~$>9Gu!nGBQvFc?Iogm^HxRWVHXDI~zpkh_B+b~!H_ z^M$jguV1}fSDeETIE^8Fhq<*a!~_WGZf?FjCx?rNCpICWys|RCsA$f-c|U&qIJSEW zL(xHo_$9F(Rt%}@8P@%0=zeGJh1gt-Kf({8uuv`}+K@Tu=$aqW=v2ANVqtu}=EHu=2mSf#ZeK#~~&|$R*2` z6?u6zg@$@rTi531CIkho$LTdc}Y|&_C91t4*|NA@TXc4xtzu|> z$6^@3P;rVOZF6-|F2qZ)R|Kz-oJnE&-X75fw7|bt60N( zT|*P!yn6Bf|NloR=h(^A9_wLr6J2!9NzIy%otvh#a-MRDW%a{NE z|Ns5_=hoFr*DstsxNrB(n>TOWx^?&N-3#Z>T{v}Y@6N3k&Y!z^^X9#K_x}9(^Ww>) z>le@d_zKd6W;inU!NZ5QZr{EG2H(GbfB*jdx36D+{`~px@84g)e*O6Ic@_vq21XV0F!dGqGapFiKeef#?L>z6NIK7aoF=g%KB zW8vKI-@o6!eH&svq~y7E>()&exN+mg%a<=9=3l#Z?Z%B8*REZImt8-9{)A|On}*5w z_wV1shYxSuxN-gZ^>5$4{r~^}?c2B4uV04*{*4E37x9;D+4~hEQw{QRa z`4gg&81l`VH`lIRd+`F4cOdFNeE0x1{>Gz6kN*Gv|Mcn8J9q9tQo^-s*U$=fh!#BL zuV24z-n#K6>=%$&)9@ zHQL*^Z?9ducK`nUpFe+o`0(N5$B&RC^x?w?l1zpue*gac{rmTk&Hw-Z|BV|r?%uuo z1zdDMk_{xfAzDZxfBpIeDOiwoJ$drv=FOXsO!VT#i>p_!5|iMOO+aQpfBqaTRebvN z>DskxkmkXoM~_~=evPc2RQAV@AHRS9{_o$vKY#vw{rdIq-@kwU{JDMmHpI;j9z1|B zNHrF&9uoM!e*O9g2Jhd$|M&0T^XJdMfdP5Z3O5|W`2G9$moHyFeE9J9?_Y>@Z{NQC z^y$-&A3q>mh%&OtU%!5R`}XbU&!1nveuWtL>({S0Z{GX`H{{4R7QaTgUHFv^16g=S zV1O8)eu@DD149Dxcq$jBV|e(58F&SR83cvJ7{sI%7$g-n7!))O7*vg{88pou8RV?| z7z7;?8F*c@8ARPP8PvQ|7|i|R7+eFQ86tus8PY<-8A`&!85*LZ89Gx_8R`p)7)lE( z7?O*c7_5tDF$kAzW#A~=&%juDl7XT5HUq=tZww66|1vO6|HHsG;}?U_tS<~Ub8a)_ zEjY+9W6=tRrOQ_`tXi{{VZ+8v44b!XVc5BIC&R&m2N_PCI>m7Q{CS4UmoGEiKpHoM zj~(8=&2Z<=9q8C0V%!ikX87dE6O?homoHy}#|mNNgrG6P4<9}-eEbL*AB2q!e*5-~ z;rsXR3_pJSKp77NjRk`6pFe*XU>Gze2*RV|fum!hgE0-zY&?~;;TsyLcF|E)(e;KJ z?4YHhX62%zs;p^mrKO^xsj9379@g|WR)?~FIk7P_v1&rq+p;h-38=F(Gck**voJHU zGBY#r>HPZj%bt&!iAfo($c8~skU<2@{PjzPQ%ZtGnN>=Pi&>OYN|J?BN{WHs<<~DA z1}P~{euyGgVPOU+^Oq@`tQ4~dm#nNTgEEV(G^3b=EEh8yJD(`CtSo~XM7^+}Ff%I~ zJ3BkSvehp(85stCka{T=Mj2TK2R<2DP8Jpx7A{$7W{|^v{raWKCM?7R0t`(2?)*}+ z3~W-etg^Bk>=Lpp$~ruReyMTEa>>eain_qmtFZ|SF*7kU3xUiR zlaiH{VbE}PSC#;2cmVvPapOlmo7r&9~ zFEx3U>GO z^9u+F2=?=KcX6<>Ff}nTv$nA^Gd3_VaRn(r!@(8?M#jb#ZXWL5egVP30e(InE{=8} zeMSZbR_?)Q%76WGGB7YOFmZD+GBP$Xv#_wR_5QWe(ay=m#m&{p*2d1!&D{@0kEgML zfq}8>FKduKu-0EI%?u2TP0SpB{aP8|?e6A*qCVIHq~7J12S^`;`3oduVB`i;7XZsq zAPyKi7#J8BIsf_vqCrfjU%xCtc7alvpMxES54=qb3=AB9{qh6R1_nlszkXSP+~xVp z!^Xq_9=Tw%!34-O`(IF>8yGpR1gm#gX=iL;VEYRb*c(8^gUvzCFmhN4a=)1?$P*@> zn96^FLdXi_OmNUb)Eilwf;1zg1tg8u1_l-ZzkdA!2bF>S%9UmYreNh3AXAVOLYdA6 z2If8>wll~~yWjv*0}CTiP=P}fB!P-OjSbAe>I2L`UJ39sF$ISeT2e!3vNSM*cnstN zn*a|}J5c1AU_{j~C~!6~gG4&W0;>QgTX1A!_bfMjiKt@jSMW@oqo9+K$8zx7L#x^fyKL(fw{BaFBeD*Vk(4+c$>i->ttZ+{_B^s z0dCKNwb(jL7J+?6We!$YJaWt z^ssgE1f?Q-`(Q}oz@z%tuV3yi9_}un6yt91O~A9L1_d}0V?2@`Pm+vB(nwDxW{+r8 zgq|UQ+E0bfr^#TtU>FPujCx_fL*Ub=PZuvTMBL^0eD z$mGDCJ9oBj-8y^rY)o0mgn)^mp|qr=sF0ARhQ^U2u$6+yru_f^;>8OYRULi_d2Ugu z^z`&?+qM~5+CjMd5_0+Z`I|RymQvP&h^TApi^{1&*gif!7cX9f8}{bS8!x{=VHss^ zQ7K+A*-4Wo!KEOK=g*%D@$;AZ`IY+lF*7lBcXva?(a7b?mvh@hGn5`?NL(nRtTAE2 z1a4I`5V!O&lS8JcjACA19+x#(LGb}`1vMzU^e`hcYd}B%eD>qgrAy4L>=2DCCZRFl zb*E@{sjI0?NlKcTmd3-$866#sCJW)-zkgp|-Y-Lefh0_4Vv7c_1!$i77LW z(6njOL{#)aBArjU1x4dC@))u=G0glAajlV&k%fhYhlfXgem=J}Xu=aD#mcr}!v=`? z$Yf?}YN?;!%(OHO85vz&T_YnSYcR02wT+31nL2eUWZd1**py+)H-;(Sm{{22lF}H$ zCV*@QyN99lu(XOczo0Nk!OZ_mtZZ-JzIFHXX6SjzF!Mi)Nhph)K8u__o4g^XvI(0@ zE=Xhj6(K2wt5>fgy9B~sy?V8evGL5bw4T^lIWaLgad9XT6Jud!78Mc-4GsPF?ORxU zDkz+1{%7SAQPneru;n%MK!(r!&#C8T?%)Oq6Ltlo1q&8jy?RyAEgm8ZBI~a}w1C(% z|1x8df3T3(Av(PVcIW-Dc@Mw*dgJ=;8XA9QFQA<;kyPI22Y%Ih{GLn+ZmoFD~ zN`jaMO#_Jw{lcPFuHC@nRm3p!KbuP)pRqScLG~sIMYR_%Ui|s<$J^H*5^J22s=IgZ z7E?0>DVXw&nU($I$&<*=KxP{o8$*&bKM&95&71%K|Ns5__s5SPTbP?e#Cf^6u3fvP zV&VWY4P-Sa4X`@rl$4bG`ST|%CV`>zDMSiHc0Og}5m>!?_3z)mU%q^4?BWj!z|zA~ z%39FGleo~t+VTGV`^auUX2X-TmaMFWlsjvO&EHG{?o zI2m&)oAmYd{rmUt!Gi}{&Y>WefW<)!X4cx;TF6}P+KpRa0SNL1!_5C277_XR`S3yj z*(DJ6h7B9wNm@ZdLQYIfK|(@TK>-q9(^66d`S@XD-bD$ng5yD*bf~#1hE<`dHM2X4{K|9 zN=9ZRIye|;YNjS9KY8+G!O|6=BwczK(-q+cOE@@MVBvQ=xVTDr;_ zT2u2&oxB5&A3uKU)~$Q@?tTCM{r~^}Yd3DGYws(pZVZV{frJ|_m!OIN{rmUZw{MWu z1iyd({sRMl|Ni~``}fbEKfitZ_UY57w{PD*fByW@qeu7e-@gk64<0;t_Uzg7=g*%$ zefr?RgFAQbfE)^5^#BPaG>eGj{{8#+(W6JVZr!>KTl?_n(W5V4zI^}w9Wwm|aU^7U z!=FEYAd4WrfB*jJ)2Dau-o1MD>iP5Mj~_pVxbyby+Ynbhefsp(MX7c|Ns9F z$@>slxU=C)4zI_Wf_V(@DA3s7js340YD}c`cKY8*5E`ICQE#w;W_wV0t z-@bkI>J=HO=;zO$ckkYXn+y;0-@kv~yLS&R4q@EBeH*Ue>C>kWLCAU{$bA0y@86$4 ze-1Ga9+Jca3$hwypCT{HKuhhANC7P=0_lA6cw{OGU198CZ+qa)Rdv^c+eTYjSBs`5_+C`)YJcB=e{1{SMLp1*V`xh-Ay?OKI z9~eA%@Bp&92hA~$A3sL+5yTu)$&VjDLcI3y;X||q8gMCyg4eHKL)LUaobmYaV|d97 ziBPm$PpV5G>fup_xnShapFfbGfVk)7%a@S4ISI*S4<0g z6+*-xJ$giWGDfrX*|TSN?%ct;g74e6Z;*8R`0?YfU%x_v;_KJ15XaoUeVZ!D7|lKJ z-o3kf_b#q-9#SAbeE9I=$B&RE#HUZ6AnrjfMbXTpg!}X7&j$}4;3~}^W#j$(_u&Bu zNpkn@-J@bMMsxp*7cbtveTyat;r{sX_ckkYXCos?g-dneDxgVm7Lh{q6Psmj& znrY9TJ-dDTHavWuKY#wCT-ykfi(P&!0z+9zoiZ$R<#o{p;5+NQ3kJ`}gnOy?guiErk5}^XH#Gf9~JE4@vM} zzI=J{;ss>A8`a%_)xbZ0{y^daTz^7$IXrpt1d?DreE0xQNLaN~OYq;ne~_~7<;#~J zK7h7vAlI;Oz~JxSznIkuwH$zH4x}ge{rmT?U%!6(^a(jTfBpLP&6_trfBu979j0D7 ni~RZX=iR$^^b8z=9{lm+#~=wDf=(S(KzRsY&WMeQ&@%)8jV=j3 literal 1406 zcmZQzU}Ruq5D);-91Iz(3=Con3=A3!3=9Gc3=9ek5OD?^AkEmAA>YA~p}^6Rp~T0J zp~}yXp(Y}Rp*1Fkp)D*Z1;bLsJ;IgP9HhR z5WDX`!<7>!8Lpi?$&hp8KSSQp{|tr4{xg)F_|H&z@;^h>ss9Ysr~WfMxOR^`e3vd22TzdPT;mW)J z3|HU%XSnhHKf~9L9~o|a_|I_n<9~*SpZ_yF{raEb+1LLJFTVX}c=_!=!>jNA8Q%T) z&+zf*e}-?r|1xp)Nl znQY<(_yl;gjpGFbn79OZ1X#FO

    uS$Q?MxwJSq<5`SZZ2Xzy;~8uic;dMj;>&SBSl*u9aytlpi1O?HFlo9tG#dg$BojdqKFAhB5$uToXC~ From 91e55da7fb34ca2bd08487bc6f3e6f9ca8c44fe6 Mon Sep 17 00:00:00 2001 From: Marc Delisle 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 f5c8120fa..1095c318f 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 758d68d11..191c8d60e 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 b1a36ca42..4943561e0 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 d19216675..cbdc16196 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 97ed03a14..2a90edc14 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.