Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
July 2010
- 3 participants
- 161 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_4-5338-gf6ef0c8
by Marc Delisle 12 Jul '10
by Marc Delisle 12 Jul '10
12 Jul '10
The branch, master has been updated
via f6ef0c87a814d96cea4a1e868fcac15935deca13 (commit)
via cda9df71016cd7a85d93fbe5b38da6f532c938de (commit)
from ce2cad288666f2bfd71dc21ae8e0277288834657 (commit)
- Log -----------------------------------------------------------------
commit f6ef0c87a814d96cea4a1e868fcac15935deca13
Merge: ce2cad288666f2bfd71dc21ae8e0277288834657 cda9df71016cd7a85d93fbe5b38da6f532c938de
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Jul 12 08:57:05 2010 -0400
Merge branch 'QA_3_3'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/export/csv.php | 13 ++++++++++++-
2 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6373434..c0ce1ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -100,6 +100,7 @@ $Id$
- bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from
master, todo: update PHP excel?)
- bug #3023507 [core] No result set display from stored procedure SELECT
+- bug [export] CSV for MS Excel (Windows) should have semi-colon as separator
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/libraries/export/csv.php b/libraries/export/csv.php
index e3d78f2..d4b1811 100644
--- a/libraries/export/csv.php
+++ b/libraries/export/csv.php
@@ -70,7 +70,18 @@ function PMA_exportHeader() {
// Here we just prepare some values for export
if ($what == 'excel') {
$csv_terminated = "\015\012";
- $csv_separator = isset($GLOBALS['excel_edition']) && $GLOBALS['excel_edition'] == 'mac_excel2003' ? ';' : ',';
+ switch($GLOBALS['excel_edition']) {
+ case 'win':
+ // as tested on Windows with Excel 2002 and Excel 2007
+ $csv_separator = ';';
+ break;
+ case 'max_excel2003':
+ $csv_separator = ';';
+ break;
+ case 'max_excel2008':
+ $csv_separator = ',';
+ break;
+ }
$csv_enclosed = '"';
$csv_escaped = '"';
if (isset($GLOBALS['excel_columns'])) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_4-23-gcda9df7
by Marc Delisle 12 Jul '10
by Marc Delisle 12 Jul '10
12 Jul '10
The branch, QA_3_3 has been updated
via cda9df71016cd7a85d93fbe5b38da6f532c938de (commit)
from b55ba34d43138b11b71d8eeae6b09ea160ded213 (commit)
- Log -----------------------------------------------------------------
commit cda9df71016cd7a85d93fbe5b38da6f532c938de
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Jul 12 08:56:30 2010 -0400
bug [export] CSV for MS Excel (Windows) should have semi-colon as separator
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/export/csv.php | 13 ++++++++++++-
2 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index de56291..ab9802e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from
master, todo: update PHP excel?)
- bug #3023507 [core] No result set display from stored procedure SELECT
+- bug [export] CSV for MS Excel (Windows) should have semi-colon as separator
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/libraries/export/csv.php b/libraries/export/csv.php
index 9a8e520..ebcf0cd 100644
--- a/libraries/export/csv.php
+++ b/libraries/export/csv.php
@@ -70,7 +70,18 @@ function PMA_exportHeader() {
// Here we just prepare some values for export
if ($what == 'excel') {
$csv_terminated = "\015\012";
- $csv_separator = isset($GLOBALS['excel_edition']) && $GLOBALS['excel_edition'] == 'mac_excel2003' ? ';' : ',';
+ switch($GLOBALS['excel_edition']) {
+ case 'win':
+ // as tested on Windows with Excel 2002 and Excel 2007
+ $csv_separator = ';';
+ break;
+ case 'max_excel2003':
+ $csv_separator = ';';
+ break;
+ case 'max_excel2008':
+ $csv_separator = ',';
+ break;
+ }
$csv_enclosed = '"';
$csv_escaped = '"';
if (isset($GLOBALS['excel_columns'])) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_4-5336-gce2cad2
by Marc Delisle 11 Jul '10
by Marc Delisle 11 Jul '10
11 Jul '10
The branch, master has been updated
via ce2cad288666f2bfd71dc21ae8e0277288834657 (commit)
via b55ba34d43138b11b71d8eeae6b09ea160ded213 (commit)
via b2616ac46ddbc72ee3a03f13ee4d4ec746518274 (commit)
from 90ce4c77b38f5e51b35fea23125df861ed3bd1cc (commit)
- Log -----------------------------------------------------------------
commit ce2cad288666f2bfd71dc21ae8e0277288834657
Merge: 90ce4c77b38f5e51b35fea23125df861ed3bd1cc b55ba34d43138b11b71d8eeae6b09ea160ded213
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Jul 11 08:05:50 2010 -0400
fix merge conflicts
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 +++
libraries/db_common.inc.php | 13 ++++++++++---
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 867bebf..6373434 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -97,6 +97,9 @@ $Id$
- bug #3024344 [setup] Setup forces numeric MemoryLimit
- bug #3025975 [auth] Odd LoginCookieValidity default value
- bug #3026400 [PHP] ereg functions are deprecated
+- bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from
+master, todo: update PHP excel?)
+- bug #3023507 [core] No result set display from stored procedure SELECT
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/libraries/db_common.inc.php b/libraries/db_common.inc.php
index 955e7c8..5d16995 100644
--- a/libraries/db_common.inc.php
+++ b/libraries/db_common.inc.php
@@ -37,12 +37,19 @@ $err_url = $cfg['DefaultTabDatabase'] . '?' . PMA_generate_common_url($db);
* Ensures the database exists (else move to the "parent" script) and displays
* headers
*/
-if (!isset($is_db) || !$is_db) {
- // Not a valid db name -> back to the welcome page
+if (! isset($is_db) || ! $is_db) {
if (strlen($db)) {
$is_db = PMA_DBI_select_db($db);
+ // This "Command out of sync" 2014 error may happen, for example
+ // after calling a MySQL procedure; at this point we can't select
+ // the db but it's not necessarily wrong
+ if (PMA_DBI_getError() && $GLOBALS['errno'] == 2014) {
+ $is_db = true;
+ unset($GLOBALS['errno']);
+ }
}
- if (! strlen($db) || !$is_db) {
+ // Not a valid db name -> back to the welcome page
+ if (! strlen($db) || ! $is_db) {
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'main.php?' . PMA_generate_common_url('', '', '&') . (isset($message) ? '&message=' . urlencode($message) : '') . '&reload=1');
exit;
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_4-22-gb55ba34
by Marc Delisle 11 Jul '10
by Marc Delisle 11 Jul '10
11 Jul '10
The branch, QA_3_3 has been updated
via b55ba34d43138b11b71d8eeae6b09ea160ded213 (commit)
from b2616ac46ddbc72ee3a03f13ee4d4ec746518274 (commit)
- Log -----------------------------------------------------------------
commit b55ba34d43138b11b71d8eeae6b09ea160ded213
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Jul 11 08:00:42 2010 -0400
bug #3023507 [core] No result set display from stored procedure SELECT
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/db_common.inc.php | 13 ++++++++++---
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index fc0822b..de56291 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #3026400 [PHP] ereg functions are deprecated
- bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from
master, todo: update PHP excel?)
+- bug #3023507 [core] No result set display from stored procedure SELECT
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/libraries/db_common.inc.php b/libraries/db_common.inc.php
index 955e7c8..5d16995 100644
--- a/libraries/db_common.inc.php
+++ b/libraries/db_common.inc.php
@@ -37,12 +37,19 @@ $err_url = $cfg['DefaultTabDatabase'] . '?' . PMA_generate_common_url($db);
* Ensures the database exists (else move to the "parent" script) and displays
* headers
*/
-if (!isset($is_db) || !$is_db) {
- // Not a valid db name -> back to the welcome page
+if (! isset($is_db) || ! $is_db) {
if (strlen($db)) {
$is_db = PMA_DBI_select_db($db);
+ // This "Command out of sync" 2014 error may happen, for example
+ // after calling a MySQL procedure; at this point we can't select
+ // the db but it's not necessarily wrong
+ if (PMA_DBI_getError() && $GLOBALS['errno'] == 2014) {
+ $is_db = true;
+ unset($GLOBALS['errno']);
+ }
}
- if (! strlen($db) || !$is_db) {
+ // Not a valid db name -> back to the welcome page
+ if (! strlen($db) || ! $is_db) {
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'main.php?' . PMA_generate_common_url('', '', '&') . (isset($message) ? '&message=' . urlencode($message) : '') . '&reload=1');
exit;
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_4-21-gb2616ac
by Marc Delisle 10 Jul '10
by Marc Delisle 10 Jul '10
10 Jul '10
The branch, QA_3_3 has been updated
via b2616ac46ddbc72ee3a03f13ee4d4ec746518274 (commit)
from 20d4c3a894a70850b9bcac57a3d63af68d40ec2e (commit)
- Log -----------------------------------------------------------------
commit b2616ac46ddbc72ee3a03f13ee4d4ec746518274
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jul 10 08:01:07 2010 -0400
bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from master, todo: update PHP excel?)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
libraries/auth/swekey/swekey.auth.lib.php | 2 +-
libraries/import/csv.php | 2 +-
libraries/import/ldi.php | 2 +-
server_synchronize.php | 8 ++++----
5 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 205dd32..fc0822b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #3024344 [setup] Setup forces numeric MemoryLimit
- bug #3025975 [auth] Odd LoginCookieValidity default value
- bug #3026400 [PHP] ereg functions are deprecated
+- bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from
+master, todo: update PHP excel?)
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/libraries/auth/swekey/swekey.auth.lib.php b/libraries/auth/swekey/swekey.auth.lib.php
index f1e7c58..3dbad75 100644
--- a/libraries/auth/swekey/swekey.auth.lib.php
+++ b/libraries/auth/swekey/swekey.auth.lib.php
@@ -21,7 +21,7 @@ function Swekey_auth_check()
if ($_SESSION['SWEKEY']['ENABLED'] && empty($_SESSION['SWEKEY']['CONF_LOADED'])) {
$_SESSION['SWEKEY']['CONF_LOADED'] = true;
$_SESSION['SWEKEY']['VALID_SWEKEYS'] = array();
- $valid_swekeys = split("\n",@file_get_contents($confFile));
+ $valid_swekeys = explode("\n",@file_get_contents($confFile));
foreach ($valid_swekeys as $line) {
if (preg_match("/^[0-9A-F]{32}:.+$/", $line) != false)
{
diff --git a/libraries/import/csv.php b/libraries/import/csv.php
index f7ab3ed..193a6e1 100644
--- a/libraries/import/csv.php
+++ b/libraries/import/csv.php
@@ -101,7 +101,7 @@ if (!$analyze) {
} else {
$sql_template .= ' (';
$fields = array();
- $tmp = split(',( ?)', $csv_columns);
+ $tmp = preg_split('/,( ?)/', $csv_columns);
foreach ($tmp as $key => $val) {
if (count($fields) > 0) {
$sql_template .= ', ';
diff --git a/libraries/import/ldi.php b/libraries/import/ldi.php
index 77ba0c1..f939a2d 100644
--- a/libraries/import/ldi.php
+++ b/libraries/import/ldi.php
@@ -90,7 +90,7 @@ if ($skip_queries > 0) {
}
if (strlen($ldi_columns) > 0) {
$sql .= ' (';
- $tmp = split(',( ?)', $ldi_columns);
+ $tmp = preg_split('/,( ?)/', $ldi_columns);
$cnt_tmp = count($tmp);
for ($i = 0; $i < $cnt_tmp; $i++) {
if ($i > 0) {
diff --git a/server_synchronize.php b/server_synchronize.php
index 8e4a701..a3c3266 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -535,20 +535,20 @@ if (isset($_REQUEST['Table_ids'])) {
for ($i = 0; isset($_REQUEST[$i]); $i++ ) {
if (isset($_REQUEST[$i])) {
- $table_id = split("US", $_REQUEST[$i]);
+ $table_id = explode("US", $_REQUEST[$i]);
if (isset($table_id[1])) {
$uncommon_table_structure_diff[] = $table_id[1];
}
- $table_id = split("UD", $_REQUEST[$i]);
+ $table_id = explode("UD", $_REQUEST[$i]);
if (isset($table_id[1])) {
$uncommon_table_data_diff[] = $table_id[1];
}
- $table_id = split("MS", $_REQUEST[$i]);
+ $table_id = explode("MS", $_REQUEST[$i]);
if (isset($table_id[1])) {
$matching_table_structure_diff[] = $table_id[1];
}
- $table_id = split("MD", $_REQUEST[$i]);
+ $table_id = explode("MD", $_REQUEST[$i]);
if (isset($table_id[1])) {
$matching_table_data_diff[] = $table_id[1];
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_4-5333-g90ce4c7
by Marc Delisle 08 Jul '10
by Marc Delisle 08 Jul '10
08 Jul '10
The branch, master has been updated
via 90ce4c77b38f5e51b35fea23125df861ed3bd1cc (commit)
from c1be602a1edf316ce75234cdca36c4a60ba16aa3 (commit)
- Log -----------------------------------------------------------------
commit 90ce4c77b38f5e51b35fea23125df861ed3bd1cc
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Jul 8 08:29:27 2010 -0400
clarify code
-----------------------------------------------------------------------
Summary of changes:
db_structure.php | 20 ++++++++++----------
libraries/replication.inc.php | 15 +++++++++------
2 files changed, 19 insertions(+), 16 deletions(-)
diff --git a/db_structure.php b/db_structure.php
index 90b7824..e99cfa3 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -360,24 +360,24 @@ foreach ($tables as $keyname => $each_table) {
) {
$do = true;
}
- foreach ($server_slave_Wild_Do_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (preg_match("@^" . substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true)) - 1) . "@", $truename)))
+ foreach ($server_slave_Wild_Do_Table as $db_table) {
+ $table_part = PMA_extract_db_or_table($db_table, 'table');
+ if (($db == PMA_extract_db_or_table($db_table, 'db')) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
$do = true;
+ }
}
////////////////////////////////////////////////////////////////////
if ((strlen(array_search($truename, $server_slave_Ignore_Table)) > 0) || (strlen(array_search($db, $server_slave_Ignore_DB)) > 0)) {
$ignored = true;
}
- foreach ($server_slave_Wild_Ignore_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (preg_match("@^" . substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true)) - 1) . "@", $truename)))
+ foreach ($server_slave_Wild_Ignore_Table as $db_table) {
+ $table_part = PMA_extract_db_or_table($db_table, 'table');
+ if (($db == PMA_extract_db_or_table($db_table)) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
$ignored = true;
+ }
}
- }/* elseif ($server_master_status) {
- if ((strlen(array_search($db, $server_master_Do_DB))>0) || count($server_master_Do_DB)==1)
- $do = true;
- elseif ((strlen(array_search($db, $server_master_Ignore_DB))>0) || count($server_master_Ignore_DB)==1)
- $ignored = true;
- }*/
+ unset($table_part);
+ }
?>
<tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
<td align="center">
diff --git a/libraries/replication.inc.php b/libraries/replication.inc.php
index f2681a6..7b8ca0a 100644
--- a/libraries/replication.inc.php
+++ b/libraries/replication.inc.php
@@ -116,14 +116,17 @@ foreach ($replication_types as $type) {
/**
- * @param $string -
- * @param $table -
- * @return
+ * @param $string contains "dbname.tablename"
+ * @param $what what to extract (db|table)
+ * @return $string the extracted part
*/
-function PMA_replication_strout($string, $table = false) {
+function PMA_extract_db_or_table($string, $what = 'db') {
$list = explode(".", $string);
-
- return $list[(int)$table];
+ if ('db' == $what) {
+ return $list[0];
+ } else {
+ return $list[1];
+ }
}
/**
* @param String $action - possible values: START or STOP
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_4-5332-gc1be602
by Marc Delisle 08 Jul '10
by Marc Delisle 08 Jul '10
08 Jul '10
The branch, master has been updated
via c1be602a1edf316ce75234cdca36c4a60ba16aa3 (commit)
via 20d4c3a894a70850b9bcac57a3d63af68d40ec2e (commit)
from 638fe75a8b36df3049d4cc1dec7e734c71feff6c (commit)
- Log -----------------------------------------------------------------
commit c1be602a1edf316ce75234cdca36c4a60ba16aa3
Merge: 638fe75a8b36df3049d4cc1dec7e734c71feff6c 20d4c3a894a70850b9bcac57a3d63af68d40ec2e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Jul 8 07:52:47 2010 -0400
fix merge conflicts
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
db_structure.php | 4 ++--
libraries/import.lib.php | 18 +++++++++---------
3 files changed, 12 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 61d2c52..867bebf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -96,6 +96,7 @@ $Id$
- bug [js] Avoid loading twice a js file
- bug #3024344 [setup] Setup forces numeric MemoryLimit
- bug #3025975 [auth] Odd LoginCookieValidity default value
+- bug #3026400 [PHP] ereg functions are deprecated
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/db_structure.php b/db_structure.php
index 65b78b7..90b7824 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -361,7 +361,7 @@ foreach ($tables as $keyname => $each_table) {
$do = true;
}
foreach ($server_slave_Wild_Do_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
+ if (($db == PMA_replication_strout($table)) && (preg_match("@^" . substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true)) - 1) . "@", $truename)))
$do = true;
}
////////////////////////////////////////////////////////////////////
@@ -369,7 +369,7 @@ foreach ($tables as $keyname => $each_table) {
$ignored = true;
}
foreach ($server_slave_Wild_Ignore_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
+ if (($db == PMA_replication_strout($table)) && (preg_match("@^" . substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true)) - 1) . "@", $truename)))
$ignored = true;
}
}/* elseif ($server_master_status) {
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 2b5d80b..e012287 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -831,8 +831,8 @@ $import_notice = NULL;
* @uses SIZES
* @uses strcmp()
* @uses count()
- * @uses ereg()
- * @uses ereg_replace()
+ * @uses preg_match()
+ * @uses preg_replace()
* @uses PMA_isView()
* @uses PMA_backquote()
* @uses PMA_importRunQuery()
@@ -903,17 +903,17 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
*
* $pattern = 'CREATE (TABLE|VIEW|TRIGGER|FUNCTION|PROCEDURE)';
*/
- $pattern = 'CREATE .*(TABLE)';
+ $pattern = '/CREATE .*(TABLE)/';
$replacement = 'CREATE \\1 IF NOT EXISTS';
/* Change CREATE statements to CREATE IF NOT EXISTS to support inserting into existing structures */
for ($i = 0; $i < $additional_sql_len; ++$i) {
- $additional_sql[$i] = ereg_replace($pattern, $replacement, $additional_sql[$i]);
+ $additional_sql[$i] = preg_replace($pattern, $replacement, $additional_sql[$i]);
/* Execute the resulting statements */
PMA_importRunQuery($additional_sql[$i], $additional_sql[$i]);
}
}
-
+
if ($analyses != NULL) {
$type_array = array(NONE => "NULL", VARCHAR => "varchar", INT => "int", DECIMAL => "decimal");
@@ -1038,8 +1038,8 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
/* Add the viewable structures from $additional_sql to $tables so they are also displayed */
- $view_pattern = 'VIEW `[^`]+`\.`([^`]+)';
- $table_pattern = 'CREATE TABLE IF NOT EXISTS `([^`]+)`';
+ $view_pattern = '@VIEW `[^`]+`\.`([^`]+)@';
+ $table_pattern = '@CREATE TABLE IF NOT EXISTS `([^`]+)`@';
/* Check a third pattern to make sure its not a "USE `db_name`;" statement */
$regs = array();
@@ -1048,10 +1048,10 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$additional_sql_len = count($additional_sql);
for ($i = 0; $i < $additional_sql_len; ++$i) {
- ereg($view_pattern, $additional_sql[$i], $regs);
+ preg_match($view_pattern, $additional_sql[$i], $regs);
if (count($regs) == 0) {
- ereg($table_pattern, $additional_sql[$i], $regs);
+ preg_match($table_pattern, $additional_sql[$i], $regs);
}
if (count($regs)) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_4-20-g20d4c3a
by Marc Delisle 08 Jul '10
by Marc Delisle 08 Jul '10
08 Jul '10
The branch, QA_3_3 has been updated
via 20d4c3a894a70850b9bcac57a3d63af68d40ec2e (commit)
from 104b0ee99ac77845511c91dcaefe4f315c3c4435 (commit)
- Log -----------------------------------------------------------------
commit 20d4c3a894a70850b9bcac57a3d63af68d40ec2e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Jul 8 07:49:11 2010 -0400
bug #3026400 [PHP] ereg functions are deprecated
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
db_structure.php | 12 ++++++------
libraries/import.lib.php | 18 +++++++++---------
3 files changed, 16 insertions(+), 15 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 9da63ad..205dd32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug [js] Avoid loading twice a js file
- bug #3024344 [setup] Setup forces numeric MemoryLimit
- bug #3025975 [auth] Odd LoginCookieValidity default value
+- bug #3026400 [PHP] ereg functions are deprecated
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/db_structure.php b/db_structure.php
index 845ffd3..2171ea5 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -349,26 +349,26 @@ foreach ($tables as $keyname => $each_table) {
$ignored = false;
$do = false;
-
+
if ($server_slave_status) {
////////////////////////////////////////////////////////////////
if ((strlen(array_search($truename, $server_slave_Do_Table)) > 0)
- || (strlen(array_search($db, $server_slave_Do_DB))>0)
- || (count($server_slave_Do_DB)==1 && count($server_slave_Ignore_DB)==1)
+ || (strlen(array_search($db, $server_slave_Do_DB)) > 0)
+ || (count($server_slave_Do_DB) == 1 && count($server_slave_Ignore_DB) == 1)
) {
$do = true;
}
foreach ($server_slave_Wild_Do_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
+ if (($db == PMA_replication_strout($table)) && (preg_match("@^" . substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true)) - 1) . "@", $truename)))
$do = true;
}
////////////////////////////////////////////////////////////////////
- if ((strlen(array_search($truename, $server_slave_Ignore_Table))>0) || (strlen(array_search($db, $server_slave_Ignore_DB))>0)) {
+ if ((strlen(array_search($truename, $server_slave_Ignore_Table)) > 0) || (strlen(array_search($db, $server_slave_Ignore_DB)) > 0)) {
$ignored = true;
}
foreach ($server_slave_Wild_Ignore_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
+ if (($db == PMA_replication_strout($table)) && (preg_match("@^" . substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true)) - 1) . "@", $truename)))
$ignored = true;
}
}/* elseif ($server_master_status) {
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 58f3fd1..56caeeb 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -840,8 +840,8 @@ $import_notice = NULL;
* @uses SIZES
* @uses strcmp()
* @uses count()
- * @uses ereg()
- * @uses ereg_replace()
+ * @uses preg_match()
+ * @uses preg_replace()
* @uses PMA_isView()
* @uses PMA_backquote()
* @uses PMA_importRunQuery()
@@ -912,17 +912,17 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
*
* $pattern = 'CREATE (TABLE|VIEW|TRIGGER|FUNCTION|PROCEDURE)';
*/
- $pattern = 'CREATE .*(TABLE)';
+ $pattern = '/CREATE .*(TABLE)/';
$replacement = 'CREATE \\1 IF NOT EXISTS';
/* Change CREATE statements to CREATE IF NOT EXISTS to support inserting into existing structures */
for ($i = 0; $i < $additional_sql_len; ++$i) {
- $additional_sql[$i] = ereg_replace($pattern, $replacement, $additional_sql[$i]);
+ $additional_sql[$i] = preg_replace($pattern, $replacement, $additional_sql[$i]);
/* Execute the resulting statements */
PMA_importRunQuery($additional_sql[$i], $additional_sql[$i]);
}
}
-
+
if ($analyses != NULL) {
$type_array = array(NONE => "NULL", VARCHAR => "varchar", INT => "int", DECIMAL => "decimal");
@@ -1047,8 +1047,8 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
/* Add the viewable structures from $additional_sql to $tables so they are also displayed */
- $view_pattern = 'VIEW `[^`]+`\.`([^`]+)';
- $table_pattern = 'CREATE TABLE IF NOT EXISTS `([^`]+)`';
+ $view_pattern = '@VIEW `[^`]+`\.`([^`]+)@';
+ $table_pattern = '@CREATE TABLE IF NOT EXISTS `([^`]+)`@';
/* Check a third pattern to make sure its not a "USE `db_name`;" statement */
$regs = array();
@@ -1057,10 +1057,10 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$additional_sql_len = count($additional_sql);
for ($i = 0; $i < $additional_sql_len; ++$i) {
- ereg($view_pattern, $additional_sql[$i], $regs);
+ preg_match($view_pattern, $additional_sql[$i], $regs);
if (count($regs) == 0) {
- ereg($table_pattern, $additional_sql[$i], $regs);
+ preg_match($table_pattern, $additional_sql[$i], $regs);
}
if (count($regs)) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. f6ad8ec94f5cb6326f888bd18042d3cddcfc0715
by Michal Čihař 07 Jul '10
by Michal Čihař 07 Jul '10
07 Jul '10
The branch, master has been updated
via f6ad8ec94f5cb6326f888bd18042d3cddcfc0715 (commit)
from 6732b6705b2c0b5a94288f64d45b5c5607d028ba (commit)
- Log -----------------------------------------------------------------
commit f6ad8ec94f5cb6326f888bd18042d3cddcfc0715
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Jul 7 15:55:24 2010 +0200
Update to match current master.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 16 ++++++++--------
output/en_GB/Documentation.html | 16 ++++++++--------
output/fr/Documentation.html | 32 ++++++++++++++------------------
output/it/Documentation.html | 17 ++++++++---------
output/ja/Documentation.html | 16 ++++++++--------
output/pl/Documentation.html | 16 ++++++++--------
output/pt_BR/Documentation.html | 16 ++++++++--------
output/zh_CN/Documentation.html | 20 +++++++++++---------
po/ca.po | 19 +++++++++----------
po/cs.po | 21 +++++++++++----------
po/de.po | 20 ++++++++++----------
po/en_GB.po | 23 +++++++++++++----------
po/es.po | 20 ++++++++++----------
po/fi.po | 19 +++++++++----------
po/fr.po | 23 +++++++++++++----------
po/gl.po | 19 +++++++++----------
po/hu.po | 19 +++++++++----------
po/hy.po | 19 +++++++++----------
po/it.po | 21 +++++++++++----------
po/ja.po | 19 +++++++++----------
po/ka.po | 19 +++++++++----------
po/lt.po | 19 +++++++++----------
po/mn.po | 19 +++++++++----------
po/nb.po | 19 +++++++++----------
po/nl.po | 19 +++++++++----------
po/pl.po | 19 +++++++++----------
po/pt_BR.po | 21 +++++++++++----------
po/ro.po | 19 +++++++++----------
po/sk.po | 19 +++++++++----------
po/sv.po | 19 +++++++++----------
po/tr.po | 19 +++++++++----------
po/zh_CN.po | 22 ++++++++++++----------
po/zh_TW.po | 19 +++++++++----------
pot/ca-full.pot | 19 +++++++++----------
pot/ca-html.pot | 18 +++++++++---------
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 19 +++++++++----------
pot/cs-html.pot | 18 +++++++++---------
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 19 +++++++++----------
pot/de-html.pot | 18 +++++++++---------
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 19 +++++++++----------
pot/en_GB-html.pot | 18 +++++++++---------
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 19 +++++++++----------
pot/es-html.pot | 18 +++++++++---------
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 19 +++++++++----------
pot/fi-html.pot | 18 +++++++++---------
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 19 +++++++++----------
pot/fr-html.pot | 18 +++++++++---------
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 19 +++++++++----------
pot/gl-html.pot | 18 +++++++++---------
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 19 +++++++++----------
pot/hu-html.pot | 18 +++++++++---------
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 19 +++++++++----------
pot/hy-html.pot | 18 +++++++++---------
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 19 +++++++++----------
pot/it-html.pot | 18 +++++++++---------
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 19 +++++++++----------
pot/ja-html.pot | 18 +++++++++---------
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 19 +++++++++----------
pot/ka-html.pot | 18 +++++++++---------
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 19 +++++++++----------
pot/lt-html.pot | 18 +++++++++---------
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 19 +++++++++----------
pot/mn-html.pot | 18 +++++++++---------
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 19 +++++++++----------
pot/nb-html.pot | 18 +++++++++---------
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 19 +++++++++----------
pot/nl-html.pot | 18 +++++++++---------
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 19 +++++++++----------
pot/pl-html.pot | 18 +++++++++---------
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 19 +++++++++----------
pot/pt_BR-html.pot | 18 +++++++++---------
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 19 +++++++++----------
pot/ro-html.pot | 18 +++++++++---------
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 19 +++++++++----------
pot/sk-html.pot | 18 +++++++++---------
pot/sk-txt.pot | 2 +-
pot/sv-full.pot | 19 +++++++++----------
pot/sv-html.pot | 18 +++++++++---------
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 19 +++++++++----------
pot/tr-html.pot | 18 +++++++++---------
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 19 +++++++++----------
pot/zh_CN-html.pot | 18 +++++++++---------
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 19 +++++++++----------
pot/zh_TW-html.pot | 18 +++++++++---------
pot/zh_TW-txt.pot | 2 +-
108 files changed, 792 insertions(+), 826 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index 65b7b29..f0c9405 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -400,8 +400,8 @@ nepoužíváte protokol HTTPS.<br />
V režimu cookie je heslo uloženo, zakódováno algoritmem blowfish, v dočasné
cookie.</li>
- <li id="pmausr">V režimu cookie je heslo uloženo, zakódováno algoritmem blowfish, v dočasné
-cookie.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
modes, phpMyAdmin needs a controluser that has <b>only</b> the
@@ -706,9 +706,9 @@ string
<dd>This special account is used for 2 distinct purposes: to make possible all
relational features (see <a href="#pmadb"
class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
-server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to
-enable a multi-user installation (<abbr title="HyperText Transfer
-Protocol">HTTP</abbr> or cookie authentication mode).<br /><br />
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication modes (or 'config' authentication mode since phpMyAdmin
@@ -1353,7 +1353,7 @@ Synchronize feature but has no effect when PHP is running in safe mode.</dd>
href="http://php.net/session_save_path">session_save_path PHP
parameter</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] číslo [number of bytes]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Set the number of bytes a script is allowed to allocate. If set to zero, no
limit is imposed.<br />
This setting is used while importing/exporting dump files and at some other
@@ -1398,8 +1398,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] číslo [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/output/en_GB/Documentation.html b/output/en_GB/Documentation.html
index 2c5f11b..03d6948 100644
--- a/output/en_GB/Documentation.html
+++ b/output/en_GB/Documentation.html
@@ -402,8 +402,8 @@ are using the HTTPS protocol.<br />
In cookie mode, the password is stored, encrypted with the blowfish
algorithm, in a temporary cookie.</li>
- <li id="pmausr">Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
-your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
modes, phpMyAdmin needs a controluser that has <b>only</b> the
@@ -707,9 +707,9 @@ string
<dd>This special account is used for 2 distinct purposes: to make possible all
relational features (see <a href="#pmadb"
class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
-server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to
-enable a multi-user installation (<abbr title="HyperText Transfer
-Protocol">HTTP</abbr> or cookie authentication mode).<br /><br />
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication modes (or 'config' authentication mode since phpMyAdmin
@@ -1354,7 +1354,7 @@ Synchronise feature but has no effect when PHP is running in safe mode.</dd>
href="http://php.net/session_save_path">session_save_path PHP
parameter</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] integer [number of bytes]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Set the number of bytes a script is allowed to allocate. If set to zero, no
limit is imposed.<br />
This setting is used while importing/exporting dump files and at some other
@@ -1399,8 +1399,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/output/fr/Documentation.html b/output/fr/Documentation.html
index c6150b3..57d4b3d 100644
--- a/output/fr/Documentation.html
+++ b/output/fr/Documentation.html
@@ -482,9 +482,8 @@ clair, à moins d'utiliser le protocole HTTPS.<br />
En mode cookie, le mot de passe est stocké et chiffré avec
l'algorithme blowfish, dans un cookie temporaire.</li>
- <li id="pmausr"><b>Note </b>: À partir de la version 2.6.1 de phpMyAdmin, cette
-section ne s'applique qu'aux serveurs MySQL exécutés avec
-l'option <tt>--skip-show-database</tt>.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
Pour les modes <abbr title="HyperText Transfer Protocol">HTTP</abbr> et
cookie, phpMyAdmin a besoin d'un utilisateur de contrôle -
@@ -849,14 +848,12 @@ chaîne<br />
<span id="cfg_Servers_controlpass">$cfg['Servers'][$i]['controlpass']</span>
chaîne
</dt>
- <dd>Ce compte spécial est utilisé pour deux propos
-distincts : rendre possible toutes les fonctionnalités
-relationnelles (voir <a href="#pmadb"
-class="configrule">$cfg['Servers'][$i]['pmadb']</a>) et, pour un serveur
-MySQL de version inférieure à 4.1.2 ou exécuté
-avec l'option <tt>--skip-show-database</tt>, permettre une installation
-multi-utilisateurs (mode d'authentification <abbr title="HyperText Transfer
-Protocol">HTTP</abbr> ou par cookie).<br /><br />
+ <dd>This special account is used for 2 distinct purposes: to make possible all
+relational features (see <a href="#pmadb"
+class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
Si vous utilisez les modes d'authentification <abbr title="HyperText
Transfer Protocol">HTTP</abbr> ou par cookie (ou le mode d'authentification
@@ -1598,7 +1595,7 @@ effet lorsque PHP est exécuté en mode sécurisé.</dd>
href="http://php.net/session_save_path">paramètre PHP
session_save_path</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] entier ['nombre d'octets']</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Définit le nombre d'octets qu'un script est autorisé à
allouer. Si ce nombre est défini à zéro, aucune limite
n'est imposée.<br />
@@ -1650,13 +1647,12 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
</dd>
<dt id="cfg_LoginCookieValidity">$cfg['LoginCookieValidity'] entier ['nombre de secondes']</dt>
- <dd>Définit la durée de validité d'un cookie de
-connexion. Veuillez notez que l'option de configuration php <a
+ <dd>Define how long is login cookie valid. Please note that php configuration
+option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
-pourrait limiter la validité de session, et si la session est perdue, le
-cookie de connexion est aussi invalidé. Il est donc conseillé de définir
-<code>session.gc_maxlifetime</code> au moins aussi haut que la valeur de
-$cfg['LoginCookieValidity'].</dd>
+might limit session validity and if session is lost, login cookie is also
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] entier ['nombre de secondes']</dt>
<dd>Définit la durée de stockage d'un cookie de connexion dans
diff --git a/output/it/Documentation.html b/output/it/Documentation.html
index ce4ef88..601e8ff 100644
--- a/output/it/Documentation.html
+++ b/output/it/Documentation.html
@@ -431,9 +431,8 @@ chiaro, a meno che tu non stia utilizzando un protocollo HTTPS.<br />
Con i cookie, invece, la password è salvata in formato criptato, utilizzando
l'algoritmo blowfish, all'interno della cartella dei cookie.</li>
- <li id="pmausr">Nota: a partire da phpMyAdmin 2.6.1, questa sezione è valida solo se il
-server MySQL è in esecuzione con l'opzione <tt>-skip-show-database</tt>
-attivata.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
Per le modalità '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' e
'cookie', phpMyAdmin necessita di un controluser che abbia
@@ -744,9 +743,9 @@ string
<dd>This special account is used for 2 distinct purposes: to make possible all
relational features (see <a href="#pmadb"
class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
-server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to
-enable a multi-user installation (<abbr title="HyperText Transfer
-Protocol">HTTP</abbr> or cookie authentication mode).<br /><br />
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication modes (or 'config' authentication mode since phpMyAdmin
@@ -1392,7 +1391,7 @@ Synchronize feature but has no effect when PHP is running in safe mode.</dd>
href="http://php.net/session_save_path">session_save_path PHP
parameter</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] integer [number of bytes]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Set the number of bytes a script is allowed to allocate. If set to zero, no
limit is imposed.<br />
This setting is used while importing/exporting dump files and at some other
@@ -1437,8 +1436,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index f0f482c..f3ff3e8 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -396,8 +396,8 @@ need to be set in the phpMyAdmin configuration file (except possibly for the
ただし、お忘れなく。HTTPS プロトコルを使わない限り、パスワードはプレーンテキストのままやりとりされます。<br />
また、クッキーモードでは、パスワードは blowfish アルゴリズムで暗号化されますが、クッキー用の一時ファイルに保管されます。</li>
- <li id="pmausr">Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
-your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
modes, phpMyAdmin needs a controluser that has <b>only</b> the
@@ -684,9 +684,9 @@ string
<dd>This special account is used for 2 distinct purposes: to make possible all
relational features (see <a href="#pmadb"
class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
-server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to
-enable a multi-user installation (<abbr title="HyperText Transfer
-Protocol">HTTP</abbr> or cookie authentication mode).<br /><br />
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication modes (or 'config' authentication mode since phpMyAdmin
@@ -1386,7 +1386,7 @@ Synchronize feature but has no effect when PHP is running in safe mode.</dd>
href="http://php.net/session_save_path">session_save_path PHP
parameter</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] integer [number of bytes]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Set the number of bytes a script is allowed to allocate. If set to zero, no
limit is imposed.<br />
This setting is used while importing/exporting dump files and at some other
@@ -1429,8 +1429,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index 9d6d138..f376515 100644
--- a/output/pl/Documentation.html
+++ b/output/pl/Documentation.html
@@ -402,8 +402,8 @@ HTTPS - jest przesyłane czystym tekstem.<br />
W trybie cookie hasło, zakodowane algorytmem blowfish, jest przechowywane w
tymczasowym ciasteczku.</li>
- <li id="pmausr">Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
-your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
modes, phpMyAdmin needs a controluser that has <b>only</b> the
@@ -707,9 +707,9 @@ string
<dd>This special account is used for 2 distinct purposes: to make possible all
relational features (see <a href="#pmadb"
class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
-server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to
-enable a multi-user installation (<abbr title="HyperText Transfer
-Protocol">HTTP</abbr> or cookie authentication mode).<br /><br />
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication modes (or 'config' authentication mode since phpMyAdmin
@@ -1357,7 +1357,7 @@ Synchronize feature but has no effect when PHP is running in safe mode.</dd>
href="http://php.net/session_save_path">session_save_path PHP
parameter</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] integer [number of bytes]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Set the number of bytes a script is allowed to allocate. If set to zero, no
limit is imposed.<br />
This setting is used while importing/exporting dump files and at some other
@@ -1402,8 +1402,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index b2e9d51..f8a1040 100644
--- a/output/pt_BR/Documentation.html
+++ b/output/pt_BR/Documentation.html
@@ -419,8 +419,8 @@ esteja usando o protocolo HTTPS.<br />
No modo cookie, a senha é armazenada, encriptada com o algoritmo blowfish,
em um cookie temporário.</li>
- <li id="pmausr">Nota: iniciando com o phpMyAdmin 2.6.1, esta seção é apenas aplicada se o
-seu servidor MySQL estiver rodando com <tt>--skip-show-database</tt>.<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
modes, phpMyAdmin needs a controluser that has <b>only</b> the
@@ -725,9 +725,9 @@ string
<dd>This special account is used for 2 distinct purposes: to make possible all
relational features (see <a href="#pmadb"
class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
-server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to
-enable a multi-user installation (<abbr title="HyperText Transfer
-Protocol">HTTP</abbr> or cookie authentication mode).<br /><br />
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication modes (or 'config' authentication mode since phpMyAdmin
@@ -1372,7 +1372,7 @@ Synchronize feature but has no effect when PHP is running in safe mode.</dd>
href="http://php.net/session_save_path">session_save_path PHP
parameter</a>).</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] inteiro [número de bytes]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>Set the number of bytes a script is allowed to allocate. If set to zero, no
limit is imposed.<br />
This setting is used while importing/exporting dump files and at some other
@@ -1417,8 +1417,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] inteiro [número de segundos]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/output/zh_CN/Documentation.html b/output/zh_CN/Documentation.html
index df57b1d..d57f27a 100644
--- a/output/zh_CN/Documentation.html
+++ b/output/zh_CN/Documentation.html
@@ -326,8 +326,8 @@ Protocol)">HTTP</abbr> 或 cookie 认证,用户名和密码也不会被保存
不论如何,如果你不使用 HTTPS 协议,密码将总是以明文传输。<br />
当使用 cookie 认证时,密码将经过 blowfish 算法加密并保存在一个临时 cookie 中。</li>
- <li id="pmausr">注意: 自 phpMyAdmin 2.6.1 起,本节仅适用于运行在 <tt>--skip-show-database</tt> 模式下的 MySQL
-服务器。<br /><br />
+ <li id="pmausr">Note: this section is only applicable if your MySQL server is running with
+<tt>--skip-show-database</tt>.<br /><br />
当使用 '<abbr title="超文本转移协议 (HyperText Transfer Protocol)">HTTP</abbr>' 和
'cookie' 认证时,phpMyAdmin 需要一个在 <i>`mysql`.`user` (除 `Password`
@@ -559,10 +559,12 @@ class="configrule">$cfg['Servers'][$i]['host']</a> 设为 "127.0.0.1"
<span id="cfg_Servers_controlpass">$cfg['Servers'][$i]['controlpass']</span>
字符串
</dt>
- <dd>这个特殊的帐号有两种不同的用途: 1、为链接表的附加功能提供支持 (参见 <a href="#pmadb"
-class="configrule">$cfg['Servers'][$i]['pmadb']</a>)。2、在 4.1.2 及更低版本或运行于
-<tt>--skip-show-database</tt> 模式的 MySQL 服务器上使用多用户安装提供支持 (<abbr
-title="超文本转移协议 (HyperText Transfer Protocol)">HTTP</abbr> 或 cookie 认证)。<br /><br />
+ <dd>This special account is used for 2 distinct purposes: to make possible all
+relational features (see <a href="#pmadb"
+class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL
+server running with <tt>--skip-show-database</tt>, to enable a multi-user
+installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or
+cookie authentication mode).<br /><br />
当使用 <abbr title="超文本转移协议 (HyperText Transfer Protocol)">HTTP</abbr> 或 cookie
认证时 (自 2.2.1 起也包括 'config' 认证),你需要提供一个在 <i>mysql.user (除了
@@ -1099,7 +1101,7 @@ Protocol)">HTTP</abbr> 传输。<br />
<dd>保存会话数据的路径 (<a href="http://php.net/session_save_path">PHP 参数
session_save_path (外链,英语)</a>)。</dd>
- <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] 整数 [单位: 字节]</dt>
+ <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt>
<dd>设置脚本运行的可使用的内存。若设为 0 则无限制。<br />
本设置用于导入/导出转储文件以及 phpMyAdmin 的其他功能,所以显然不要设置一个很小的值。若 PHP 运行于安全模式则无效。<br />
同样可以设置为 php.ini 中可以识别的字符串,如 '16M' 。请确保没有丢掉后缀 (16 表示 16 字节!)</dd>
@@ -1140,8 +1142,8 @@ href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
option <a
href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a>
might limit session validity and if session is lost, login cookie is also
-invalidated. So it is good idea to set <code>session.gc_maxlifetime</code>
-at least as high is $cfg['LoginCookieValidity'] is set.</dd>
+invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code>
+not lower than the value of $cfg['LoginCookieValidity'].</dd>
<dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
<dd>Define how long is login cookie should be stored in browser. Default 0 means
diff --git a/po/ca.po b/po/ca.po
index c809360..e9659f1 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-20 16:12+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: none\n"
@@ -829,8 +829,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1465,10 +1465,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2701,7 +2700,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2817,8 +2816,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/cs.po b/po/cs.po
index fed01a9..b587299 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: po 4a\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-04-30 10:50+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Czech <cs(a)li.org>\n"
@@ -919,9 +919,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"V režimu cookie je heslo uloženo, zakódováno algoritmem blowfish, v dočasné "
"cookie."
@@ -1572,10 +1573,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2876,7 +2876,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+#, fuzzy
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "$cfg['MemoryLimit'] číslo [number of bytes]"
#. type: Content of: <html><body><div><dl><dd>
@@ -2992,8 +2993,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/de.po b/po/de.po
index a841f47..76c156f 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-08-10 11:41+0200\n"
"Last-Translator: Sören Spreng <soeren.spreng(a)gmail.com>\n"
"Language-Team: none\n"
@@ -1079,9 +1079,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"Anmerkung: Ab phpMyAdmin 2.6.1 ist dieser Abschnitt nur noch relevant, wenn "
"der MySQL Server mit <tt>--skip-show-database</tt> läuft."
@@ -1910,10 +1911,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3177,7 +3177,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3293,8 +3293,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/en_GB.po b/po/en_GB.po
index 1ee4a12..5689d0b 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1045,9 +1045,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
"your MySQL server is running with <tt>--skip-show-database</tt>."
@@ -1885,13 +1886,13 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:715
+#, fuzzy
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
@@ -3512,7 +3513,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+#, fuzzy
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "$cfg['MemoryLimit'] integer [number of bytes]"
#. type: Content of: <html><body><div><dl><dd>
@@ -3649,13 +3651,14 @@ msgstr "$cfg['LoginCookieValidity'] integer [number of seconds]"
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:1361
+#, fuzzy
msgid ""
"Define how long is login cookie valid. Please note that php configuration "
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
"Define how long is login cookie valid. Please note that php configuration "
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
diff --git a/po/es.po b/po/es.po
index 79f69d8..bb3c8dc 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-29 16:12+0200\n"
"Last-Translator: Alberto Luaces <aluaces(a)udc.es>\n"
"Language-Team: none\n"
@@ -1066,9 +1066,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"Nota: a partir de phpMyAdmin 2.6.1, esta sección es válida únicamente si su "
"servidor MySQL se está ejecutando con la opción <tt>--skip-show-database</"
@@ -1856,10 +1857,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3102,7 +3102,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3218,8 +3218,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/fi.po b/po/fi.po
index 59a3b93..1a8865d 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -807,8 +807,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1443,10 +1443,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2679,7 +2678,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2795,8 +2794,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/fr.po b/po/fr.po
index 73cf6c9..1ee8d39 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: 2010-06-05 22:49+0200\n"
"Last-Translator: Cédric Corazza <cedric.corazza(a)wanadoo.fr>\n"
"Language-Team: none\n"
@@ -1126,9 +1126,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"<b>Note </b>: À partir de la version 2.6.1 de phpMyAdmin, cette "
"section ne s'applique qu'aux serveurs MySQL exécutés avec "
@@ -2036,13 +2037,13 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:715
+#, fuzzy
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
"Ce compte spécial est utilisé pour deux propos "
"distincts : rendre possible toutes les fonctionnalités "
@@ -3786,7 +3787,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+#, fuzzy
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "$cfg['MemoryLimit'] entier ['nombre d'octets']"
#. type: Content of: <html><body><div><dl><dd>
@@ -3934,13 +3936,14 @@ msgstr "$cfg['LoginCookieValidity'] entier ['nombre de secondes']"
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:1361
+#, fuzzy
msgid ""
"Define how long is login cookie valid. Please note that php configuration "
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
"Définit la durée de validité d'un cookie de connexion. "
"Veuillez notez que l'option de configuration php <a href=\"http://php.net/"
diff --git a/po/gl.po b/po/gl.po
index 612b86e..db6000c 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/hu.po b/po/hu.po
index 495be1a..e4772a6 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -807,8 +807,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1443,10 +1443,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2679,7 +2678,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2795,8 +2794,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/hy.po b/po/hy.po
index 9d2ca83..1a02c6d 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-04-11 10:05+0200\n"
"Last-Translator: <keepitg(a)mail.ru>\n"
"Language-Team: none\n"
@@ -819,8 +819,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1457,10 +1457,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2693,7 +2692,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2809,8 +2808,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/it.po b/po/it.po
index 9a015a6..0490f94 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: 2010-03-10 19:42+0200\n"
"Last-Translator: <fantonifabio(a)tiscali.it>\n"
"Language-Team: Italian <it(a)li.org>\n"
@@ -1083,9 +1083,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"Nota: a partire da phpMyAdmin 2.6.1, questa sezione è valida solo se il "
"server MySQL è in esecuzione con l'opzione <tt>-skip-show-database</tt> "
@@ -1879,10 +1880,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3425,7 +3425,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+#, fuzzy
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "$cfg['MemoryLimit'] integer [number of bytes]"
#. type: Content of: <html><body><div><dl><dd>
@@ -3564,8 +3565,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/ja.po b/po/ja.po
index 832cffd..f6b910a 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: 2010-03-18 19:12+0200\n"
"Last-Translator: <okinawa11(a)hotmail.com>\n"
"Language-Team: Japan <jp(a)li.org>\n"
@@ -938,8 +938,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1766,10 +1766,9 @@ msgstr "<b>$cfg['Servers'][$i]['controlpass']</b> string"
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
"この特別なアカウントはふたつの異なった目的で使われます。リレーション機能全般"
"を利用できるようにするのと(→ <a href=\"#pmadb\">$cfg['Servers'][$i]['pmadb']"
@@ -3277,7 +3276,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
#, fuzzy
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "<b>$cfg['ExecTimeLimit'] </b>integer [秒数]"
#. type: Content of: <html><body><div><dl><dd>
@@ -3418,8 +3417,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/ka.po b/po/ka.po
index 06337e7..debbced 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/lt.po b/po/lt.po
index 99a409d..e26d783 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-03-30 20:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: none\n"
@@ -840,8 +840,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1476,10 +1476,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2712,7 +2711,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2828,8 +2827,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/mn.po b/po/mn.po
index 806f0a0..accfff0 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442
,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/nb.po b/po/nb.po
index 991d15c..fea9c46 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -807,8 +807,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1443,10 +1443,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2679,7 +2678,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2795,8 +2794,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/nl.po b/po/nl.po
index 52b2ae0..6c6b968 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-05-31 00:23+0200\n"
"Last-Translator: Bjorn <inbox(a)bjornroesbeke.be>\n"
"Language-Team: none\n"
@@ -950,8 +950,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1588,10 +1588,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2824,7 +2823,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2940,8 +2939,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/pl.po b/po/pl.po
index 0bf6130..9ea1df5 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: 2010-01-22 15:13+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: Polish <pl(a)li.org>\n"
@@ -908,8 +908,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1682,10 +1682,9 @@ msgstr "<b>$cfg['Servers'][$i]['controlpass']</b> napis"
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3176,7 +3175,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
#, fuzzy
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "<b>$cfg['ExecTimeLimit'] </b>liczba całkowita [liczba sekund]"
#. type: Content of: <html><body><div><dl><dd>
@@ -3321,8 +3320,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/pt_BR.po b/po/pt_BR.po
index b9883a5..aa59c15 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-05-02 03:02+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: none\n"
@@ -1066,9 +1066,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"Nota: iniciando com o phpMyAdmin 2.6.1, esta seção é apenas aplicada se o "
"seu servidor MySQL estiver rodando com <tt>--skip-show-database</tt>."
@@ -1723,10 +1724,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3044,7 +3044,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+#, fuzzy
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "$cfg['MemoryLimit'] inteiro [número de bytes]"
#. type: Content of: <html><body><div><dl><dd>
@@ -3160,8 +3161,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/ro.po b/po/ro.po
index 6f4ab06..848bfef 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-03-01 12:14+0200\n"
"Last-Translator: <the_sky_dreamer2003(a)yahoo.com>\n"
"Language-Team: none\n"
@@ -814,8 +814,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1450,10 +1450,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2686,7 +2685,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2802,8 +2801,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/sk.po b/po/sk.po
index 14a1f93..6710db2 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Slovak <sk(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1445,10 +1445,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2681,7 +2680,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2797,8 +2796,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/sv.po b/po/sv.po
index 71412fa..addf2aa 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -807,8 +807,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1443,10 +1443,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2679,7 +2678,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2795,8 +2794,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/tr.po b/po/tr.po
index dbeba98..2031c3d 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-06-26 11:20+0200\n"
"Last-Translator: Burak <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
@@ -894,8 +894,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1530,10 +1530,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2766,7 +2765,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2882,8 +2881,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 740cd8d..92c50e6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-03-04 14:08+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: none\n"
@@ -1000,9 +1000,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
+#, fuzzy
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
"注意: 自 phpMyAdmin 2.6.1 起,本节仅适用于运行在 <tt>--skip-show-database</"
"tt> 模式下的 MySQL 服务器。"
@@ -1781,13 +1782,13 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:715
+#, fuzzy
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
"这个特殊的帐号有两种不同的用途: 1、为链接表的附加功能提供支持 (参见 <a href="
"\"#pmadb\" class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>)。2、在 "
@@ -3314,7 +3315,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+#, fuzzy
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr "$cfg['MemoryLimit'] 整数 [单位: 字节]"
#. type: Content of: <html><body><div><dl><dd>
@@ -3434,8 +3436,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 3927de3..e8bcd95 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 812ee4c..e107cf7 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 0a733a1..66acf4e 100644
--- a/pot/ca-html.pot
+++ b/pot/ca-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/ca-txt.pot
+++ b/pot/ca-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-full.pot b/pot/cs-full.pot
index 044348b..bfa058c 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index a501f90..f5cb80e 100644
--- a/pot/cs-html.pot
+++ b/pot/cs-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/cs-txt.pot
+++ b/pot/cs-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-full.pot b/pot/de-full.pot
index 9782137..ce433e5 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/de-html.pot b/pot/de-html.pot
index 9d3c2ba..27f9b1d 100644
--- a/pot/de-html.pot
+++ b/pot/de-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/de-txt.pot
+++ b/pot/de-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-full.pot b/pot/en_GB-full.pot
index c27654d..24d0cff 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 6184d2a..d2a55a8 100644
--- a/pot/en_GB-html.pot
+++ b/pot/en_GB-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/en_GB-txt.pot
+++ b/pot/en_GB-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-full.pot b/pot/es-full.pot
index 8237639..fcea933 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/es-html.pot b/pot/es-html.pot
index e195a42..fe7e258 100644
--- a/pot/es-html.pot
+++ b/pot/es-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/es-txt.pot
+++ b/pot/es-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-full.pot b/pot/fi-full.pot
index f01226d..e1d7696 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index ba68a3a..52a2914 100644
--- a/pot/fi-html.pot
+++ b/pot/fi-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/fi-txt.pot
+++ b/pot/fi-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-full.pot b/pot/fr-full.pot
index c249fbe..db3d302 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index 249ad82..8b24fd8 100644
--- a/pot/fr-html.pot
+++ b/pot/fr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index 7b66dc7..f13612f 100644
--- a/pot/fr-txt.pot
+++ b/pot/fr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-full.pot b/pot/gl-full.pot
index 662f3f5..269f56c 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index 18ff530..97c8e76 100644
--- a/pot/gl-html.pot
+++ b/pot/gl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: L
ANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/gl-txt.pot
+++ b/pot/gl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-full.pot b/pot/hu-full.pot
index b6801db..6e317b1 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index 1caa8b8..34798f3 100644
--- a/pot/hu-html.pot
+++ b/pot/hu-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/hu-txt.pot
+++ b/pot/hu-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-full.pot b/pot/hy-full.pot
index e024b19..86869cd 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index 4452436..0903f01 100644
--- a/pot/hy-html.pot
+++ b/pot/hy-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/hy-txt.pot
+++ b/pot/hy-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-full.pot b/pot/it-full.pot
index 983a9ff..73a3483 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/it-html.pot b/pot/it-html.pot
index b88babb..fc477a8 100644
--- a/pot/it-html.pot
+++ b/pot/it-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index 7b66dc7..f13612f 100644
--- a/pot/it-txt.pot
+++ b/pot/it-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-full.pot b/pot/ja-full.pot
index 5bb9677..192dd3a 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index 56842f6..6342f03 100644
--- a/pot/ja-html.pot
+++ b/pot/ja-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index 7b66dc7..f13612f 100644
--- a/pot/ja-txt.pot
+++ b/pot/ja-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-full.pot b/pot/ka-full.pot
index f1df880..7d8f3e4 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 55538fe..dd4fa2a 100644
--- a/pot/ka-html.pot
+++ b/pot/ka-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/ka-txt.pot
+++ b/pot/ka-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-full.pot b/pot/lt-full.pot
index d209139..edbb65b 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index cd7ac70..87bbfea 100644
--- a/pot/lt-html.pot
+++ b/pot/lt-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/lt-txt.pot
+++ b/pot/lt-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-full.pot b/pot/mn-full.pot
index 6e0ac67..0979944 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index 990e958..d334c76 100644
--- a/pot/mn-html.pot
+++ b/pot/mn-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/mn-txt.pot
+++ b/pot/mn-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-full.pot b/pot/nb-full.pot
index ba5db76..dcddb3a 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index 9c9802a..3d11c21 100644
--- a/pot/nb-html.pot
+++ b/pot/nb-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/nb-txt.pot
+++ b/pot/nb-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-full.pot b/pot/nl-full.pot
index b2b66d3..401caaf 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index f49bced..7296d02 100644
--- a/pot/nl-html.pot
+++ b/pot/nl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/nl-txt.pot
+++ b/pot/nl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-full.pot b/pot/pl-full.pot
index 5c2ef84..96f732f 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/pl-html.pot b/pot/pl-html.pot
index f115487..88bff3c 100644
--- a/pot/pl-html.pot
+++ b/pot/pl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/pl-txt.pot b/pot/pl-txt.pot
index 7b66dc7..f13612f 100644
--- a/pot/pl-txt.pot
+++ b/pot/pl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-full.pot b/pot/pt_BR-full.pot
index 646b3c8..ad9f0bb 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index f5f646e..af6a30d 100644
--- a/pot/pt_BR-html.pot
+++ b/pot/pt_BR-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/pt_BR-txt.pot
+++ b/pot/pt_BR-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-full.pot b/pot/ro-full.pot
index 8e2d203..5eb7f48 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ro-html.pot b/pot/ro-html.pot
index 936aef4..7c3898c 100644
--- a/pot/ro-html.pot
+++ b/pot/ro-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/ro-txt.pot b/pot/ro-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/ro-txt.pot
+++ b/pot/ro-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-full.pot b/pot/sk-full.pot
index d9546ac
..c8beefe 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/sk-html.pot b/pot/sk-html.pot
index 0c982e2..ebcb250 100644
--- a/pot/sk-html.pot
+++ b/pot/sk-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/sk-txt.pot b/pot/sk-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/sk-txt.pot
+++ b/pot/sk-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-full.pot b/pot/sv-full.pot
index 1561f9a..fa7e0b8 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/sv-html.pot b/pot/sv-html.pot
index 9d96a7e..82256b0 100644
--- a/pot/sv-html.pot
+++ b/pot/sv-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/sv-txt.pot b/pot/sv-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/sv-txt.pot
+++ b/pot/sv-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-full.pot b/pot/tr-full.pot
index ed416b6..385ad12 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/tr-html.pot b/pot/tr-html.pot
index 9bcafc8..e1e7014 100644
--- a/pot/tr-html.pot
+++ b/pot/tr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/tr-txt.pot b/pot/tr-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/tr-txt.pot
+++ b/pot/tr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-full.pot b/pot/zh_CN-full.pot
index bfeda1b..ab45164 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index aa0384c..20b5e46 100644
--- a/pot/zh_CN-html.pot
+++ b/pot/zh_CN-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/zh_CN-txt.pot
+++ b/pot/zh_CN-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-full.pot b/pot/zh_TW-full.pot
index 12e607e..19c6812 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -806,8 +806,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1442,10 +1442,9 @@ msgstr ""
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
-"['Servers'][$i]['pmadb']</a>) and, for a MySQL server previous to 4.1.2 or "
-"running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2678,7 +2677,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2794,8 +2793,8 @@ msgid ""
"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
"validity and if session is lost, login cookie is also invalidated. So it is "
-"good idea to set <code>session.gc_maxlifetime</code> at least as high is $cfg"
-"['LoginCookieValidity'] is set."
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index 0c9db58..f23f0cb 100644
--- a/pot/zh_TW-html.pot
+++ b/pot/zh_TW-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -809,8 +809,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
msgid ""
-"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
-"your MySQL server is running with <tt>--skip-show-database</tt>."
+"Note: this section is only applicable if your MySQL server is running with "
+"<tt>--skip-show-database</tt>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1460,9 +1460,9 @@ msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
"relational features (see <a href=\"#pmadb\" "
"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server previous to 4.1.2 or running with <tt>--skip-show-database</tt>, to "
-"enable a multi-user installation (<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode)."
+"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
+"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
+"cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2713,7 +2713,7 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1318
-msgid "$cfg['MemoryLimit'] integer [number of bytes]"
+msgid "$cfg['MemoryLimit'] string [number of bytes]"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2829,8 +2829,8 @@ msgid ""
"option <a "
"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifeti…">session.gc_maxlifetime</a> "
"might limit session validity and if session is lost, login cookie is also "
-"invalidated. So it is good idea to set <code>session.gc_maxlifetime</code> "
-"at least as high is $cfg['LoginCookieValidity'] is set."
+"invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> "
+"not lower than the value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
diff --git a/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index 7b66dc7..2a36b99 100644
--- a/pot/zh_TW-txt.pot
+++ b/pot/zh_TW-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-01 15:10+0300\n"
+"POT-Creation-Date: 2010-07-07 15:52+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_4-5330-g638fe75
by Marc Delisle 07 Jul '10
by Marc Delisle 07 Jul '10
07 Jul '10
The branch, master has been updated
via 638fe75a8b36df3049d4cc1dec7e734c71feff6c (commit)
via 104b0ee99ac77845511c91dcaefe4f315c3c4435 (commit)
from f95dc8d8a1ee0221e330d72fe4f2857f52b2f463 (commit)
- Log -----------------------------------------------------------------
commit 638fe75a8b36df3049d4cc1dec7e734c71feff6c
Merge: f95dc8d8a1ee0221e330d72fe4f2857f52b2f463 104b0ee99ac77845511c91dcaefe4f315c3c4435
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jul 7 09:47:12 2010 -0400
fix merge conflict
-----------------------------------------------------------------------
Summary of changes:
Documentation.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation.html b/Documentation.html
index 755308b..1d5b25e 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -396,7 +396,7 @@ rm -rf config # remove not needed directory
In cookie mode, the password is stored, encrypted with the blowfish
algorithm, in a temporary cookie.</li>
- <li id="pmausr">Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
+ <li id="pmausr">Note: this section is only applicable if
your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
@@ -715,7 +715,7 @@ since this link provides funding for phpMyAdmin.
<dd>This special account is used for 2 distinct purposes: to make possible
all relational features (see
<a href="#pmadb" class="configrule">$cfg['Servers'][$i]['pmadb']</a>)
- and, for a MySQL server previous to 4.1.2 or running with
+ and, for a MySQL server running with
<tt>--skip-show-database</tt>, to enable a multi-user installation
(<abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
authentication mode).<br /><br />
hooks/post-receive
--
phpMyAdmin
1
0