Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- 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
- 9 participants
- 39110 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_9-14-g09b124c
by Marc Delisle 08 Feb '11
by Marc Delisle 08 Feb '11
08 Feb '11
The branch, QA_3_3 has been updated
via 09b124c2723c5bf28404d800f7f8940d18cfc8dd (commit)
via 4c8c7080a76b837ae55cdc5e010c793b389a671a (commit)
from df97b1d2c075a0db4241b8494e36fa85eb231dcf (commit)
- Log -----------------------------------------------------------------
commit 09b124c2723c5bf28404d800f7f8940d18cfc8dd
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Feb 8 08:20:20 2011 -0500
ChangeLog for 3.3.9.1
commit 4c8c7080a76b837ae55cdc5e010c793b389a671a
Author: Herman van Rink <rink(a)initfour.nl>
Date: Tue Feb 8 08:19:20 2011 -0500
PMASA-2011-1 fixes
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 +++
changelog.php | 18 ++++++++++++------
license.php | 11 ++++++++++-
3 files changed, 25 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a5226f5..6e88a8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,9 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #3153409 [core] 0 row(s) affected
- bug #3155842 [core] Edit relational page and page number
+3.3.9.1 (2011-02-08)
+- [security] Path disclosure, see PMASA-2011-1
+
3.3.9.0 (2011-01-03)
- bug [doc] Fix references to MySQL doc
- patch #3101490 Default function for TIMESTAMP, thanks to jirand - jirand
diff --git a/changelog.php b/changelog.php
index 7b8c6f3..637efd1 100644
--- a/changelog.php
+++ b/changelog.php
@@ -15,13 +15,19 @@ require('./libraries/vendor_config.php');
/**
* Read changelog.
*/
-if (substr(CHANGELOG_FILE, -3) == '.gz') {
- ob_start();
- readgzfile(CHANGELOG_FILE);
- $changelog = ob_get_contents();
- ob_end_clean();
+// Check if the Changelog file is available, some distributions remove these.
+if (is_readable(CHANGELOG_FILE)) {
+ if (substr(CHANGELOG_FILE, -3) == '.gz') {
+ ob_start();
+ readgzfile(CHANGELOG_FILE);
+ $changelog = ob_get_contents();
+ ob_end_clean();
+ } else {
+ $changelog = file_get_contents(CHANGELOG_FILE);
+ }
} else {
- $changelog = file_get_contents(CHANGELOG_FILE);
+ echo "The Changelog file is not available on this system, please visit www.phpmyadmin.net for more information.";
+ exit;
}
/**
diff --git a/license.php b/license.php
index 0294611..6d63878 100644
--- a/license.php
+++ b/license.php
@@ -19,5 +19,14 @@ require('./libraries/vendor_config.php');
*
*/
header('Content-type: text/plain; charset=iso-8859-1');
-readfile(LICENSE_FILE);
+
+$filename = LICENSE_FILE;
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ readfile($filename);
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+}
+
?>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, MAINT_3_3_9, updated. RELEASE_3_3_9-2-g06081b8
by Marc Delisle 08 Feb '11
by Marc Delisle 08 Feb '11
08 Feb '11
The branch, MAINT_3_3_9 has been updated
via 06081b8f78431716f398e726c42beaf8f1d20b5a (commit)
via 44ace60f77ede6081e32e516bfd52d597d3f72a6 (commit)
from 08a6fd9c12f1520518b044d87e2a4da189649580 (commit)
- Log -----------------------------------------------------------------
commit 06081b8f78431716f398e726c42beaf8f1d20b5a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Feb 8 08:17:36 2011 -0500
3.3.9.1 release
commit 44ace60f77ede6081e32e516bfd52d597d3f72a6
Author: Herman van Rink <rink(a)initfour.nl>
Date: Tue Feb 8 08:15:01 2011 -0500
PMASA-2011-1 fixes
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 +++
Documentation.html | 4 ++--
README | 4 ++--
changelog.php | 18 ++++++++++++------
libraries/Config.class.php | 2 +-
license.php | 11 ++++++++++-
translators.html | 4 ++--
7 files changed, 32 insertions(+), 14 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a15b8fc..d7e104f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/… $
+3.3.9.1 (2011-02-08)
+- [security] Path disclosure, see PMASA-2011-1
+
3.3.9.0 (2011-01-03)
- bug [doc] Fix references to MySQL doc
- patch #3101490 Default function for TIMESTAMP, thanks to jirand - jirand
diff --git a/Documentation.html b/Documentation.html
index 0a5cf58..ad4e951 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -10,7 +10,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.3.9 - Documentation</title>
+ <title>phpMyAdmin 3.3.9.1 - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -18,7 +18,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
- 3.3.9
+ 3.3.9.1
Documentation
</h1>
</div>
diff --git a/README b/README
index 182b036..aeb211b 100644
--- a/README
+++ b/README
@@ -5,8 +5,8 @@ phpMyAdmin - Readme
A set of PHP-scripts to manage MySQL over the web.
- Version 3.3.9
- -------------
+ Version 3.3.9.1
+ ---------------
http://www.phpmyadmin.net/
Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>
diff --git a/changelog.php b/changelog.php
index 7b8c6f3..637efd1 100644
--- a/changelog.php
+++ b/changelog.php
@@ -15,13 +15,19 @@ require('./libraries/vendor_config.php');
/**
* Read changelog.
*/
-if (substr(CHANGELOG_FILE, -3) == '.gz') {
- ob_start();
- readgzfile(CHANGELOG_FILE);
- $changelog = ob_get_contents();
- ob_end_clean();
+// Check if the Changelog file is available, some distributions remove these.
+if (is_readable(CHANGELOG_FILE)) {
+ if (substr(CHANGELOG_FILE, -3) == '.gz') {
+ ob_start();
+ readgzfile(CHANGELOG_FILE);
+ $changelog = ob_get_contents();
+ ob_end_clean();
+ } else {
+ $changelog = file_get_contents(CHANGELOG_FILE);
+ }
} else {
- $changelog = file_get_contents(CHANGELOG_FILE);
+ echo "The Changelog file is not available on this system, please visit www.phpmyadmin.net for more information.";
+ exit;
}
/**
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index 7e6460d..89a80d2 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -92,7 +92,7 @@ class PMA_Config
*/
function checkSystem()
{
- $this->set('PMA_VERSION', '3.3.9');
+ $this->set('PMA_VERSION', '3.3.9.1');
/**
* @deprecated
*/
diff --git a/license.php b/license.php
index 0294611..6d63878 100644
--- a/license.php
+++ b/license.php
@@ -19,5 +19,14 @@ require('./libraries/vendor_config.php');
*
*/
header('Content-type: text/plain; charset=iso-8859-1');
-readfile(LICENSE_FILE);
+
+$filename = LICENSE_FILE;
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ readfile($filename);
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+}
+
?>
diff --git a/translators.html b/translators.html
index 6d2f096..ebb9f51 100644
--- a/translators.html
+++ b/translators.html
@@ -11,7 +11,7 @@
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.3.9 - Official translators</title>
+ <title>phpMyAdmin 3.3.9.1 - Official translators</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -19,7 +19,7 @@
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
- 3.3.9
+ 3.3.9.1
official translators list
</h1>
</div>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_2_11, updated. RELEASE_2_11_11_1-14-gd620aaf
by Marc Delisle 08 Feb '11
by Marc Delisle 08 Feb '11
08 Feb '11
The branch, QA_2_11 has been updated
via d620aaf102e9a9f850cc3a5cd77ff6de40dda782 (commit)
via f0e8849034132e2114f1d77d9d37185bc5b49886 (commit)
from 373a6626ade37c0fee1dfc7c757ca55c7652874b (commit)
- Log -----------------------------------------------------------------
commit d620aaf102e9a9f850cc3a5cd77ff6de40dda782
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Feb 8 08:13:01 2011 -0500
ChangeLog for 2.11.11.2
commit f0e8849034132e2114f1d77d9d37185bc5b49886
Author: Herman van Rink <rink(a)initfour.nl>
Date: Tue Feb 8 08:11:37 2011 -0500
PMASA-2011-1 fixes
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 +++
changelog.php | 10 +++++++++-
license.php | 11 ++++++++++-
readme.php | 10 +++++++++-
4 files changed, 31 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b0663e1..e3244d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
2.11.12.0 (not yet released)
+2.11.11.2 (2011-02-08)
+- [security] Path disclosure, see PMASA-2011-1
+
2.11.11.1 (2010-11-29)
- bug #3115519 (private) [security] XSS on db search, see PMASA-2010-8
diff --git a/changelog.php b/changelog.php
index 2b0dc3a..1b4807a 100644
--- a/changelog.php
+++ b/changelog.php
@@ -6,7 +6,15 @@
* @version $Id$
*/
-$changelog = htmlspecialchars(file_get_contents('ChangeLog'));
+$filename = 'ChangeLog';
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ $changelog = htmlspecialchars(file_get_contents($filename));
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+ exit;
+}
$replaces = array(
'@(http://[./a-zA-Z0-9.-]*[/a-zA-Z0-9])@'
diff --git a/license.php b/license.php
index 91927f4..c8c2957 100644
--- a/license.php
+++ b/license.php
@@ -13,5 +13,14 @@
*
*/
header('Content-type: text/plain; charset=iso-8859-1');
-readfile('LICENSE');
+
+$filename = 'LICENSE';
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ readfile($filename);
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+}
+
?>
diff --git a/readme.php b/readme.php
index 34fecce..7f59a4e 100644
--- a/readme.php
+++ b/readme.php
@@ -13,5 +13,13 @@
*
*/
header('Content-type: text/plain; charset=utf-8');
-readfile('README');
+
+$filename = 'README';
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ readfile($filename);
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+}
?>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, MAINT_2_11_11, updated. RELEASE_2_11_11_1-2-g448940b
by Marc Delisle 08 Feb '11
by Marc Delisle 08 Feb '11
08 Feb '11
The branch, MAINT_2_11_11 has been updated
via 448940b37b55648248d9a62139b8838feece3931 (commit)
via 87fad589653478875ba6f86a5c5ceec805d0f8b2 (commit)
from 61d9e561580ccb4a07d6d0c5695c839a22cc3b78 (commit)
- Log -----------------------------------------------------------------
commit 448940b37b55648248d9a62139b8838feece3931
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Feb 8 08:07:22 2011 -0500
2.11.11.2 release
commit 87fad589653478875ba6f86a5c5ceec805d0f8b2
Author: Herman van Rink <rink(a)initfour.nl>
Date: Tue Feb 8 07:57:34 2011 -0500
PMASA-2011-1 fixes
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 +++
Documentation.html | 4 ++--
README | 4 ++--
changelog.php | 10 +++++++++-
libraries/Config.class.php | 2 +-
license.php | 11 ++++++++++-
readme.php | 10 +++++++++-
translators.html | 4 ++--
8 files changed, 38 insertions(+), 10 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 89fe37c..06a61e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/… $
+2.11.11.2 (2011-02-08)
+- [security] Path disclosure, see PMASA-2011-1
+
2.11.11.1 (2010-11-29)
- bug #3115519 (private) [security] XSS on db search, see PMASA-2010-8
diff --git a/Documentation.html b/Documentation.html
index a3f7982..6fadc33 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -11,7 +11,7 @@
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <title>phpMyAdmin 2.11.11.1 - Documentation</title>
+ <title>phpMyAdmin 2.11.11.2 - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -33,7 +33,7 @@
<li><a href="#glossary">Glossary</a></li>
</ul>
-<h1>phpMyAdmin 2.11.11.1 Documentation</h1>
+<h1>phpMyAdmin 2.11.11.2 Documentation</h1>
<ul><li><a href="http://www.phpmyadmin.net/">
phpMyAdmin homepage</a></li>
diff --git a/README b/README
index a1dfb54..9a1d370 100644
--- a/README
+++ b/README
@@ -5,12 +5,12 @@ phpMyAdmin - Readme
A set of PHP-scripts to manage MySQL over the web.
- Version 2.11.11.1
+ Version 2.11.11.2
-----------------
http://www.phpmyadmin.net/
Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>
- Copyright (C) 2001-2010 Marc Delisle <Marc.Delisle_at_cegepsherbrooke.qc.ca>
+ Copyright (C) 2001-2011 Marc Delisle <marc_at_infomarc.info>
Olivier Müller <om_at_omnis.ch>
Robin Johnson <robbat2_at_users.sourceforge.net>
Alexander M. Turek <me_at_derrabus.de>
diff --git a/changelog.php b/changelog.php
index 2b0dc3a..1b4807a 100644
--- a/changelog.php
+++ b/changelog.php
@@ -6,7 +6,15 @@
* @version $Id$
*/
-$changelog = htmlspecialchars(file_get_contents('ChangeLog'));
+$filename = 'ChangeLog';
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ $changelog = htmlspecialchars(file_get_contents($filename));
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+ exit;
+}
$replaces = array(
'@(http://[./a-zA-Z0-9.-]*[/a-zA-Z0-9])@'
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index f1df2e0..755230f 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -85,7 +85,7 @@ class PMA_Config
*/
function checkSystem()
{
- $this->set('PMA_VERSION', '2.11.11.1');
+ $this->set('PMA_VERSION', '2.11.11.2');
/**
* @deprecated
*/
diff --git a/license.php b/license.php
index 91927f4..c8c2957 100644
--- a/license.php
+++ b/license.php
@@ -13,5 +13,14 @@
*
*/
header('Content-type: text/plain; charset=iso-8859-1');
-readfile('LICENSE');
+
+$filename = 'LICENSE';
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ readfile($filename);
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+}
+
?>
diff --git a/readme.php b/readme.php
index 34fecce..7f59a4e 100644
--- a/readme.php
+++ b/readme.php
@@ -13,5 +13,13 @@
*
*/
header('Content-type: text/plain; charset=utf-8');
-readfile('README');
+
+$filename = 'README';
+
+// Check if the file is available, some distributions remove these.
+if (is_readable($filename)) {
+ readfile($filename);
+} else {
+ echo "The $filename file is not available on this system, please visit www.phpmyadmin.net for more information.";
+}
?>
diff --git a/translators.html b/translators.html
index f59ca41..27ac0f7 100644
--- a/translators.html
+++ b/translators.html
@@ -8,7 +8,7 @@
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <title>phpMyAdmin 2.11.11.1 - Official translators</title>
+ <title>phpMyAdmin 2.11.11.2 - Official translators</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -31,7 +31,7 @@
<li><a href="Documentation.html#glossary">Glossary</a></li>
</ul>
-<h1>phpMyAdmin 2.11.11.1 official translators list</h1>
+<h1>phpMyAdmin 2.11.11.2 official translators list</h1>
<p> Here is the list of the "official translators" of
phpMyAdmin.</p>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA2-1899-g3c7b1ef
by Michal Čihař 08 Feb '11
by Michal Čihař 08 Feb '11
08 Feb '11
The branch, master has been updated
via 3c7b1efa57cc055062f43021cbef7557ebff4597 (commit)
via 8f259261746f6246f9a670d6609e7bbe3f56d074 (commit)
from 885cb6f0fb6dc32ded84c054499f675b27811bd0 (commit)
- Log -----------------------------------------------------------------
commit 3c7b1efa57cc055062f43021cbef7557ebff4597
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 13:56:59 2011 +0100
Czech translation update
commit 8f259261746f6246f9a670d6609e7bbe3f56d074
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 13:56:27 2011 +0100
Need to fill in all things as associative array, otherwise user prefs fail
-----------------------------------------------------------------------
Summary of changes:
libraries/config.values.php | 6 +++---
po/af.po | 22 ++++++++++++----------
po/ar.po | 30 +++++++++++++++++++++---------
po/az.po | 22 ++++++++++++----------
po/be.po | 22 ++++++++++++----------
po/be(a)latin.po | 19 +++++++++++++------
po/bg.po | 22 ++++++++++++----------
po/bn.po | 19 +++++++++++++------
po/bs.po | 22 ++++++++++++----------
po/ca.po | 24 ++++++++++++++++++------
po/cs.po | 43 +++++++++++++++++++++++++++----------------
po/cy.po | 31 +++++++++++++++++++------------
po/da.po | 19 +++++++++++++------
po/de.po | 24 ++++++++++++++++++------
po/el.po | 24 ++++++++++++++++++------
po/en_GB.po | 24 ++++++++++++++++++------
po/es.po | 24 ++++++++++++++++++------
po/et.po | 22 ++++++++++++----------
po/eu.po | 22 ++++++++++++----------
po/fa.po | 22 ++++++++++++----------
po/fi.po | 24 ++++++++++++++++++------
po/fr.po | 24 ++++++++++++++++++------
po/gl.po | 31 +++++++++++++++++++------------
po/he.po | 22 ++++++++++++----------
po/hi.po | 19 +++++++++++++------
po/hr.po | 22 ++++++++++++----------
po/hu.po | 19 +++++++++++++------
po/id.po | 24 ++++++++++++++++++------
po/it.po | 19 +++++++++++++------
po/ja.po | 19 +++++++++++++------
po/ka.po | 26 ++++++++++++++------------
po/ko.po | 22 ++++++++++++----------
po/lt.po | 24 ++++++++++++++++++------
po/lv.po | 22 ++++++++++++----------
po/mk.po | 22 ++++++++++++----------
po/mn.po | 19 +++++++++++++------
po/ms.po | 22 ++++++++++++----------
po/nb.po | 24 ++++++++++++++++++------
po/nl.po | 24 ++++++++++++++++++------
po/phpmyadmin.pot | 14 ++++++++------
po/pl.po | 24 ++++++++++++++++++------
po/pt.po | 19 +++++++++++++------
po/pt_BR.po | 24 ++++++++++++++++++------
po/ro.po | 26 ++++++++++++++------------
po/ru.po | 24 ++++++++++++++++++------
po/si.po | 22 ++++++++++++----------
po/sk.po | 22 ++++++++++++----------
po/sl.po | 24 ++++++++++++++++++------
po/sq.po | 22 ++++++++++++----------
po/sr.po | 22 ++++++++++++----------
po/sr(a)latin.po | 19 +++++++++++++------
po/sv.po | 24 ++++++++++++++++++------
po/ta.po | 14 ++++++++------
po/te.po | 31 +++++++++++++++++++------------
po/th.po | 22 ++++++++++++----------
po/tr.po | 24 ++++++++++++++++++------
po/tt.po | 22 ++++++++++++----------
po/ug.po | 19 +++++++++++++------
po/uk.po | 19 +++++++++++++------
po/ur.po | 19 +++++++++++++------
po/uz.po | 31 +++++++++++++++++++------------
po/uz(a)latin.po | 31 +++++++++++++++++++------------
po/zh_CN.po | 24 ++++++++++++++++++------
po/zh_TW.po | 19 +++++++++++++------
64 files changed, 936 insertions(+), 516 deletions(-)
diff --git a/libraries/config.values.php b/libraries/config.values.php
index fc50da8..b519037 100644
--- a/libraries/config.values.php
+++ b/libraries/config.values.php
@@ -42,12 +42,12 @@ $cfg_db['LeftDefaultTabTable'] = array(
'sql.php'); // browse page
$cfg_db['LeftFrameDBSeparator'] = 'short_string';
$cfg_db['LeftFrameTableSeparator'] = 'short_string';
-$cfg_db['NavigationBarIconic'] = array(true, false, 'both' => __('both'));
+$cfg_db['NavigationBarIconic'] = array(true => __('Yes'), false => __('No'), 'both' => __('Both'));
$cfg_db['Order'] = array('ASC', 'DESC', 'SMART');
$cfg_db['ProtectBinary'] = array(false, 'blob', 'all');
$cfg_db['DefaultDisplay'] = array('horizontal', 'vertical', 'horizontalflipped');
$cfg_db['CharEditing'] = array('input', 'textarea');
-$cfg_db['PropertiesIconic'] = array(true, false, 'both' => __('both'));
+$cfg_db['PropertiesIconic'] = array(true => __('Yes'), false => __('No'), 'both' => __('Both'));
$cfg_db['DefaultTabServer'] = array(
'main.php', // the welcome page (recommended for multiuser setups)
'server_databases.php', // list of databases
@@ -71,7 +71,7 @@ $cfg_db['QueryWindowDefTab'] = array(
'files', // Import files
'history', // SQL history
'full'); // All (SQL and SQL history)
-$cfg_db['InitialSlidersState'] = array('open' => __('open'), 'closed' => __('closed'));
+$cfg_db['InitialSlidersState'] = array('open' => __('Open'), 'closed' => __('Closed'));
$cfg_db['Import']['format'] = array(
'csv', // CSV
'docsql', // DocSQL
diff --git a/po/af.po b/po/af.po
index cc6511f..4fbf7eb 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -190,7 +190,8 @@ msgid "Comments"
msgstr "Kommentaar"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -205,7 +206,8 @@ msgid "No"
msgstr "Nee"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2178,17 +2180,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Ongebalanseerde kwotasie-teken"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9723,6 +9725,10 @@ msgid "Rename view to"
msgstr "Hernoem tabel na"
#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Ja"
+
+#, fuzzy
#~ msgid "Disable Statistics"
#~ msgstr "Databasis statistieke"
@@ -9789,10 +9795,6 @@ msgstr "Hernoem tabel na"
#~ msgstr "Geen databasisse"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Ja"
-
-#, fuzzy
#~| msgid "Dump %s row(s) starting at record # %s"
#~ msgid "Dump %s row(s) starting at row # %s"
#~ msgstr "Stort %s rye beginnende by rekord # %s."
diff --git a/po/ar.po b/po/ar.po
index 0d92a91..ae16b99 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed <aa.mahdawy.10(a)gmail.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -191,7 +191,8 @@ msgid "Comments"
msgstr "تعليقات"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -206,7 +207,8 @@ msgid "No"
msgstr "لا"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2193,17 +2195,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "أغلق"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9809,6 +9811,19 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "نعم"
+
+#~ msgid "no"
+#~ msgstr "لا"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "أغلق"
+
#~ msgid "Disable Statistics"
#~ msgstr "أوقف الإحصائيات"
@@ -9884,9 +9899,6 @@ msgstr ""
#~ msgid "Data Dictionary Format"
#~ msgstr "تنسيق قاموس البيانات"
-#~ msgid "no"
-#~ msgstr "لا"
-
#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
diff --git a/po/az.po b/po/az.po
index 379cbfd..69bd99a 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -187,7 +187,8 @@ msgid "Comments"
msgstr "Qısa İzahatlar"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -202,7 +203,8 @@ msgid "No"
msgstr "Xeyir"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2196,17 +2198,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Unclosed quote"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9892,6 +9894,10 @@ msgstr ""
msgid "Rename view to"
msgstr "Cedveli yeniden adlandır"
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Beli"
+
#~ msgid "Disable Statistics"
#~ msgstr "Statistikaları Söndür"
@@ -9971,10 +9977,6 @@ msgstr "Cedveli yeniden adlandır"
#~ msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Beli"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "AUTO_INCREMENT deyeri elave et"
diff --git a/po/be.po b/po/be.po
index f6baa30..c831ad7 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -192,7 +192,8 @@ msgid "Comments"
msgstr "Камэнтары"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -207,7 +208,8 @@ msgid "No"
msgstr "Не"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2246,17 +2248,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Незакрытае двукосьсе"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10276,6 +10278,10 @@ msgstr "Назва прагляду"
msgid "Rename view to"
msgstr "Перайменаваць табліцу ў"
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Так"
+
#~ msgid "to/from page"
#~ msgstr "старонка"
@@ -10366,10 +10372,6 @@ msgstr "Перайменаваць табліцу ў"
#~ msgstr "Базы дадзеных адсутнічаюць"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Так"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "Дадаць значэньне AUTO_INCREMENT"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 1fc96d2..df6e2fd 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -194,7 +194,8 @@ msgid "Comments"
msgstr "Kamentary"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -209,7 +210,8 @@ msgid "No"
msgstr "Nie"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2251,17 +2253,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Niezakrytaje dvukośsie"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10231,6 +10233,11 @@ msgstr "Nazva prahladu"
msgid "Rename view to"
msgstr ""
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Tak"
+
#~ msgid "to/from page"
#~ msgstr "staronka"
diff --git a/po/bg.po b/po/bg.po
index dcb76bb..64fa3c4 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: <stanprog(a)stanprog.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -191,7 +191,8 @@ msgid "Comments"
msgstr "Коментари"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -206,7 +207,8 @@ msgid "No"
msgstr "не"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2213,17 +2215,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Незатворени кавички"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9984,6 +9986,10 @@ msgstr "Име на ИЗГЛЕД-а"
msgid "Rename view to"
msgstr "Преименуване на изгледа на"
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "да"
+
#~ msgid "Disable Statistics"
#~ msgstr "Забрани статистика"
@@ -10073,10 +10079,6 @@ msgstr "Преименуване на изгледа на"
#~ msgstr "Няма бази от данни"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "да"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "Добавяне на AUTO_INCREMENT"
diff --git a/po/bn.po b/po/bn.po
index 79f00cc..eedb660 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -191,7 +191,8 @@ msgid "Comments"
msgstr "মন্তব্যসমূহ"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -206,7 +207,8 @@ msgid "No"
msgstr "না"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2223,17 +2225,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Unclosed quote"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10156,6 +10158,11 @@ msgstr ""
msgid "Rename view to"
msgstr "টেবিল রিনেম করুন"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "হ্যাঁ"
+
#~ msgid "Disable Statistics"
#~ msgstr "পরিসংখ্যান বন্ধ কর"
diff --git a/po/bs.po b/po/bs.po
index e60e192..1d6ad6f 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -190,7 +190,8 @@ msgid "Comments"
msgstr "Komentari"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -205,7 +206,8 @@ msgid "No"
msgstr "Ne"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2195,17 +2197,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Navodnik nije zatvoren"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9877,6 +9879,10 @@ msgstr ""
msgid "Rename view to"
msgstr "Promjeni ime tabele u "
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Da"
+
#~ msgid "Disable Statistics"
#~ msgstr "Isključi statistike"
@@ -9959,10 +9965,6 @@ msgstr "Promjeni ime tabele u "
#~ msgstr "Baza ne postoji"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Da"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "Dodaj AUTO_INCREMENT vrijednost"
diff --git a/po/ca.po b/po/ca.po
index 1d313b1..e6949b7 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-12-14 11:33+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "Comentaris"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "No"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2116,17 +2118,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Tanca"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10064,6 +10066,16 @@ msgstr "Nom de VISTA"
msgid "Rename view to"
msgstr "Reanomena la vista a"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Si"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Tanca"
+
#~ msgid "to/from page"
#~ msgstr "plana a/de"
diff --git a/po/cs.po b/po/cs.po
index e674872..3cbd5d1 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
-"PO-Revision-Date: 2011-02-08 13:33+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
+"PO-Revision-Date: 2011-02-08 13:56+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"Language: cs\n"
@@ -192,7 +192,8 @@ msgid "Comments"
msgstr "Komentáře"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -207,7 +208,8 @@ msgid "No"
msgstr "Ne"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2109,17 +2111,17 @@ msgid "There are no files to upload"
msgstr "Nebyl zvolen žádný soubor pro nahrání"
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
-msgstr "obojí"
+msgid "Both"
+msgstr "Obojí"
#: libraries/config.values.php:74
-msgid "open"
-msgstr "otevřené"
+msgid "Open"
+msgstr "Otevřené"
#: libraries/config.values.php:74
#| msgid "Close"
-msgid "closed"
-msgstr "zavřené"
+msgid "Closed"
+msgstr "Uzavřené"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
@@ -9936,6 +9938,21 @@ msgstr "Jméno pohledu"
msgid "Rename view to"
msgstr "Přejmenovat pohled na"
+#~ msgid "yes"
+#~ msgstr "ano"
+
+#~ msgid "no"
+#~ msgstr "ne"
+
+#~ msgid "both"
+#~ msgstr "obojí"
+
+#~ msgid "open"
+#~ msgstr "otevřené"
+
+#~ msgid "closed"
+#~ msgstr "zavřené"
+
#~ msgid "to/from page"
#~ msgstr "do/ze stránky"
@@ -10023,9 +10040,6 @@ msgstr "Přejmenovat pohled na"
#~ msgid "Method"
#~ msgstr "Způsob exportu"
-#~ msgid "no"
-#~ msgstr "ne"
-
#~ msgid "Enter login options for signon authentication"
#~ msgstr "Zadejte parametry pro autentizaci signon"
@@ -10042,6 +10056,3 @@ msgstr "Přejmenovat pohled na"
#~ "Nastavení SQL dotazů, pro nastavení políček pro SQL dotazy si prohlédněte "
#~ "nastavení [a@?page=form&formset=main_frame#tab_Sql_box]navigačního "
#~ "rámu[/a]"
-
-#~ msgid "yes"
-#~ msgstr "ano"
diff --git a/po/cy.po b/po/cy.po
index 7a4fd85..c5c6d72 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
"Last-Translator: <ardavies(a)tiscali.co.uk>\n"
"Language-Team: Welsh <cy(a)li.org>\n"
@@ -194,7 +194,8 @@ msgid "Comments"
msgstr "Sylwadau"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -209,7 +210,8 @@ msgid "No"
msgstr "Na"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2164,17 +2166,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Cau"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9651,6 +9653,17 @@ msgstr "Enw VIEW"
msgid "Rename view to"
msgstr "Ailenwch golwg i"
+#~ msgid "yes"
+#~ msgstr "ie"
+
+#~ msgid "no"
+#~ msgstr "na"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Cau"
+
#~ msgid "Disable Statistics"
#~ msgstr "Analluogi Ystadegau"
@@ -9689,12 +9702,6 @@ msgstr "Ailenwch golwg i"
#~ msgid "Data Dictionary Format"
#~ msgstr "Fformat Geiriadur Data"
-#~ msgid "no"
-#~ msgstr "na"
-
-#~ msgid "yes"
-#~ msgstr "ie"
-
#, fuzzy
#~| msgid "Remove CRLF characters within columns"
#~ msgid "Remove carriage return/line field characters within columns"
diff --git a/po/da.po b/po/da.po
index 3ae82b2..793bb5d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-07-21 14:55+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -193,7 +193,8 @@ msgid "Comments"
msgstr "Kommentarer"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -208,7 +209,8 @@ msgid "No"
msgstr "Nej"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2231,17 +2233,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Ikke-lukket quote"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10105,6 +10107,11 @@ msgstr "VIEW navn"
msgid "Rename view to"
msgstr ""
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Ja"
+
#~ msgid "to/from page"
#~ msgstr "til/fra side"
diff --git a/po/de.po b/po/de.po
index bc55e5d..e756a39 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2011-01-21 12:07+0200\n"
"Last-Translator: <ch(a)rech.co>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "Kommentare"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "Nein"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2175,17 +2177,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Schliesse"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10552,6 +10554,16 @@ msgstr "VIEW Name"
msgid "Rename view to"
msgstr "View umbenennen in"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Ja"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Schliesse"
+
#~ msgid "to/from page"
#~ msgstr "nach/von Seite"
diff --git a/po/el.po b/po/el.po
index a2a78c0..cf71aa3 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-12-13 13:42+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p(a)yahoo.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "Σχόλια"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "Όχι"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2122,17 +2124,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Κλείσιμο"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10166,6 +10168,16 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος"
msgid "Rename view to"
msgstr "Μετονομασία πίνακα σε"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Ναι"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Κλείσιμο"
+
#~ msgid "to/from page"
#~ msgstr "από/προς τη σελίδα"
diff --git a/po/en_GB.po b/po/en_GB.po
index 4424fbc..26b673b 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2011-02-03 19:19+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "Comments"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "No"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2098,17 +2100,17 @@ msgid "There are no files to upload"
msgstr "There are no files to upload"
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Close"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9932,6 +9934,16 @@ msgstr "VIEW name"
msgid "Rename view to"
msgstr "Rename view to"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Yes"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Close"
+
#~ msgid "to/from page"
#~ msgstr "to/from page"
diff --git a/po/es.po b/po/es.po
index 08a3538..0eb1243 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2011-02-06 16:30+0200\n"
"Last-Translator: Adolfo Jayme Barrientos <fitoschido(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "Comentarios"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "No"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2129,17 +2131,17 @@ msgid "There are no files to upload"
msgstr "No hay archivos para subir"
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Cerrar"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10364,6 +10366,16 @@ msgstr "(VIEW) VER nombre"
msgid "Rename view to"
msgstr "Cambiar el nombre de la vista a "
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Sí"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Cerrar"
+
#~ msgid "to/from page"
#~ msgstr "página de/a la"
diff --git a/po/et.po b/po/et.po
index 28779dd..599d89a 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -190,7 +190,8 @@ msgid "Comments"
msgstr "Kommentaarid"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -205,7 +206,8 @@ msgid "No"
msgstr "Ei"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2225,17 +2227,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Sulgemata jutumärk/ülakoma"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10145,6 +10147,10 @@ msgstr ""
msgid "Rename view to"
msgstr "Nimeta tabel ümber"
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Jah"
+
#~ msgid "to/from page"
#~ msgstr "Kuhu/Kust leht"
@@ -10235,10 +10241,6 @@ msgstr "Nimeta tabel ümber"
#~ msgstr "Pole andmebaase"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Jah"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "Lisa AUTO_INCREMENT väärtus"
diff --git a/po/eu.po b/po/eu.po
index be3726f..a4eb3bf 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -191,7 +191,8 @@ msgid "Comments"
msgstr "Iruzkinak"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -206,7 +207,8 @@ msgid "No"
msgstr "Ez"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2198,17 +2200,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Itxi gabeko komatxoak"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9907,6 +9909,10 @@ msgstr ""
msgid "Rename view to"
msgstr "Taula berrizendatu izen honetara: "
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Bai"
+
#~ msgid "Disable Statistics"
#~ msgstr "Estatistikak ezgaitu"
@@ -9989,10 +9995,6 @@ msgstr "Taula berrizendatu izen honetara: "
#~ msgstr "Datu-baserik ez"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Bai"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "Gehitu AUTO_INCREMENT balioa"
diff --git a/po/fa.po b/po/fa.po
index 5836b89..43b5e3f 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007(a)yahoo.com>\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "توضيحات"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "خير"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2175,15 +2177,15 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
-msgid "closed"
+msgid "Closed"
msgstr ""
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9699,6 +9701,10 @@ msgid "Rename view to"
msgstr "بازناميدن جدول به"
#, fuzzy
+#~ msgid "yes"
+#~ msgstr "بلي"
+
+#, fuzzy
#~ msgid "Disable Statistics"
#~ msgstr "آمار پايگاههاي داده"
@@ -9771,10 +9777,6 @@ msgstr "بازناميدن جدول به"
#~ msgstr "No databases"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "بلي"
-
-#, fuzzy
#~| msgid "Dump %s row(s) starting at record # %s"
#~ msgid "Dump %s row(s) starting at row # %s"
#~ msgstr "حذف %s سطر(ها) ابتدا از سطر شماره %s."
diff --git a/po/fi.po b/po/fi.po
index c3561e0..aa10ed7 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: <asdfsdf(a)asdfasdfasdf.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -189,7 +189,8 @@ msgid "Comments"
msgstr "Kommentit"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -204,7 +205,8 @@ msgid "No"
msgstr "Ei"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2108,17 +2110,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Sulje"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10453,6 +10455,16 @@ msgstr "VIEW-arvon nimi"
msgid "Rename view to"
msgstr "Nimeä taulu uudelleen"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Kyllä"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Sulje"
+
#~ msgid "to/from page"
#~ msgstr "Sivulta/sivulle"
diff --git a/po/fr.po b/po/fr.po
index 54b3f2e..85add77 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2011-02-03 19:20+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -190,7 +190,8 @@ msgid "Comments"
msgstr "Commentaires"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -205,7 +206,8 @@ msgid "No"
msgstr "Non"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2121,17 +2123,17 @@ msgid "There are no files to upload"
msgstr "Aucun fichier n'est disponible pour le transfert"
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Fermer"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10086,6 +10088,16 @@ msgstr "Nom de la vue"
msgid "Rename view to"
msgstr "Changer le nom de la vue pour"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Oui"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Fermer"
+
#~ msgid "to/from page"
#~ msgstr "de/vers la page"
diff --git a/po/gl.po b/po/gl.po
index 2d2010e..3e5cfd9 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -194,7 +194,8 @@ msgid "Comments"
msgstr "Comentarios"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -209,7 +210,8 @@ msgid "No"
msgstr "Non"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2257,17 +2259,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Close"
-msgid "closed"
+msgid "Closed"
msgstr "Fechar"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10651,6 +10653,17 @@ msgstr "Nome da VISTA"
msgid "Rename view to"
msgstr "Mudar o nome da táboa para"
+#~ msgid "yes"
+#~ msgstr "si"
+
+#~ msgid "no"
+#~ msgstr "non"
+
+#, fuzzy
+#~| msgid "Close"
+#~ msgid "closed"
+#~ msgstr "Fechar"
+
#~ msgid "to/from page"
#~ msgstr "até/desde a páxina"
@@ -10745,9 +10758,6 @@ msgstr "Mudar o nome da táboa para"
#~ msgid "Data Dictionary Format"
#~ msgstr "Formato do dicionario de datos"
-#~ msgid "no"
-#~ msgstr "non"
-
#~ msgid "Enter login options for signon authentication"
#~ msgstr ""
#~ "Introduza as opcións de rexistro de entrada para a autenticación mediante "
@@ -10770,9 +10780,6 @@ msgstr "Mudar o nome da táboa para"
#~ "SQL vexa a configuración da [a@?page=form&"
#~ "formset=main_frame#tab_Sql_box]moldura de navegación[/a]"
-#~ msgid "yes"
-#~ msgstr "si"
-
#, fuzzy
#~| msgid "Remove CRLF characters within fields"
#~ msgid "Remove carriage return/line field characters within columns"
diff --git a/po/he.po b/po/he.po
index 8559737..f4c2b7b 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -187,7 +187,8 @@ msgid "Comments"
msgstr "הערות"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -202,7 +203,8 @@ msgid "No"
msgstr "לא"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2189,15 +2191,15 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
-msgid "closed"
+msgid "Closed"
msgstr ""
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9807,6 +9809,10 @@ msgstr ""
msgid "Rename view to"
msgstr "שינוי שם טבלה אל"
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "כן"
+
#~ msgid "Disable Statistics"
#~ msgstr "ביטול סטטיסטיקה"
@@ -9878,10 +9884,6 @@ msgstr "שינוי שם טבלה אל"
#~ msgstr "אין מאגרי נתונים"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "כן"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)"
diff --git a/po/hi.po b/po/hi.po
index 48a6c2f..25b8f29 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-05-21 05:48+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -192,7 +192,8 @@ msgid "Comments"
msgstr "टिप्पणी"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -207,7 +208,8 @@ msgid "No"
msgstr "नहीं"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2139,15 +2141,15 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
-msgid "closed"
+msgid "Closed"
msgstr ""
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -9616,6 +9618,11 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "हाँ "
+
#~ msgid "Disable Statistics"
#~ msgstr "आँकडे Disable करें"
diff --git a/po/hr.po b/po/hr.po
index a3bc1b1..0c09063 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -194,7 +194,8 @@ msgid "Comments"
msgstr "Komentari"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -209,7 +210,8 @@ msgid "No"
msgstr "Ne"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2241,17 +2243,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Navodnik nije zatvoren"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10234,6 +10236,10 @@ msgstr "Naziv prikaza"
msgid "Rename view to"
msgstr "Preimenuj tablicu u"
+#, fuzzy
+#~ msgid "yes"
+#~ msgstr "Da"
+
#~ msgid "to/from page"
#~ msgstr "stranica od / prema"
@@ -10324,10 +10330,6 @@ msgstr "Preimenuj tablicu u"
#~ msgstr "Nema baza podataka"
#, fuzzy
-#~ msgid "yes"
-#~ msgstr "Da"
-
-#, fuzzy
#~| msgid "Add AUTO_INCREMENT value"
#~ msgid "<code>AUTO_INCREMENT</code>"
#~ msgstr "Dodaj vrijednost AUTO_INCREMENT"
diff --git a/po/hu.po b/po/hu.po
index b522a2c..4026957 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-09-14 20:45+0200\n"
"Last-Translator: KAMI <kami911(a)gmail.com>\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -193,7 +193,8 @@ msgid "Comments"
msgstr "Megjegyzések"
#: db_datadict.php:262 js/messages.php:78 libraries/Index.class.php:358
-#: libraries/Index.class.php:385 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:385 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:263
@@ -208,7 +209,8 @@ msgid "No"
msgstr "Nem"
#: db_datadict.php:262 js/messages.php:77 libraries/Index.class.php:359
-#: libraries/Index.class.php:384 libraries/config/FormDisplay.tpl.php:204
+#: libraries/Index.class.php:384 libraries/config.values.php:45
+#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
#: libraries/mult_submits.inc.php:44 libraries/mult_submits.inc.php:49
@@ -2254,17 +2256,17 @@ msgid "There are no files to upload"
msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
-msgid "both"
+msgid "Both"
msgstr ""
#: libraries/config.values.php:74
-msgid "open"
+msgid "Open"
msgstr ""
#: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote"
-msgid "closed"
+msgid "Closed"
msgstr "Lezáratlan idézőjel"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
@@ -10607,6 +10609,11 @@ msgstr "NÉZET neve"
msgid "Rename view to"
msgstr "Nézet átnevezése"
+#, fuzzy
+#~| msgid "Yes"
+#~ msgid "yes"
+#~ msgstr "Igen"
+
#~ msgid "to/from page"
#~ msgstr "oldalra/-ról"
diff --git a/po/id.po b/po/id.po
index 667e736..4ec871e 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-08 13:32+0100\n"
+"POT-Creation-Date: 2011-02-08 13:55+0100\n"
"PO-Revision-Date: 2010-09-16 05:35+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <