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, master, updated. RELEASE_3_4_0BETA3-1761-g419d067
by Marc Delisle 02 Mar '11
by Marc Delisle 02 Mar '11
02 Mar '11
The branch, master has been updated
via 419d067dc348817c79386fba10cc1679df486729 (commit)
from 10a4ec1fba6b1858a0e30d7e1dc4e7869a43b6b4 (commit)
- Log -----------------------------------------------------------------
commit 419d067dc348817c79386fba10cc1679df486729
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Mar 2 13:01:17 2011 -0500
Extra line break generated when creating user via Ajax
-----------------------------------------------------------------------
Summary of changes:
libraries/common.lib.php | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 4f8427b..2b7f738 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1269,7 +1269,10 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
echo $edit_link . $explain_link . $php_link . $refresh_link . $validate_link;
echo '</div>';
}
- echo '</div><br class="clearfloat" />' . "\n";
+ echo '</div>';
+ if ($GLOBALS['is_ajax_request'] === false) {
+ echo '<br class="clearfloat" />';
+ }
// If we are in an Ajax request, we have most probably been called in
// PMA_ajaxResponse(). Hence, collect the buffer contents and return it
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1760-g10a4ec1
by Madhura Jayaratne 02 Mar '11
by Madhura Jayaratne 02 Mar '11
02 Mar '11
The branch, master has been updated
via 10a4ec1fba6b1858a0e30d7e1dc4e7869a43b6b4 (commit)
from 5ac81bc4966b2eb3f7cd61ea2e42fa9b15bf6f49 (commit)
- Log -----------------------------------------------------------------
commit 10a4ec1fba6b1858a0e30d7e1dc4e7869a43b6b4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Wed Mar 2 21:25:56 2011 +0530
Updated CSS styles related to inline edit mode for the new theme pmahomme.
-----------------------------------------------------------------------
Summary of changes:
themes/pmahomme/css/theme_right.css.php | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index 6730932..cb5f3d8 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -305,6 +305,13 @@ fieldset.tblFooters {
border-radius: 0 0 4px 5px;
}
+div.null_div {
+ height: 20px;
+ text-align: center;
+ font-style:normal;
+ min-width:50px;
+}
+
fieldset .formelement {
float: <?php echo $left; ?>;
margin-<?php echo $right; ?>: 0.5em;
@@ -381,6 +388,14 @@ th.condition {
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
}
+/**
+ * cells with the value NULL
+ */
+td.null {
+ font-style: italic;
+ text-align: <?php echo $right; ?>;
+}
+
table .value {
text-align: <?php echo $right; ?>;
white-space: normal;
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1759-g5ac81bc
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 5ac81bc4966b2eb3f7cd61ea2e42fa9b15bf6f49 (commit)
from d83820178c1c17c6f72fcf18d70afa28da3f9f18 (commit)
- Log -----------------------------------------------------------------
commit 5ac81bc4966b2eb3f7cd61ea2e42fa9b15bf6f49
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 16:00:02 2011 +0100
Update ignore list
-----------------------------------------------------------------------
Summary of changes:
themes/.gitignore | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/themes/.gitignore b/themes/.gitignore
index 7d874cb..2e814c5 100644
--- a/themes/.gitignore
+++ b/themes/.gitignore
@@ -6,6 +6,7 @@ clearview3
crimson_gray
dark_lime
darkblue_gray
+darkblue_orange
garvblue
graphite
graphivore
@@ -16,7 +17,6 @@ openphpnuke
original_small
paradice
pixeline
-pmahomme
programmersdarkside
silk
silkline
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. 1dae9fd86fb31f7b9ee3540ee4e104795562a643
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 1dae9fd86fb31f7b9ee3540ee4e104795562a643 (commit)
via 1319ba55de0ff620adb9b6e83dd8120365473714 (commit)
from 53dd297c4898930c867207c8d570c0f75b56e92f (commit)
- Log -----------------------------------------------------------------
commit 1dae9fd86fb31f7b9ee3540ee4e104795562a643
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 14:58:39 2011 +0100
Do not list old releases on downloads page as there is too much of them.
commit 1319ba55de0ff620adb9b6e83dd8120365473714
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 14:57:40 2011 +0100
Cope with 1.x releases
-----------------------------------------------------------------------
Summary of changes:
render.py | 7 ++++++-
templates/downloads.tpl | 8 ++------
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/render.py b/render.py
index d612a74..ef6296a 100755
--- a/render.py
+++ b/render.py
@@ -227,7 +227,9 @@ class SFGenerator:
'''
Returns description to the phpMyAdmin version.
'''
- if version[:2] == '2.':
+ if version[:2] == '1.':
+ text ='Historical release.'
+ elif version[:2] == '2.':
text ='Version compatible with PHP 4+ and MySQL 3+.'
elif version[:2] == '3.':
text = 'Version compatible with PHP 5 and MySQL 5.'
@@ -425,6 +427,9 @@ class SFGenerator:
for stable in outversions.keys():
version = releases[outversions[stable]]['version']
major_branch = MAJOR_BRANCH_REGEXP.match(version).group(1)
+ if major_branch == '1':
+ del outversions[stable]
+ continue
for check in outversions.keys():
try:
check_version = releases[outversions[check]]['version']
diff --git a/templates/downloads.tpl b/templates/downloads.tpl
index ac7ae3a..c692300 100644
--- a/templates/downloads.tpl
+++ b/templates/downloads.tpl
@@ -70,15 +70,11 @@
<h2>Older Releases</h2>
<p>
- You can find some older releases on <a
+ You can find older releases on <a
href="https://sourceforge.net/projects/phpmyadmin/files/">SourceForge
- files page</a>. If you want to see other releases, you need to get them
+ files page</a>. You can also get them
from our Git repository (check <a href="${base_url}improve.${file_ext}#devel">developer information</a> for instructions).
</p>
- <py:for each="release in releases_older">
- <h3>${release.fullname}</h3>
- <xi:include href="_release.tpl" />
- </py:for>
<h2><a id="distributions"></a>Distributions</h2>
<h3>Debian</h3>
hooks/post-receive
--
phpMyAdmin website
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1756-gc052954
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via c052954becf39f564b66047fc39cab35e2d0ebac (commit)
from 659ab6eb522ce03155c5bac5bef4310dc369616c (commit)
- Log -----------------------------------------------------------------
commit c052954becf39f564b66047fc39cab35e2d0ebac
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 14:19:01 2011 +0100
rfe #1312657 [dbi] Default to mysqli extension.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/config.default.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 29dafd6..bf03902 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -143,6 +143,7 @@
- [interface] New default theme pmahomme, dropped darkblue_orange theme.
- rfe #2936155 [auth] Allow to pass additional parameters using signon method.
- rfe #1640812 [auth] Add example for OpenID authentication using signon method.
+- rfe #1312657 [dbi] Default to mysqli extension.
3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown,
diff --git a/libraries/config.default.php b/libraries/config.default.php
index cd219d6..d47b705 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -135,7 +135,7 @@ $cfg['Servers'][$i]['connect_type'] = 'tcp';
*
* @global string $cfg['Servers'][$i]['extension']
*/
-$cfg['Servers'][$i]['extension'] = 'mysql';
+$cfg['Servers'][$i]['extension'] = 'mysqli';
/**
* Use compressed protocol for the MySQL connection (requires PHP >= 4.3.0)
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1755-g659ab6e
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 659ab6eb522ce03155c5bac5bef4310dc369616c (commit)
from 8149492cbeb3d485561ff55718441664c127a59b (commit)
- Log -----------------------------------------------------------------
commit 659ab6eb522ce03155c5bac5bef4310dc369616c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 13:59:43 2011 +0100
Drop not needed requires
-----------------------------------------------------------------------
Summary of changes:
scripts/openid.php | 14 +++-----------
1 files changed, 3 insertions(+), 11 deletions(-)
diff --git a/scripts/openid.php b/scripts/openid.php
index b354088..9a5eb67 100644
--- a/scripts/openid.php
+++ b/scripts/openid.php
@@ -17,18 +17,10 @@
*/
require_once 'OpenID/RelyingParty.php';
-require_once 'OpenID/Discover.php';
-require_once 'OpenID/Store.php';
-require_once 'OpenID/Extension/SREG10.php';
-require_once 'OpenID/Extension/SREG11.php';
-require_once 'OpenID/Extension/AX.php';
-require_once 'OpenID/Extension/UI.php';
-require_once 'OpenID/Extension/OAuth.php';
-require_once 'OpenID/Message.php';
-require_once 'OpenID/Observer/Log.php';
-require_once 'Net/URL2.php';
-/* Map of authenticated users to MySQL user/password pairs */
+/**
+ * Map of authenticated users to MySQL user/password pairs.
+ */
$AUTH_MAP = array(
'http://launchpad.net/~username' => array(
'user' => 'root',
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1754-g8149492
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 8149492cbeb3d485561ff55718441664c127a59b (commit)
via c7abc975560450513879091ea99d535c6b674c9c (commit)
via d0d236fd6219bbfac03fab208010c23e839eeef1 (commit)
from 360e24c6f96758ab2287371ada3b05fec2033f4d (commit)
- Log -----------------------------------------------------------------
commit 8149492cbeb3d485561ff55718441664c127a59b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 13:46:43 2011 +0100
rfe #1640812 [auth] Add example for OpenID authentication using signon method.
commit c7abc975560450513879091ea99d535c6b674c9c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 13:39:17 2011 +0100
Fix typo
commit d0d236fd6219bbfac03fab208010c23e839eeef1
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 11:44:57 2011 +0100
rfe #2936155 [auth] Allow to pass additional parameters using signon method.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 +
Documentation.html | 4 +-
libraries/auth/signon.auth.lib.php | 10 ++
scripts/openid.php | 161 ++++++++++++++++++++++++++++++++++++
scripts/signon.php | 4 +-
5 files changed, 179 insertions(+), 2 deletions(-)
create mode 100644 scripts/openid.php
diff --git a/ChangeLog b/ChangeLog
index 9503204..29dafd6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -141,6 +141,8 @@
- patch #3176420 [Search] Ajaxify browse and delete criteria in DB Search,
thanks to Thilanka Kaushalya
- [interface] New default theme pmahomme, dropped darkblue_orange theme.
+- rfe #2936155 [auth] Allow to pass additional parameters using signon method.
+- rfe #1640812 [auth] Add example for OpenID authentication using signon method.
3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown,
diff --git a/Documentation.html b/Documentation.html
index 956f677..3c40382 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -758,7 +758,9 @@ since this link provides funding for phpMyAdmin.
as introduced in 2.10.0 allows you to log in from prepared PHP
session data. This is useful for implementing single signon
from another application. Sample way how to seed session is in
- signon example: <code>scripts/signon.php</code>. You need to
+ signon example: <code>scripts/signon.php</code>. There is also
+ alternative example using OpenID -
+ <code>scripts/openid.php</code>. You need to
configure <a href="#cfg_Servers_SignonSession"
class="configrule">session name</a> and <a
href="#cfg_Servers_SignonURL" class="configrule">signon
diff --git a/libraries/auth/signon.auth.lib.php b/libraries/auth/signon.auth.lib.php
index 8480c46..6eb0ead 100644
--- a/libraries/auth/signon.auth.lib.php
+++ b/libraries/auth/signon.auth.lib.php
@@ -63,6 +63,9 @@ function PMA_auth_check()
/* Current port */
$single_signon_port = $GLOBALS['cfg']['Server']['port'];
+ /* No configuration updates */
+ $single_signon_cfgupdate = array();
+
/* Are we requested to do logout? */
$do_logout = !empty($_REQUEST['old_usr']);
@@ -104,6 +107,10 @@ function PMA_auth_check()
$single_signon_port = $_SESSION['PMA_single_signon_port'];
}
+ if (isset($_SESSION['PMA_single_signon_cfgupdate'])) {
+ $single_signon_cfgupdate = $_SESSION['PMA_single_signon_cfgupdate'];
+ }
+
/* Also get token as it is needed to access subpages */
if (isset($_SESSION['PMA_single_signon_token'])) {
@@ -127,6 +134,9 @@ function PMA_auth_check()
/* Set the single signon port */
$GLOBALS['cfg']['Server']['port'] = $single_signon_port;
+ /* Configuration update */
+ $GLOBALS['cfg']['Server'] = array_merge($GLOBALS['cfg']['Server'], $single_signon_cfgupdate);
+
/* Restore our token */
if (!empty($pma_token)) {
$_SESSION[' PMA_token '] = $pma_token;
diff --git a/scripts/openid.php b/scripts/openid.php
new file mode 100644
index 0000000..b354088
--- /dev/null
+++ b/scripts/openid.php
@@ -0,0 +1,161 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Single signon for phpMyAdmin using OpenID
+ *
+ * This is just example how to use single signon with phpMyAdmin, it is
+ * not intended to be perfect code and look, only shows how you can
+ * integrate this functionality in your application.
+ *
+ * It uses OpenID pear package, see http://pear.php.net/package/OpenID
+ *
+ * User first authenticates using OpenID and based on content of $AUTH_MAP
+ * the login information is passed to phpMyAdmin in session data.
+ *
+ * @package phpMyAdmin
+ * @subpackage Example
+ */
+
+require_once 'OpenID/RelyingParty.php';
+require_once 'OpenID/Discover.php';
+require_once 'OpenID/Store.php';
+require_once 'OpenID/Extension/SREG10.php';
+require_once 'OpenID/Extension/SREG11.php';
+require_once 'OpenID/Extension/AX.php';
+require_once 'OpenID/Extension/UI.php';
+require_once 'OpenID/Extension/OAuth.php';
+require_once 'OpenID/Message.php';
+require_once 'OpenID/Observer/Log.php';
+require_once 'Net/URL2.php';
+
+/* Map of authenticated users to MySQL user/password pairs */
+$AUTH_MAP = array(
+ 'http://launchpad.net/~username' => array(
+ 'user' => 'root',
+ 'password' => '',
+ ),
+ );
+
+/**
+ * Simple function to show HTML page with given content.
+ */
+function show_page($contents) {
+ header('Content-Type: text/html; charset=utf-8');
+ echo '<?xml version="1.0" encoding="utf-8"?>' . "\n";
+ ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
+<head>
+ <link rel="icon" href="../favicon.ico" type="image/x-icon" />
+ <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
+ <title>phpMyAdmin OpenID signon example</title>
+</head>
+<body>
+<?php
+if (isset($_SESSION) && isset($_SESSION['PMA_single_signon_error_message'])) {
+ echo '<p class="error">' . $_SESSION['PMA_single_signon_message'] . '</p>';
+ unset($_SESSION['PMA_single_signon_message']);
+}
+echo $contents;
+?>
+</body>
+</html>
+<?php
+}
+
+/* Need to have cookie visible from parent directory */
+session_set_cookie_params(0, '/', '', 0);
+/* Create signon session */
+$session_name = 'SignonSession';
+session_name($session_name);
+session_start();
+
+// Determine realm and return_to
+$base = 'http';
+if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
+ $base .= 's';
+}
+$base .= '://' . $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT'];
+
+$realm = $base . '/';
+$returnTo = $base . dirname($_SERVER['PHP_SELF']);
+if ($returnTo[strlen($returnTo) - 1] != '/') {
+ $returnTo .= '/';
+}
+$returnTo .= 'openid.php';
+
+/* Display form */
+if (!count($_GET) && !count($_POST) || isset($_GET['phpMyAdmin'])) {
+ /* Show simple form */
+ $content = '<form action="openid.php" method="post">
+OpenID: <input type="text" name="identifier" /><br />
+<input type="submit" name="start" />
+</form>
+</body>
+</html>';
+ show_page($content);
+ exit;
+}
+
+/* Grab identifier */
+if (isset($_POST['identifier'])) {
+ $identifier = $_POST['identifier'];
+} else if (isset($_SESSION['identifier'])) {
+ $identifier = $_SESSION['identifier'];
+} else {
+ $identifier = null;
+}
+
+/* Create OpenID object */
+try {
+ $o = new OpenID_RelyingParty($returnTo, $realm, $identifier);
+} catch (OpenID_Exception $e) {
+ $contents = "<div class='relyingparty_results'>\n";
+ $contents .= "<pre>" . $e->getMessage() . "</pre>\n";
+ $contents .= "</div class='relyingparty_results'>";
+ show_page($contents);
+ exit;
+}
+
+/* Redirect to OpenID provider */
+if (isset($_POST['start'])) {
+ try {
+ $authRequest = $o->prepare();
+ } catch (OpenID_Exception $e) {
+ $contents = "<div class='relyingparty_results'>\n";
+ $contents .= "<pre>" . $e->getMessage() . "</pre>\n";
+ $contents .= "</div class='relyingparty_results'>";
+ show_page($contents);
+ exit;
+ }
+
+ $url = $authRequest->getAuthorizeURL();
+
+ header("Location: $url");
+ exit;
+} else {
+ /* Grab query string */
+ if (!count($_POST)) {
+ list(, $queryString) = explode('?', $_SERVER['REQUEST_URI']);
+ } else {
+ // I hate php sometimes
+ $queryString = file_get_contents('php://input');
+ }
+
+ /* Check reply */
+ $message = new OpenID_Message($queryString, OpenID_Message::FORMAT_HTTP);
+
+ $id = $message->get('openid.claimed_id');
+
+ if (!empty($id) && isset($AUTH_MAP[$id])) {
+ $_SESSION['PMA_single_signon_user'] = $AUTH_MAP[$id]['user'];
+ $_SESSION['PMA_single_signon_password'] = $AUTH_MAP[$id]['password'];
+ session_write_close();
+ /* Redirect to phpMyAdmin (should use absolute URL here!) */
+ header('Location: ../index.php');
+ } else {
+ show_page('<p>User not allowed!</p>');
+ exit;
+ }
+}
diff --git a/scripts/signon.php b/scripts/signon.php
index d2aac58..acb5f7d 100644
--- a/scripts/signon.php
+++ b/scripts/signon.php
@@ -24,6 +24,8 @@ if (isset($_POST['user'])) {
$_SESSION['PMA_single_signon_password'] = $_POST['password'];
$_SESSION['PMA_single_signon_host'] = $_POST['host'];
$_SESSION['PMA_single_signon_port'] = $_POST['port'];
+ /* Update another field of server configuration */
+ $_SESSION['PMA_single_signon_cfgupdate'] = array('verbose' => 'Signon test');
$id = session_id();
/* Close that session */
session_write_close();
@@ -45,7 +47,7 @@ if (isset($_POST['user'])) {
<body>
<?php
if (isset($_SESSION['PMA_single_signon_error_message'])) {
- echo '<p class="error">' . $_SESSION['PMA_single_signon_port'] . '</p>';
+ echo '<p class="error">' . $_SESSION['PMA_single_signon_message'] . '</p>';
}
?>
<form action="signon.php" method="post">
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 9d1fa772fa4e6b69966d77908d4b57655475941a
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 9d1fa772fa4e6b69966d77908d4b57655475941a (commit)
via 5d10a60c14ad05c7ddedd8b1fdc85d1c56e7d185 (commit)
via 100b2583d3fd684a2030df4fc9db2cad6cea10d2 (commit)
via 4dbcefbada640c08fff77e94c2104cd5c5a8c054 (commit)
from 5017ed4ba931b0d4ddbec5e34a92115737ef8c71 (commit)
- Log -----------------------------------------------------------------
commit 9d1fa772fa4e6b69966d77908d4b57655475941a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 11:36:19 2011 +0100
Update docs
commit 5d10a60c14ad05c7ddedd8b1fdc85d1c56e7d185
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Mar 2 11:47:38 2011 +0200
Translation update done using Pootle.
commit 100b2583d3fd684a2030df4fc9db2cad6cea10d2
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Mar 2 11:42:58 2011 +0200
Translation update done using Pootle.
commit 4dbcefbada640c08fff77e94c2104cd5c5a8c054
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Mar 2 11:42:46 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/tr/Documentation.html | 19 ++++++++++---------
output/zh_CN/index.html | 1 +
po/tr.po | 10 +++++++++-
pot/ca-full.pot | 14 +-------------
pot/ca-html.pot | 2 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 14 +-------------
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 14 +-------------
pot/de-html.pot | 2 +-
pot/de-txt.pot | 2 +-
pot/el-full.pot | 14 +-------------
pot/el-html.pot | 2 +-
pot/el-txt.pot | 2 +-
pot/en_GB-full.pot | 14 +-------------
pot/en_GB-html.pot | 2 +-
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 14 +-------------
pot/es-html.pot | 2 +-
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 14 +-------------
pot/fi-html.pot | 2 +-
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 14 +-------------
pot/fr-html.pot | 2 +-
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 14 +-------------
pot/gl-html.pot | 2 +-
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 14 +-------------
pot/hu-html.pot | 2 +-
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 14 +-------------
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 14 +-------------
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 14 +-------------
pot/ja-html.pot | 2 +-
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 14 +-------------
pot/ka-html.pot | 2 +-
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 14 +-------------
pot/lt-html.pot | 2 +-
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 14 +-------------
pot/mn-html.pot | 2 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 14 +-------------
pot/nb-html.pot | 2 +-
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 14 +-------------
pot/nl-html.pot | 2 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 14 +-------------
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 14 +-------------
pot/pt_BR-html.pot | 2 +-
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 14 +-------------
pot/ro-html.pot | 2 +-
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 14 +-------------
pot/sk-html.pot | 2 +-
pot/sk-txt.pot | 2 +-
pot/sl-full.pot | 14 +-------------
pot/sl-html.pot | 2 +-
pot/sl-txt.pot | 2 +-
pot/sv-full.pot | 4 ++--
pot/sv-html.pot | 2 +-
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 14 +-------------
pot/tr-html.pot | 2 +-
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 14 +-------------
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 14 +-------------
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
84 files changed, 102 insertions(+), 404 deletions(-)
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index 814a823..bb9cdde 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -746,7 +746,7 @@ sütunlar)</i> ve <i>mysql.tables_priv ("Grantor" ve
"Timestamp" hariç tüm sütunlar)</i> tablolarında <tt>SELECT</tt>
yetkisinin olduğu ayrıntılı MySQL hesabı sağlamanız gerekir.<br />
Lütfen daha fazla bilgi için "Kimlik doğrulama kipleri
-kullanımı"'nda <a href="#setup">kur bölümü</a>'ne bakın.<br /><br />
+kullanımı"nda <a href="#setup">kur bölümü</a>'ne bakın.<br /><br />
phpMyAdmin'in 2.2.5 sürümünden önce bunlar "stduser/stdpass"
olarak adlandırılırdı.</dd>
@@ -785,7 +785,7 @@ yapılandırmanız gerekir.</li>
</ul>
Lütfen daha fazla bilgi için "Kimlik doğrulama kipleri
-kullanımı"'nda <a href="#setup">kur bölümü</a>'ne bakın.
+kullanımı"nda <a href="#setup">kur bölümü</a>'ne bakın.
</dd>
<dt id="servers_auth_http_realm">
<span
@@ -829,14 +829,15 @@ kullanıldığında gerekmez ve boş olmalıdır.</dd>
boolean
</dt>
<dd>
- Allow attempt to log in without password when a login with password
-fails. This can be used together with http authentication, when
-authentication is done some other way and phpMyAdmin gets user name from
-auth and uses empty password for connecting to MySQL. Password login is
-still tried first, but as fallback, no password method is tried.</dd>
+ Parola ile oturum açma başarısız olduğunda parolasız oturum açma girişimine
+izin verir. Bu, http kimlik doğrulaması ile birlikte de kullanılabilir,
+diğer bazı yollarla kimlik doğrulaması bittiğinde ve phpMyAdmin kimlik
+doğrulamasından kullanıcı adını getirdiğinde ve MySQL'e bağlanmak için boş
+parola kullandığında. Parola oturum açma hala ile denenendir, ama son çare
+olarak, parolasız yöntem denenir.</dd>
<dt id="servers_only_db">
- <span id="cfg_Servers_only_db">$cfg['Servers'][$i]['only_db']</span> string
-or array
+ <span id="cfg_Servers_only_db">$cfg['Servers'][$i]['only_db']</span> dizgisi
+veya dizisi
</dt>
<dd>
If set to a (an array of) database name(s), only this (these) database(s)
diff --git a/output/zh_CN/index.html b/output/zh_CN/index.html
index efbb75c..9a12c28 100644
--- a/output/zh_CN/index.html
+++ b/output/zh_CN/index.html
@@ -11,6 +11,7 @@
<p>已翻译为简体中文的文件:</p>
<ul>
<li><a href="Documentation.html">主文档</a></li>
+<li><a href="INSTALL">安装</a></li>
<li><a href="README">读我</a></li>
<li><a href="TODO">计划</a></li>
</ul>
diff --git a/po/tr.po b/po/tr.po
index e0de04a..754f8dd 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-19 23:00+0100\n"
-"PO-Revision-Date: 2011-03-02 00:24+0200\n"
+"PO-Revision-Date: 2011-03-02 11:47+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -2149,6 +2149,12 @@ msgid ""
"password for connecting to MySQL. Password login is still tried first, but "
"as fallback, no password method is tried."
msgstr ""
+"Parola ile oturum açma başarısız olduğunda parolasız oturum açma girişimine "
+"izin verir. Bu, http kimlik doğrulaması ile birlikte de kullanılabilir, "
+"diğer bazı yollarla kimlik doğrulaması bittiğinde ve phpMyAdmin kimlik "
+"doğrulamasından kullanıcı adını getirdiğinde ve MySQL'e bağlanmak için boş "
+"parola kullandığında. Parola oturum açma hala ile denenendir, ama son çare "
+"olarak, parolasız yöntem denenir."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:809
@@ -2156,6 +2162,8 @@ msgid ""
"<span id=\"cfg_Servers_only_db\">$cfg['Servers'][$i]['only_db']</span> "
"string or array"
msgstr ""
+"<span id=\"cfg_Servers_only_db\">$cfg['Servers'][$i]['only_db']</span> dizgisi "
+"veya dizisi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:812
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 4d7b5aa..48258af 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ca-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ca-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/ca-html.pot b/pot/ca-html.pot
index 9fd83e3..963060d 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/ca-txt.pot b/pot/ca-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 d0644eb..80175ca 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# cs-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# cs-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-html.pot b/pot/cs-html.pot
index 65c2a58..50710aa 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/cs-txt.pot
index 86fb2eb..6f1dabc 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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 e904286..994e923 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# de-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# de-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/de-html.pot
index 03cc875..6177fda 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/de-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/el-full.pot b/pot/el-full.pot
index 56280cf..54acf01 100644
--- a/pot/el-full.pot
+++ b/pot/el-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# el-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:02+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# el-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/el-html.pot b/pot/el-html.pot
index f73b847..8ea8589 100644
--- a/pot/el-html.pot
+++ b/pot/el-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: 2011-02-19 23:02+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/el-txt.pot b/pot/el-txt.pot
index 53b9553..81c88e5 100644
--- a/pot/el-txt.pot
+++ b/pot/el-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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 eb49d37..249cb33 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# en_GB-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# en_GB-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/en_GB-html.pot
index e9315a1..6abdc49 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/en_GB-txt.pot
index 53b9553..81c88e5 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 38794d6..6b965c2 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# es-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# es-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/es-html.pot
index ebe657d..58d445a 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/es-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 266368e..122adfa 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fi-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# fi-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/fi-html.pot
index 7556549..bdff084 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/fi-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 0567b6d..b64d72e 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# fr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-html.pot b/pot/fr-html.pot
index 6712d3a..118e956 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/fr-txt.pot
index 86fb2eb..6f1dabc 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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 437c418..4365d76 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# gl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# gl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-html.pot b/pot/gl-html.pot
index 6f69af0..fe90c78 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/gl-txt.pot
index 86fb2eb..6f1dabc 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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 d546899..a6a0c60 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hu-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# hu-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/hu-html.pot
index 8e24e8a..cbae59d 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/hu-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 a1f56da..b4a46d4 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hy-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# hy-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/hy-html.pot
index f8a1f82..56c6004 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/hy-txt.pot
index 53b9553..81c88e5 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 dcc6278..3403b21 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# it-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# it-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-html.pot b/pot/it-html.pot
index 684206e..6738799 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/it-txt.pot
index 53b9553..6f1dabc 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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 772ceff..0d41dff 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ja-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ja-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-html.pot b/pot/ja-html.pot
index a6b03af..55247df 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/ja-txt.pot
index 53b9553..6f1dabc 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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 9d5d147..7a1b16d 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ka-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ka-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/ka-html.pot
index daa56ef..33dee1d 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/ka-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 2c5d1e2..d42aebc 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# lt-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# lt-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/lt-html.pot
index 7a89a3e..8c26782 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/lt-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 36fbe14..67a2f40 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# mn-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# mn-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/mn-html.pot
index bb5f0c4..42490af 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/mn-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 416e083..f38bd73 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nb-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# nb-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/nb-html.pot
index 308e79a..d341e00 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/nb-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 7e89888..b07119e 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# nl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/nl-html.pot
index 22de0f2..4035367 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/nl-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 95bf9fc..cd8f6d5 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# pl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-html.pot b/pot/pl-html.pot
index 61d5090..7c7a063 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/pl-txt.pot
index 53b9553..6f1dabc 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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 04ead69..66eb2c5 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pt_BR-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# pt_BR-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/pt_BR-html.pot
index 38fc3ec..f74cf6d 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/pt_BR-txt.pot
index 53b9553..81c88e5 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 a1d7137..03c9c73 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ro-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ro-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/ro-html.pot
index 56c71d8..ecb5a7b 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/ro-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 e0e5f79..38f2d24 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sk-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# sk-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/sk-html.pot
index f35cd01..756f60a 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/sk-txt.pot
index 53b9553..81c88e5 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/sl-full.pot b/pot/sl-full.pot
index d676dd3..176599e 100644
--- a/pot/sl-full.pot
+++ b/pot/sl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# sl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/sl-html.pot b/pot/sl-html.pot
index d435f29..83c4c0c 100644
--- a/pot/sl-html.pot
+++ b/pot/sl-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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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/sl-txt.pot b/pot/sl-txt.pot
index 53b9553..81c88e5 100644
--- a/pot/sl-txt.pot
+++ b/pot/sl-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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 b12a936..d920a18 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -9,7 +9,7 @@ msgstr ""
"#-#-#-#-# sv-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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"
@@ -20,7 +20,7 @@ msgstr ""
"#-#-#-#-# sv-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/sv-html.pot
index 757a695..c6b23a1 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:18+0100\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-txt.pot b/pot/sv-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 5b6d821..3d16af5 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# tr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:00+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# tr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/tr-html.pot
index 682c444..dfa5e3a 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: 2011-02-19 23:00+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/tr-txt.pot
index 86fb2eb..81c88e5 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: 2011-02-07 23:16+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 12ab7a1..5ab625c 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_CN-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# zh_CN-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/zh_CN-html.pot
index 26370bb..309ef5a 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/zh_CN-txt.pot
index 53b9553..81c88e5 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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 f9c00b0..981ca29 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_TW-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-19 23:01+0100\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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# zh_TW-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-html.pot b/pot/zh_TW-html.pot
index bc2ab21..dbacb5c 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: 2011-02-19 23:01+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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-txt.pot b/pot/zh_TW-txt.pot
index 53b9553..81c88e5 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: 2011-02-07 23:17+0100\n"
+"POT-Creation-Date: 2011-03-02 11:19+0100\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_4_0BETA3-1751-g360e24c
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 360e24c6f96758ab2287371ada3b05fec2033f4d (commit)
via eeafbbc053588b84236bbb19ff9400c968adbae8 (commit)
via 29ff2c5915832ad36df4dcc939909e7fca798998 (commit)
from 5d0b685d74b5912301aa595b9e99e8d25f80425b (commit)
- Log -----------------------------------------------------------------
commit 360e24c6f96758ab2287371ada3b05fec2033f4d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 10:51:14 2011 +0100
Whitespace cleanup
commit eeafbbc053588b84236bbb19ff9400c968adbae8
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 10:50:56 2011 +0100
Display help links in titles
commit 29ff2c5915832ad36df4dcc939909e7fca798998
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 10:49:34 2011 +0100
Add link to documentation
-----------------------------------------------------------------------
Summary of changes:
server_variables.php | 1 +
themes/pmahomme/css/theme_right.css.php | 105 ++++++++++++++++---------------
2 files changed, 54 insertions(+), 52 deletions(-)
diff --git a/server_variables.php b/server_variables.php
index 4616395..fefa119 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -32,6 +32,7 @@ require './libraries/server_links.inc.php';
echo '<h2>' . "\n"
. ($cfg['MainPageIconic'] ? '<img class="icon" src="' . $pmaThemeImage . 's_vars.png" width="16" height="16" alt="" />' : '')
. '' . __('Server variables and settings') . "\n"
+ . PMA_showMySQLDocu('server_system_variables','server_system_variables')
. '</h2>' . "\n";
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index 515523c..6730932 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -53,6 +53,7 @@ h2 {
}
/* Hiding icons in the page titles, they just add clutter MH */
h2 img{display:none;}
+h2 a img{display:inline;}
/* Set all tables with data... to 100%, let it flow! */
.data{width:100%}
@@ -111,8 +112,8 @@ th {
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
-
-
+
+
}
a img {
@@ -136,11 +137,11 @@ input[type=text]{
border-radius:2px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
-
+
box-shadow:0 1px 2px #ddd;
-moz-box-shadow:0 1px 2px #ddd;
- -webkit-box-shadow:0 1px 2px #ddd;
-
+ -webkit-box-shadow:0 1px 2px #ddd;
+
background:url(./themes/pmahomme/img/input_bg.gif);
border:1px solid #aaa;
color:#555555;
@@ -153,11 +154,11 @@ input[type=password]{
border-radius:2px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
-
+
box-shadow:0 1px 2px #ddd;
-moz-box-shadow:0 1px 2px #ddd;
- -webkit-box-shadow:0 1px 2px #ddd;
-
+ -webkit-box-shadow:0 1px 2px #ddd;
+
background:url(./themes/pmahomme/img/input_bg.gif);
border:1px solid #aaa;
color:#555555;
@@ -174,13 +175,13 @@ input[type=submit]{
color: #111;
text-decoration: none;
background: #ddd;
-
+
border-radius: 12px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
-
+
text-shadow: 0px 1px 0px #fff;
-
+
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
@@ -234,9 +235,9 @@ fieldset legend {
-webkit-border-radius:2px;
border:1px solid #aaa;
background-color: #fff;
- -moz-box-shadow:3px 3px 15px #bbb;
- -webkit-box-shadow:3px 3px 15px #bbb;
- box-shadow:3px 3px 15px #bbb;
+ -moz-box-shadow:3px 3px 15px #bbb;
+ -webkit-box-shadow:3px 3px 15px #bbb;
+ box-shadow:3px 3px 15px #bbb;
}
/* buttons in some browsers (eg. Konqueror) are block elements,
@@ -270,11 +271,11 @@ select{
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
-
+
-moz-box-shadow:0 1px 2px #ddd;
- -webkit-box-shadow:0 1px 2px #ddd;
+ -webkit-box-shadow:0 1px 2px #ddd;
box-shadow:0 1px 2px #ddd;
-
+
border:1px solid #aaa;
color:#333333;
padding:3px;
@@ -301,7 +302,7 @@ fieldset.tblFooters {
clear: both;
-webkit-border-radius:0 0 4px 4px;
-moz-border-radius:0 0 4px 4px;
- border-radius: 0 0 4px 5px;
+ border-radius: 0 0 4px 5px;
}
fieldset .formelement {
@@ -553,7 +554,7 @@ div.footnotes {
-webkit-border-radius:5px;
border-radius:5px;
-moz-box-shadow: 0px 1px 2px #fff inset;
- -webkit-box-shadow: 0px 1px 2px #fff inset;
+ -webkit-box-shadow: 0px 1px 2px #fff inset;
}
.success {
@@ -774,7 +775,7 @@ ul#topmenu, ul#topmenu2, ul.tabs {
list-style-type: none;
margin: 0;
padding: 0;
-
+
}
ul#topmenu2 {
@@ -786,7 +787,7 @@ ul#topmenu2 {
ul#topmenu li, ul#topmenu2 li {
float: <?php echo $left; ?>;
margin: 0;
- /* padding: 4px; MH */
+ /* padding: 4px; MH */
vertical-align: middle;
}
@@ -811,7 +812,7 @@ ul#topmenu a, ul#topmenu span {
ul#topmenu ul a {
margin: 0;
-
+
}
/* MH added for hide/show more menu */
ul#topmenu .submenu {
@@ -841,7 +842,7 @@ ul#topmenu li:hover ul, ul#topmenu .submenuhover ul {
display: block;
font-weight:3em;
background:#fff;
-
+
}
ul#topmenu ul li {
@@ -856,9 +857,9 @@ ul#topmenu2 a {
border:1px solid #ddd;
border-radius: 20px;
-moz-border-radius: 20px;
- -webkit-border-radius: 20px;
+ -webkit-border-radius: 20px;
background:#f2f2f2;
-
+
}
/* disabled tabs */
@@ -923,22 +924,22 @@ ul#topmenu a, ul#topmenu span {
border-width: 1pt 1pt 0 1pt;
-moz-border-radius: 0.4em 0.4em 0 0;
border-radius: 0.4em 0.4em 0 0;
-
- MH
+
+ MH
*/
}
ul#topmenu ul a {
border-width: 1pt 0 0 0;
-moz-border-radius: 0;
- -webkit-border-radius: 0;
+ -webkit-border-radius: 0;
border-radius: 0;
-
+
}
ul#topmenu ul li:first-child a {
border-width: 0;
-
+
}
/* enabled hover/active tabs */
@@ -1245,8 +1246,8 @@ div#querywindowcontainer fieldset {
-webkit-border-radius:5px;
border-radius:5px;
-moz-box-shadow: 0px 1px 2px #fff inset;
- -webkit-box-shadow: 0px 1px 2px #fff inset;
- box-shadow:0px 1px 2px #fff; inset;
+ -webkit-box-shadow: 0px 1px 2px #fff inset;
+ box-shadow:0px 1px 2px #fff; inset;
background:#9dcce8;
color:#fff;
}
@@ -1262,11 +1263,11 @@ div#querywindowcontainer fieldset {
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
-
+
box-shadow:0px 1px 1px #fff inset;
-webkit-box-shadow:0px 1px 1px #fff inset;
-moz-box-shadow:0px 1px 1px #fff inset;
-
+
}
#sectionlinks a, #statuslinks a{
font-size:0.88em;
@@ -1292,7 +1293,7 @@ div#querywindowcontainer fieldset {
background: -moz-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
}
-#sectionlinks a:hover, #statuslinks a:hover{
+#sectionlinks a:hover, #statuslinks a:hover{
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
background: -moz-linear-gradient(top, #cccccc, #dddddd);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
@@ -1321,10 +1322,10 @@ textarea#sqlquery {
/* height: 100%; */
-moz-border-radius:4px;
-webkit-border-radius:4px;
- border-raduis:4px
+ border-raduis:4px
border:1px solid #aaa;
padding:5px;
- font-family:inherit;
+ font-family:inherit;
}
textarea#sql_query_edit{
height:7em;
@@ -1477,12 +1478,12 @@ li#li_user_preferences {
display: block;
margin-top: 1em;
margin-bottom: 1em;
- background:#f3f3f3;
+ background:#f3f3f3;
width: 100%;
border-top: 0.1em solid silver;
text-align: <?php echo $right; ?>;
-
-
+
+
}
#table_innodb_bufferpool_usage,
@@ -1561,17 +1562,17 @@ code.sql, div.sqlvalidate {
}
.group {
-
+
border:1px solid #999;
background:#f3f3f3;
-moz-border-radius:4px;
-webkit-border-radius:4px;
- border-radius:4px;
+ border-radius:4px;
-moz-box-shadow:2px 2px 5px #ccc;
-webkit-box-shadow:2px 2px 5px #ccc;
box-shadow:3px 3px 10px #ddd;
- margin-bottom: 1em;
- padding-bottom: 1em;
+ margin-bottom: 1em;
+ padding-bottom: 1em;
}
.group h2 {
@@ -1648,7 +1649,7 @@ table#serverconnection_trg_local {
padding: 5px; /** Keep a little space on the sides of the text */
min-width: 70px;
max-width: 350px; /** This value might have to be changed */
-
+
z-index: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index:1000) might hide this */
text-align: center;
display: inline;
@@ -1662,13 +1663,13 @@ table#serverconnection_trg_local {
/* MH additional styles */
.ajax_notification{
- margin-top:200px;background:#ffe57e;
+ margin-top:200px;background:#ffe57e;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
- box-shadow: 0px 5px 90px #888;
+ box-shadow: 0px 5px 90px #888;
-moz-box-shadow: 0px 5px 90px #888;
- -webkit-box-shadow: 0px 5px 90px #888;
+ -webkit-box-shadow: 0px 5px 90px #888;
}
#loading_parent {
@@ -1715,13 +1716,13 @@ table#serverconnection_trg_local {
color: #111;
text-decoration: none;
background: #ddd;
-
+
border-radius: 12px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
-
+
text-shadow: 0px 1px 0px #fff;
-
+
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
@@ -2100,4 +2101,4 @@ fieldset .disabled-field td {
#prefs_autoload {
margin-bottom: 0.5em;
-}
\ No newline at end of file
+}
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin themes branch, master, updated. 657386a0f4b14e7220e32a9f041e00a5267a895e
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 657386a0f4b14e7220e32a9f041e00a5267a895e (commit)
from 34e783554cb5056bdb7ff649a5c1b93d0a93f609 (commit)
- Log -----------------------------------------------------------------
commit 657386a0f4b14e7220e32a9f041e00a5267a895e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 09:59:47 2011 +0100
Add script for making theme releases
-----------------------------------------------------------------------
Summary of changes:
create-release.sh | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 90 insertions(+), 0 deletions(-)
create mode 100755 create-release.sh
diff --git a/create-release.sh b/create-release.sh
new file mode 100755
index 0000000..1660713
--- /dev/null
+++ b/create-release.sh
@@ -0,0 +1,90 @@
+#!/bin/sh
+
+set -e
+
+usage() {
+ echo 'Usage: create-release.sh dir [--tag] [--upload USERNAME]'
+ echo
+ echo 'Creates a zip for themes download and optionally tags the git tree and uploads to sf.net'
+}
+
+if [ "x$1" = "x-h" -o "x$1" = "x--help" ] ; then
+ usage
+ exit 0
+fi
+if [ $# -eq 0 ] ; then
+ usage
+ exit 1
+fi
+
+THEME="${1%/}"
+if [ ! -d "$THEME" ] ; then
+ echo "Directory $THEME does not exist!"
+ exit 2
+fi
+
+shift
+
+TAG=0
+UPLOAD=0
+
+while [ $# -gt 0 ] ; do
+ case "$1" in
+ --tag)
+ TAG=1
+ shift
+ ;;
+ --upload)
+ UPLOAD=1
+ shift
+ UPLOAD_USER="$1"
+ if [ -z "$UPLOAD_USER" ] ; then
+ echo "Missing sf.net username for upload!"
+ usage
+ exit 1
+ fi
+ shift
+ ;;
+ *)
+ echo "Unknown parameter: $1"
+ usage
+ exit 1
+ ;;
+ esac
+done
+
+VERSION=`php -r "include '$THEME/info.inc.php'; echo \\\$theme_full_version;"`
+NAME=$THEME-$VERSION
+
+echo "Creating release for $THEME $VERSION ($NAME)"
+
+mkdir -p release
+
+rm -rf release/$NAME* release/$THEME
+
+cp -r $THEME release/$THEME
+
+cd release
+
+7za a -bd -tzip $NAME.zip $THEME
+
+cd ..
+
+echo "Release files:"
+ls -la release/$NAME.zip
+
+if [ $TAG -eq 1 ] ; then
+ git tag -a -m "Tagging release of theme $THEME $VERSION" $NAME
+fi
+
+if [ $UPLOAD -eq 1 ] ; then
+ sftp $UPLOAD_USER,phpmyadmin(a)frs.sourceforge.net <<EOT
+cd /home/frs/project/p/ph/phpmyadmin/themes
+mkdir $THEME
+cd $THEME
+mkdir $VERSION
+cd $VERSION
+put release/$NAME.zip
+EOT
+fi
+
hooks/post-receive
--
phpMyAdmin themes
1
0