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

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1612-g5a75ca1
by Marc Delisle 18 Apr '10
by Marc Delisle 18 Apr '10
18 Apr '10
The branch, master has been updated
via 5a75ca180ae0eb5c47a80428c7707cca6d5d1269 (commit)
from f3f41cbe78693781a9874c59a8ae736d324797bd (commit)
- Log -----------------------------------------------------------------
commit 5a75ca180ae0eb5c47a80428c7707cca6d5d1269
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Apr 17 19:22:12 2010 -0400
rfe #2988633 Improve ON DELETE/ON UPDATE drop-downs
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
js/tbl_relation.js | 26 ++++++++++++++++++++++++++
tbl_relation.php | 12 ++++++++----
3 files changed, 35 insertions(+), 4 deletions(-)
create mode 100644 js/tbl_relation.js
diff --git a/ChangeLog b/ChangeLog
index f3dd9fc..57c1c8c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -75,6 +75,7 @@ $Id$
- rfe #2972969 [interface] Fix flipping of headers in non-IE browsers.
+ rfe #2964518 [interface] Allow to choose servers from configuration for
synchronisation.
++ rfe #2988633 [relation] Improve ON DELETE/ON UPDATE drop-downs
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/js/tbl_relation.js b/js/tbl_relation.js
new file mode 100644
index 0000000..5cdb0d7
--- /dev/null
+++ b/js/tbl_relation.js
@@ -0,0 +1,26 @@
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * for tbl_relation.php
+ *
+ */
+function show_hide_clauses(thisDropdown) {
+ // here, one span contains the label and the clause dropdown
+ // and we have one span for ON DELETE and one for ON UPDATE
+ //
+ if (thisDropdown.val() != '') {
+ thisDropdown.parent().next('span').show().next('span').show();
+ } else {
+ thisDropdown.parent().next('span').hide().next('span').hide();
+ }
+}
+
+$(document).ready(function() {
+ // initial display
+ $('.referenced_column_dropdown').each(function(index, one_dropdown) {
+ show_hide_clauses($(one_dropdown));
+ });
+ // change
+ $('.referenced_column_dropdown').change(function() {
+ show_hide_clauses($(this));
+ });
+});
diff --git a/tbl_relation.php b/tbl_relation.php
index 997ef60..e1b3253 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -18,6 +18,8 @@
* Gets some core libraries
*/
require_once './libraries/common.inc.php';
+$GLOBALS['js_include'][] = 'tbl_relation.js';
+
require_once './libraries/tbl_common.php';
$url_query .= '&goto=tbl_sql.php';
@@ -61,7 +63,6 @@ function PMA_generate_dropdown($dropdown_question, $select_name, $choices, $sele
echo htmlspecialchars($dropdown_question) . ' ';
echo '<select name="' . htmlspecialchars($select_name) . '">' . "\n";
- echo '<option value=""></option>' . "\n";
foreach ($choices as $one_value => $one_label) {
echo '<option value="' . htmlspecialchars($one_value) . '"';
@@ -471,7 +472,7 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
if (!empty($save_row[$i]['Key'])) {
?>
<span class="formelement">
- <select name="destination_foreign[<?php echo $myfield_md5; ?>]">
+ <select name="destination_foreign[<?php echo $myfield_md5; ?>]" class="referenced_column_dropdown">
<?php
if (isset($existrel_foreign[$myfield])) {
// need to backquote to support a dot character inside
@@ -508,10 +509,13 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
</span>
<span class="formelement">
<?php
+ // For ON DELETE and ON UPDATE, the default action
+ // is RESTRICT as per MySQL doc; however, a SHOW CREATE TABLE
+ // won't display the clause if it's set as RESTRICT.
PMA_generate_dropdown('ON DELETE',
'on_delete[' . $myfield_md5 . ']',
$options_array,
- isset($existrel_foreign[$myfield]['on_delete']) ? $existrel_foreign[$myfield]['on_delete']: '');
+ isset($existrel_foreign[$myfield]['on_delete']) ? $existrel_foreign[$myfield]['on_delete']: 'RESTRICT');
echo '</span>' . "\n"
.'<span class="formelement">' . "\n";
@@ -519,7 +523,7 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
PMA_generate_dropdown('ON UPDATE',
'on_update[' . $myfield_md5 . ']',
$options_array,
- isset($existrel_foreign[$myfield]['on_update']) ? $existrel_foreign[$myfield]['on_update']: '');
+ isset($existrel_foreign[$myfield]['on_update']) ? $existrel_foreign[$myfield]['on_update']: 'RESTRICT');
echo '</span>' . "\n";
} else {
echo $strNoIndex;
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1611-gf3f41cb
by Marc Delisle 17 Apr '10
by Marc Delisle 17 Apr '10
17 Apr '10
The branch, master has been updated
via f3f41cbe78693781a9874c59a8ae736d324797bd (commit)
from c0fed158771dbc443547835c52598471fe9031af (commit)
- Log -----------------------------------------------------------------
commit f3f41cbe78693781a9874c59a8ae736d324797bd
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Apr 17 13:51:08 2010 -0400
remove one instance of inline js
-----------------------------------------------------------------------
Summary of changes:
js/cross_framing_protection.js | 20 ++++++++++++++++++++
libraries/header_scripts.inc.php | 18 +-----------------
2 files changed, 21 insertions(+), 17 deletions(-)
create mode 100644 js/cross_framing_protection.js
diff --git a/js/cross_framing_protection.js b/js/cross_framing_protection.js
new file mode 100644
index 0000000..e69d162
--- /dev/null
+++ b/js/cross_framing_protection.js
@@ -0,0 +1,20 @@
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Conditionally called from libraries/header_scripts.inc.php
+ * if third-party framing is not allowed
+ *
+ */
+
+try {
+ // can't access this if on a different domain
+ var topdomain = top.document.domain;
+ // double-check just for sure
+ if (topdomain != self.document.domain) {
+ alert("Redirecting...");
+ top.location.replace(self.document.URL.substring(0, self.document.URL.lastIndexOf("/")+1));
+ }
+}
+catch(e) {
+ alert("Redirecting... (error: " + e);
+ top.location.replace(self.document.URL.substring(0, self.document.URL.lastIndexOf("/")+1));
+}
diff --git a/libraries/header_scripts.inc.php b/libraries/header_scripts.inc.php
index bcb6528..6a4aacb 100644
--- a/libraries/header_scripts.inc.php
+++ b/libraries/header_scripts.inc.php
@@ -18,23 +18,7 @@ require_once './libraries/common.inc.php';
// Cross-framing protection
if ( false === $GLOBALS['cfg']['AllowThirdPartyFraming']) {
?>
-<script type="text/javascript">
-//<![CDATA[
-try {
- // can't access this if on a different domain
- var topdomain = top.document.domain;
- // double-check just for sure
- if (topdomain != self.document.domain) {
- alert("Redirecting...");
- top.location.replace(self.document.URL.substring(0, self.document.URL.lastIndexOf("/")+1));
- }
-}
-catch(e) {
- alert("Redirecting... (error: " + e);
- top.location.replace(self.document.URL.substring(0, self.document.URL.lastIndexOf("/")+1));
-}
-//]]>
-</script>
+<script src="./js/cross_framing_protection.js" type="text/javascript"></script>
<?php
}
// generate title
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1610-gc0fed15
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via c0fed158771dbc443547835c52598471fe9031af (commit)
from 0189f96b12a0bab990f4e188249e47e0f1b8dc08 (commit)
- Log -----------------------------------------------------------------
commit c0fed158771dbc443547835c52598471fe9031af
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 16:40:04 2010 +0200
Reformat the code a bit.
-----------------------------------------------------------------------
Summary of changes:
server_synchronize.php | 49 +++++++++++++++++++++++++----------------------
1 files changed, 26 insertions(+), 23 deletions(-)
diff --git a/server_synchronize.php b/server_synchronize.php
index c4e08fb..04967f2 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -1110,23 +1110,25 @@ if (isset($_REQUEST['synchronize_db'])) {
. PMA_generate_common_hidden_inputs('', '');
echo '<fieldset>';
echo '<legend>' . $GLOBALS['strSynchronize'] . '</legend>';
- /**
- * Displays the forms
- */
+ /**
+ * Displays the forms
+ */
$databases = PMA_DBI_get_databases_full(null, false, null, 'SCHEMA_NAME',
'ASC', 0, true);
foreach ($cons as $type) {
- echo '<table id="serverconnection_' . $type . '_remote" class="data">
+?>
+ <table id="serverconnection_<?php echo $type; ?>_remote" class="data">
<tr>
- <th colspan="2">' . $GLOBALS['strDatabase_'.$type] . '</th>
+ <th colspan="2"><?php echo $GLOBALS['strDatabase_'.$type]; ?></th>
</tr>
<tr class="odd">
<td colspan="2" style="text-align: center">
- <select name="' . $type . '_type" id="' . $type . '_type" class="server_selector">
- <option value="rmt">' . $GLOBALS['strRemoteServer'] . '</option>
- <option value="cur">' . $GLOBALS['strCurrentServer'] . '</option>';
+ <select name="<?php echo $type; ?>_type" id="<?php echo $type; ?>_type" class="server_selector">
+ <option value="rmt"><?php echo $GLOBALS['strRemoteServer']; ?></option>
+ <option value="cur"><?php echo $GLOBALS['strCurrentServer']; ?></option>
+<?php
foreach ($GLOBALS['cfg']['Servers'] as $key => $tmp_server) {
if (empty($tmp_server['host'])) {
continue;
@@ -1156,37 +1158,38 @@ if (isset($_REQUEST['synchronize_db'])) {
echo '<option value="' . $value . '">'
. htmlspecialchars(sprintf(__('Configuration: %s'), $label)) . '</option>' . "\n";
} // end foreach
- echo '
+?>
</select>
</td>
</tr>
<tr class="even toggler remote-server">
- <td>' . $GLOBALS['strHost'] . '</td>
- <td><input type="text" name="' . $type . '_host" class="server-host" /></td>
+ <td><?php echo $GLOBALS['strHost']; ?></td>
+ <td><input type="text" name="<?php echo $type; ?>_host" class="server-host" /></td>
</tr>
<tr class="odd toggler remote-server">
- <td>' . $GLOBALS['strPort'] . '</td>
- <td><input type="text" name="' . $type . '_port" class="server-port" value="3306" maxlength="5" size="5" /></td>
+ <td><?php echo $GLOBALS['strPort']; ?></td>
+ <td><input type="text" name="<?php echo $type; ?>_port" class="server-port" value="3306" maxlength="5" size="5" /></td>
</tr>
<tr class="even toggler remote-server">
- <td>' . $GLOBALS['strSocket'] . '</td>
- <td><input type="text" name="' . $type . '_socket" class="server-socket" /></td>
+ <td><?php echo $GLOBALS['strSocket']; ?></td>
+ <td><input type="text" name="<?php echo $type; ?>_socket" class="server-socket" /></td>
</tr>
<tr class="odd toggler remote-server">
- <td>' . $GLOBALS['strUserName']. '</td>
- <td><input type="text" name="'. $type . '_username" class="server-user" /></td>
+ <td><?php echo $GLOBALS['strUserName']; ?></td>
+ <td><input type="text" name="<?php echo $type; ?>_username" class="server-user" /></td>
</tr>
<tr class="even toggler remote-server">
- <td>' . $GLOBALS['strPassword'] . '</td>
- <td><input type="password" name="' . $type . '_pass" class="server-pass" /> </td>
+ <td><?php echo $GLOBALS['strPassword']; ?></td>
+ <td><input type="password" name="<?php echo $type; ?>_pass" class="server-pass" /> </td>
</tr>
<tr class="odd toggler remote-server">
- <td>' . $GLOBALS['strDatabase'] . '</td>
- <td><input type="text" name="' . $type . '_db" class="server-db" /></td>
+ <td><?php echo $GLOBALS['strDatabase']; ?></td>
+ <td><input type="text" name="<?php echo $type; ?>_db" class="server-db" /></td>
</tr>
<tr class="even toggler current-server" style="display: none;">
- <td>' . $GLOBALS['strDatabase'] . '</td>
- <td>';
+ <td><?php echo $GLOBALS['strDatabase']; ?></td>
+ <td>
+<?php
// these unset() do not complain if the elements do not exist
unset($databases['mysql']);
unset($databases['information_schema']);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1609-g0189f96
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 0189f96b12a0bab990f4e188249e47e0f1b8dc08 (commit)
from 4aecf17028ccb21072bcbf00d3bbf8fffb1c2b5a (commit)
- Log -----------------------------------------------------------------
commit 0189f96b12a0bab990f4e188249e47e0f1b8dc08
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 16:32:21 2010 +0200
Default has changed.
-----------------------------------------------------------------------
Summary of changes:
config.sample.inc.php | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/config.sample.inc.php b/config.sample.inc.php
index e952c80..562ba52 100644
--- a/config.sample.inc.php
+++ b/config.sample.inc.php
@@ -89,14 +89,6 @@ $cfg['SaveDir'] = '';
//$cfg['LightTabs'] = true;
/**
- * default for 'ORDER BY' clause (valid values are 'ASC', 'DESC' or 'SMART' -ie
- * descending order for fields of type TIME, DATE, DATETIME & TIMESTAMP,
- * ascending order else-)
- * default = ASC
- */
-//$cfg['Order'] = 'SMART';
-
-/**
* disallow editing of binary fields
* valid values are:
* false allow editing
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1608-g4aecf17
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 4aecf17028ccb21072bcbf00d3bbf8fffb1c2b5a (commit)
from 13b9403d742617703f76c92a18f0aa56a0f480ff (commit)
- Log -----------------------------------------------------------------
commit 4aecf17028ccb21072bcbf00d3bbf8fffb1c2b5a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 16:28:18 2010 +0200
Update po files to include latest message.
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 7 ++++++-
po/ar.po | 7 ++++++-
po/az.po | 7 ++++++-
po/be.po | 7 ++++++-
po/be(a)latin.po | 7 ++++++-
po/bg.po | 7 ++++++-
po/bn.po | 7 ++++++-
po/bs.po | 7 ++++++-
po/ca.po | 8 +++++++-
po/cs.po | 10 ++++++++--
po/da.po | 7 ++++++-
po/de.po | 8 +++++++-
po/el.po | 8 +++++++-
po/en_GB.po | 8 +++++++-
po/es.po | 8 +++++++-
po/et.po | 7 ++++++-
po/eu.po | 7 ++++++-
po/fa.po | 7 ++++++-
po/fi.po | 8 +++++++-
po/fr.po | 8 +++++++-
po/gl.po | 8 +++++++-
po/he.po | 7 ++++++-
po/hi.po | 7 ++++++-
po/hr.po | 7 ++++++-
po/hu.po | 8 +++++++-
po/id.po | 7 ++++++-
po/it.po | 13 +++++++++----
po/ja.po | 8 +++++++-
po/ka.po | 8 +++++++-
po/ko.po | 7 ++++++-
po/lt.po | 8 +++++++-
po/lv.po | 7 ++++++-
po/mk.po | 7 ++++++-
po/mn.po | 7 ++++++-
po/ms.po | 7 ++++++-
po/nb.po | 8 +++++++-
po/nl.po | 8 +++++++-
po/phpmyadmin.pot | 7 ++++++-
po/pl.po | 8 +++++++-
po/pt.po | 7 ++++++-
po/pt_BR.po | 8 +++++++-
po/ro.po | 7 ++++++-
po/ru.po | 8 +++++++-
po/si.po | 7 ++++++-
po/sk.po | 8 +++++++-
po/sl.po | 7 ++++++-
po/sq.po | 7 ++++++-
po/sr.po | 7 ++++++-
po/sr(a)latin.po | 7 ++++++-
po/sv.po | 8 +++++++-
po/ta.po | 9 +++++++--
po/te.po | 8 +++++++-
po/th.po | 7 ++++++-
po/tr.po | 8 +++++++-
po/tt.po | 7 ++++++-
po/uk.po | 7 ++++++-
po/ur.po | 7 ++++++-
po/uz.po | 8 +++++++-
po/uz(a)latin.po | 8 +++++++-
po/zh_CN.po | 8 +++++++-
po/zh_TW.po | 7 ++++++-
61 files changed, 396 insertions(+), 66 deletions(-)
diff --git a/po/af.po b/po/af.po
index 066d7ca..42b79b6 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -5740,6 +5740,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index ab68509..5873277 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -5699,6 +5699,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/az.po b/po/az.po
index 9e106ca..2f068a3 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -5806,6 +5806,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/be.po b/po/be.po
index 82d9ce9..458559e 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -6055,6 +6055,11 @@ msgstr ""
"Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх "
"літаральнага выкарыстаньня"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 2bcd1ab..7975dfa 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -6023,6 +6023,11 @@ msgstr ""
"Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich "
"litaralnaha vykarystańnia"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index a653849..b7c526f 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -5839,6 +5839,11 @@ msgstr "Календар"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index f85ccc2..6d2bac4 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -5976,6 +5976,11 @@ msgstr "ক্যালেন্ডার"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index e19a939..c80d98e 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -5803,6 +5803,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 054233c..63add4e 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -6051,6 +6051,12 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Arxiu de configuració"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Permet la conversió de jocs de caràcters"
diff --git a/po/cs.po b/po/cs.po
index 898992f..892c57f 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,8 +4,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
-"PO-Revision-Date: 2010-04-16 15:02+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
+"PO-Revision-Date: 2010-04-16 16:28+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -5986,6 +5986,12 @@ msgstr ""
"Zástupné znaky _ a % by měly být escapovány pomocí \\, pokud je chcete "
"použít jako znak"
+#: server_synchronize.php:1157
+#, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Konfigurace: %s"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Povolit převod znakových sad"
diff --git a/po/da.po b/po/da.po
index 1e145fc..e6708d3 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -5937,6 +5937,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/de.po b/po/de.po
index dbbace2..2e95aff 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-23 21:07+0200\n"
"Last-Translator: <me(a)michaelkeck.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -6099,6 +6099,12 @@ msgstr ""
"Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte "
"Sonderzeichen einzubinden"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Konfiguration"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Zeichensatzkonvertierung erlauben."
diff --git a/po/el.po b/po/el.po
index c8e39eb..7e00f9f 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -6120,6 +6120,12 @@ msgstr ""
"Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να "
"χρησιμοποιηθούν"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Αρχείο ρυθμίσεων"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Άδεια μετατροπής συνόλου χαρακτήρων"
diff --git a/po/en_GB.po b/po/en_GB.po
index 1d41248..a6aecd7 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 16:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -5995,6 +5995,12 @@ msgstr "Clear"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Configuration"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Allow character set conversion"
diff --git a/po/es.po b/po/es.po
index 90fae47..d9330e8 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -6120,6 +6120,12 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Los comodines _ y % deben acompañarse de \\ para usarlos de manera literal"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Archivo de configuración"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/et.po b/po/et.po
index 72c1999..0c71dc8 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -5957,6 +5957,11 @@ msgstr ""
"Metamärgid _ ja % peaksid olema varjestatud märgiga \\, kui soovite neid "
"sisestada"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index 8896d66..c4fcb53 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: <hey_neken(a)mundurat.net>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -5830,6 +5830,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index a4ed3aa..61ab64e 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -5720,6 +5720,11 @@ msgstr "تقویم"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index f1bf65f..ec536cd 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -6037,6 +6037,12 @@ msgstr ""
"Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät "
"oikein"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Asetustiedosto"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Salli merkistömuunnos"
diff --git a/po/fr.po b/po/fr.po
index bf320e5..cf61db2 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-10 16:00+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -6091,6 +6091,12 @@ msgstr "Vider"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Configuration"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Active la conversion des caractères"
diff --git a/po/gl.po b/po/gl.po
index 8f9d764..df03971 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -6058,6 +6058,12 @@ msgstr ""
"Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar "
"literalmente"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Ficheiro de configuración"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Permitir a conversión do conxunto de caracteres"
diff --git a/po/he.po b/po/he.po
index 1b0275f..0e77279 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -5729,6 +5729,11 @@ msgstr "לוח שנה"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 0f6abcc..054ae66 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -5621,6 +5621,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 371b29c..ab998a0 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -6033,6 +6033,11 @@ msgstr ""
"Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora "
"prethoditi znak \\"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index e9e1ae9..3f02055 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -6059,6 +6059,12 @@ msgstr ""
"A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy "
"szövegkonstansként lehessen őket használni"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Konfigurációs fájl"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Karakterkészlet-konvertálás engedélyezése"
diff --git a/po/id.po b/po/id.po
index a07c882..b52240a 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-28 13:56+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -5849,6 +5849,11 @@ msgstr ""
"Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya "
"secara harfiah"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 7d8bf49..683151d 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -3064,9 +3064,8 @@ msgid ""
"Enable advanced features in configuration file (<code>config.inc.php</"
"code>), for example by starting from <code>config.sample.inc.php</code>."
msgstr ""
-"Attiva funzionalità avanzate nel file di configuratione "
-"(<code>config.inc.php</code>), per esempio partendo da "
-"<code>config.sample.inc.php</code>."
+"Attiva funzionalità avanzate nel file di configuratione (<code>config.inc."
+"php</code>), per esempio partendo da <code>config.sample.inc.php</code>."
#: libraries/messages.inc.php:671
msgid "Quick steps to setup advanced features:"
@@ -6076,6 +6075,12 @@ msgstr ""
"I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo "
"letterale"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Configurazione"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index a3afc21..a796d54 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -5917,6 +5917,12 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "設定"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ka.po b/po/ka.po
index f5228df..b9a56db 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -6008,6 +6008,12 @@ msgstr "გაწმენდა"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "კონფიგურაციის ფაილი"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Allow character set conversion"
diff --git a/po/ko.po b/po/ko.po
index 71719a6..b808782 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -5736,6 +5736,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 78893e9..0597e87 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-02 18:26+0200\n"
"Last-Translator: <edgaras.janusauskas(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -5844,6 +5844,12 @@ msgstr "Išvalyti"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Norint naudoti _ ir % simblius, juos reikėtų eskeipinti su \\"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Nustatymų failas"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/lv.po b/po/lv.po
index 5f881b7..006f289 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -5812,6 +5812,11 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index 589b81a..05cb03a 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -5858,6 +5858,11 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 259e12b..545eeef 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -5799,6 +5799,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index fb45373..1647cb4 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -5747,6 +5747,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 40b2b8d..abcf92e 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-06 14:28+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -6008,6 +6008,12 @@ msgstr "Fjern"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Konfigurasjonsfil"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Tillat karaktertegnsettkonvertering"
diff --git a/po/nl.po b/po/nl.po
index 37a2c68..94d3bb2 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-26 15:46+0200\n"
"Last-Translator: <rink(a)initfour.nl>\n"
"Language-Team: dutch <nl(a)li.org>\n"
@@ -6079,6 +6079,12 @@ msgstr ""
"Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te "
"gebruiken"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Configuratiebestand"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Karakterset converteringen toestaan"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 43ef1d5..b113ef5 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\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"
@@ -5618,6 +5618,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, possible-php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 79e93d0..5c367ba 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish <pl(a)li.org>\n"
@@ -6028,6 +6028,12 @@ msgstr ""
"Aby użyć symboli wieloznacznych _ i % w znaczeniu dosłownym, należy je "
"poprzedzić znakiem \\ "
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Konfiguracja"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Pozwalaj na konwersję kodowania napisów"
diff --git a/po/pt.po b/po/pt.po
index a7d0860..7cb27ce 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt(a)li.org>\n"
@@ -5808,6 +5808,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 9a648d8..ff394dd 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
@@ -5987,6 +5987,12 @@ msgstr ""
"Coringas _ e % precisam ser precedidos com uma \\ para serem usados "
"literalmente"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "Configuração"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 0f4e461..e9c13e0 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-13 00:41+0200\n"
"Last-Translator: <ronaldinia(a)yahoo.com>\n"
"Language-Team: romanian <ro(a)li.org>\n"
@@ -6029,6 +6029,11 @@ msgstr "Calendar"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 3e0e911..8b21062 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: russian <ru(a)li.org>\n"
@@ -6080,6 +6080,12 @@ msgstr ""
"процента (%), необходимо экранировать их символом обратной косой черты (\\), "
"в противном случае они будут интерпретированы как групповые символы"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Конфигурационный файл"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Разрешить перекодирование"
diff --git a/po/si.po b/po/si.po
index 38c74b1..3c585b5 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
@@ -5961,6 +5961,11 @@ msgstr "දින දර්ශනය"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index c0b63b0..7b27b96 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovak <sk(a)li.org>\n"
@@ -5971,6 +5971,12 @@ msgstr ""
"Náhradzujúcim znakom _ a % by mal predchádzať znak \\, pokiaľ ich nechcete "
"použiť doslovne"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Konfiguračný súbor"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index b209fe5..aa2110b 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
@@ -5810,6 +5810,11 @@ msgstr "Koledar"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/sq.po b/po/sq.po
index d18cc04..efa1927 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:08+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: albanian <sq(a)li.org>\n"
@@ -5823,6 +5823,11 @@ msgstr "Kalendari"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 00a8d88..5fea7aa 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_cyrillic <sr(a)li.org>\n"
@@ -5968,6 +5968,11 @@ msgstr "Календар"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index e03c700..c64ccff 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@@ -5974,6 +5974,11 @@ msgstr "Kalendar"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 39f4f99..232b94c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv(a)li.org>\n"
@@ -6021,6 +6021,12 @@ msgstr ""
"Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig "
"betydelse"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Konfigurationsfil"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Tillåt omvandling av teckenuppsättning"
diff --git a/po/ta.po b/po/ta.po
index f07ef79..9471169 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
-"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -5623,6 +5623,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/te.po b/po/te.po
index 1033550..3f9db72 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-02 12:04+0200\n"
"Last-Translator: <veeven(a)gmail.com>\n"
"Language-Team: Telugu <te(a)li.org>\n"
@@ -5682,6 +5682,12 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Server configuration"
+msgid "Configuration: %s"
+msgstr "సేవకి స్వరూపణం"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/th.po b/po/th.po
index 8d32d0a..b8d6602 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th(a)li.org>\n"
@@ -5736,6 +5736,11 @@ msgstr "ปฏิทิน"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index e260042..b4fe5a4 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
@@ -6041,6 +6041,12 @@ msgstr "Temizle"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun."
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Yapılandırma dosyası"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Karakter grubu dönüştürmeye izin ver"
diff --git a/po/tt.po b/po/tt.po
index 9068232..e298d3e 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: tatarish <tt(a)li.org>\n"
@@ -5836,6 +5836,11 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk"
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 0d5ce27..d8fbc88 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
@@ -5723,6 +5723,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index 1bf81db..2976b0d 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -5618,6 +5618,11 @@ msgstr ""
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index 7bba0f3..3e714e0 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic <uz(a)li.org>\n"
@@ -6086,6 +6086,12 @@ msgstr ""
"Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари "
"ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак."
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Конфигурацион файл"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Кодировка корвертациясига рухсат бериш"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index c6e1783..301b799 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -6135,6 +6135,12 @@ msgstr ""
"Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari "
"ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak."
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration file"
+msgid "Configuration: %s"
+msgstr "Konfiguratsion fayl"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "Kodirovka korvertatsiyasiga ruxsat berish"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 47deb42..cc695be 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-04-08 13:06+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
@@ -5794,6 +5794,12 @@ msgstr "清除"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义"
+#: server_synchronize.php:1157
+#, fuzzy, php-format
+#| msgid "Configuration"
+msgid "Configuration: %s"
+msgstr "设置"
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr "允许转换字符集"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 44b593d..77f762e 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:34+0200\n"
+"POT-Creation-Date: 2010-04-16 16:27+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional <zh_TW(a)li.org>\n"
@@ -5741,6 +5741,11 @@ msgstr "日曆"
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "萬用符號 _ 及 % 應正確地加入 \\ "
+#: server_synchronize.php:1157
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
msgstr ""
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1607-g13b9403
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 13b9403d742617703f76c92a18f0aa56a0f480ff (commit)
from 87d19393b321f363a4857e9b3518dd9e7c1b5e3b (commit)
- Log -----------------------------------------------------------------
commit 13b9403d742617703f76c92a18f0aa56a0f480ff
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 16:26:13 2010 +0200
rfe #2964518 [interface] Allow to choose servers from configuration for synchronisation.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 +
js/server_synchronize.js | 20 +++++++++++++++-
server_synchronize.php | 58 ++++++++++++++++++++++++++++++++++-----------
3 files changed, 65 insertions(+), 15 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 18032ff..f3dd9fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -73,6 +73,8 @@ $Id$
thanks to Sutharshan Balachandren.
- rfe #2981999 [interface] Default sort order is now SMART.
- rfe #2972969 [interface] Fix flipping of headers in non-IE browsers.
++ rfe #2964518 [interface] Allow to choose servers from configuration for
+ synchronisation.
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/js/server_synchronize.js b/js/server_synchronize.js
index 6aa0a37..d9a965f 100644
--- a/js/server_synchronize.js
+++ b/js/server_synchronize.js
@@ -5,6 +5,24 @@
*/
$(document).ready(function() {
$('.server_selector').change(function() {
- $(this).closest('tbody').children('.toggler').toggle();
+ var server = $('.server_selector').val();
+ if (server == 'cur') {
+ $(this).closest('tbody').children('.current-server').css('display', '');
+ $(this).closest('tbody').children('.remote-server').css('display', 'none');
+ } else if (server == 'rmt') {
+ $(this).closest('tbody').children('.current-server').css('display', 'none');
+ $(this).closest('tbody').children('.remote-server').css('display', '');
+ } else {
+ $(this).closest('tbody').children('.current-server').css('display', 'none');
+ $(this).closest('tbody').children('.remote-server').css('display', '');
+ var parts = server.split('||||');
+ $('#src_host').val(parts[0]);
+ $(this).closest('tbody').find('.server-host').val(parts[0]);
+ $(this).closest('tbody').find('.server-port').val(parts[1]);
+ $(this).closest('tbody').find('.server-socket').val(parts[2]);
+ $(this).closest('tbody').find('.server-user').val(parts[3]);
+ $(this).closest('tbody').find('.server-pass').val('');
+ $(this).closest('tbody').find('.server-db').val(parts[4])
+ }
});
});
diff --git a/server_synchronize.php b/server_synchronize.php
index c1c873b..c4e08fb 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -1126,35 +1126,65 @@ if (isset($_REQUEST['synchronize_db'])) {
<td colspan="2" style="text-align: center">
<select name="' . $type . '_type" id="' . $type . '_type" class="server_selector">
<option value="rmt">' . $GLOBALS['strRemoteServer'] . '</option>
- <option value="cur">' . $GLOBALS['strCurrentServer'] . '</option>
+ <option value="cur">' . $GLOBALS['strCurrentServer'] . '</option>';
+ foreach ($GLOBALS['cfg']['Servers'] as $key => $tmp_server) {
+ if (empty($tmp_server['host'])) {
+ continue;
+ }
+
+ if (!empty($tmp_server['verbose'])) {
+ $label = $tmp_server['verbose'];
+ } else {
+ $label = $tmp_server['host'];
+ if (!empty($tmp_server['port'])) {
+ $label .= ':' . $tmp_server['port'];
+ }
+ }
+ $value = $tmp_server['host'];
+ $value .= '||||';
+ if (empty($tmp_server['port']) && empty($tmp_server['socket'])) {
+ $value .= '3306';
+ } else {
+ $value .= $tmp_server['port'];
+ }
+ $value .= '||||';
+ $value .= $tmp_server['socket'];
+ $value .= '||||';
+ $value .= $tmp_server['user'];
+ $value .= '||||';
+ $value .= $tmp_server['only_db'];
+ echo '<option value="' . $value . '">'
+ . htmlspecialchars(sprintf(__('Configuration: %s'), $label)) . '</option>' . "\n";
+ } // end foreach
+ echo '
</select>
</td>
</tr>
- <tr class="even toggler">
+ <tr class="even toggler remote-server">
<td>' . $GLOBALS['strHost'] . '</td>
- <td><input type="text" name="' . $type . '_host" /></td>
+ <td><input type="text" name="' . $type . '_host" class="server-host" /></td>
</tr>
- <tr class="odd toggler">
+ <tr class="odd toggler remote-server">
<td>' . $GLOBALS['strPort'] . '</td>
- <td><input type="text" name="' . $type . '_port" value="3306" maxlength="5" size="5" /></td>
+ <td><input type="text" name="' . $type . '_port" class="server-port" value="3306" maxlength="5" size="5" /></td>
</tr>
- <tr class="even toggler">
+ <tr class="even toggler remote-server">
<td>' . $GLOBALS['strSocket'] . '</td>
- <td><input type="text" name="' . $type . '_socket" /></td>
+ <td><input type="text" name="' . $type . '_socket" class="server-socket" /></td>
</tr>
- <tr class="odd toggler">
+ <tr class="odd toggler remote-server">
<td>' . $GLOBALS['strUserName']. '</td>
- <td><input type="text" name="'. $type . '_username" /></td>
+ <td><input type="text" name="'. $type . '_username" class="server-user" /></td>
</tr>
- <tr class="even toggler">
+ <tr class="even toggler remote-server">
<td>' . $GLOBALS['strPassword'] . '</td>
- <td><input type="password" name="' . $type . '_pass" /> </td>
+ <td><input type="password" name="' . $type . '_pass" class="server-pass" /> </td>
</tr>
- <tr class="odd toggler">
+ <tr class="odd toggler remote-server">
<td>' . $GLOBALS['strDatabase'] . '</td>
- <td><input type="text" name="' . $type . '_db" /></td>
+ <td><input type="text" name="' . $type . '_db" class="server-db" /></td>
</tr>
- <tr class="even toggler" style="display: none;">
+ <tr class="even toggler current-server" style="display: none;">
<td>' . $GLOBALS['strDatabase'] . '</td>
<td>';
// these unset() do not complain if the elements do not exist
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1606-g87d1939
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 87d19393b321f363a4857e9b3518dd9e7c1b5e3b (commit)
via 84d25c0c00410383f8169fd7830316d401771b41 (commit)
via 956c2fadcac585de87481c5f1baf15403c2852ba (commit)
from 90d862ca779dff4035a71c94b137b4a93f2ac1a4 (commit)
- Log -----------------------------------------------------------------
commit 87d19393b321f363a4857e9b3518dd9e7c1b5e3b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 15:41:13 2010 +0200
rfe #2972969 [interface] Fix flipping of headers in non-IE browsers.
commit 84d25c0c00410383f8169fd7830316d401771b41
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 15:13:43 2010 +0200
rfe #2981999 [interface] Default sort order is now SMART.
commit 956c2fadcac585de87481c5f1baf15403c2852ba
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 15:13:13 2010 +0200
Fix author name.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++-
Documentation.html | 21 ++++++++++------
libraries/config.default.php | 6 ++--
libraries/display_tbl.lib.php | 51 +++++++++++++++++++++++-----------------
4 files changed, 48 insertions(+), 34 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8814169..18032ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -70,7 +70,9 @@ $Id$
- patch #2986073 [interface] Convert upload progress bar to jQuery, thanks to
Philip Frank.
- patch #2983960 [interface] Add javascript validation of datetime input,
- thanks to
+ thanks to Sutharshan Balachandren.
+- rfe #2981999 [interface] Default sort order is now SMART.
+- rfe #2972969 [interface] Fix flipping of headers in non-IE browsers.
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/Documentation.html b/Documentation.html
index 6805a48..c6ee94f 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -1875,20 +1875,25 @@ $cfg['TrustedProxies'] =
"Left" and "right" are parsed as "top"
and "bottom" with vertical display mode.</dd>
- <dt id="cfg_DefaultDisplay">$cfg['DefaultDisplay'] string
- <span id="cfg_HeaderFlipType">$cfg['HeaderFlipType'] </span>string
- </dt>
+ <dt id="cfg_DefaultDisplay">$cfg['DefaultDisplay'] string</dt>
<dd>There are 3 display modes: horizontal, horizontalflipped and vertical.
Define which one is displayed by default. The first mode displays each
row on a horizontal line, the second rotates the headers by 90
degrees, so you can use descriptive headers even though fields only
contain small values and still print them out. The vertical mode sorts
- each row on a vertical lineup.<br /><br />
+ each row on a vertical lineup.
+ </dd>
- The HeaderFlipType can be set to 'css' or 'fake'. When using 'css'
- the rotation of the header for horizontalflipped is done via CSS. If
- set to 'fake' PHP does the transformation for you, but of course this
- does not look as good as CSS.</dd>
+ <dt id="cfg_HeaderFlipType">$cfg['HeaderFlipType'] </span>string</dt>
+ <dd>
+ The HeaderFlipType can be set to 'auto', 'css' or 'fake'. When using
+ 'css' the rotation of the header for horizontalflipped is done via
+ CSS. The CSS transformation currently works only in Internet
+ Explorer.If set to 'fake' PHP does the transformation for you, but of
+ course this does not look as good as CSS. The 'auto' option enables
+ CSS transformation when browser supports it and use PHP based one
+ otherwise.
+ </dd>
<dt id="DefaultPropDisplay">
<span id="cfg_DefaultPropDisplay">$cfg['DefaultPropDisplay']</span>
diff --git a/libraries/config.default.php b/libraries/config.default.php
index d1426d5..64628bb 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -887,7 +887,7 @@ $cfg['MaxRows'] = 30;
*
* @global string $cfg['Order']
*/
-$cfg['Order'] = 'ASC';
+$cfg['Order'] = 'SMART';
/**
* default for 'Show binary contents as HEX'
@@ -2179,12 +2179,12 @@ $cfg['DefaultDisplay'] = 'horizontal';
$cfg['DefaultPropDisplay'] = 3;
/**
- * table-header rotation via faking or CSS? (css|fake)
+ * table-header rotation via faking or CSS? (css|fake|auto)
* NOTE: CSS only works in IE browsers!
*
* @global string $cfg['HeaderFlipType']
*/
-$cfg['HeaderFlipType'] = 'css';
+$cfg['HeaderFlipType'] = 'auto';
/**
* shows stored relation-comments in 'browse' mode.
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 4e2ccc5..e99b97c 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -187,16 +187,16 @@ function PMA_setDisplayMode(&$the_disp_mode, &$the_total)
/**
- * Displays a navigation button
+ * Displays a navigation button
*
* @uses $GLOBALS['cfg']['NavigationBarIconic']
- * @uses PMA_generate_common_hidden_inputs()
+ * @uses PMA_generate_common_hidden_inputs()
*
* @param string iconic caption for button
- * @param string text for button
- * @param integer position for next query
- * @param string query ready for display
- * @param string optional onsubmit clause
+ * @param string text for button
+ * @param integer position for next query
+ * @param string query ready for display
+ * @param string optional onsubmit clause
* @param string optional hidden field for special treatment
* @param string optional onclick clause
*
@@ -246,7 +246,7 @@ function PMA_displayTableNavigationOneButton($caption, $title, $pos, $html_sql_q
* @param integer the offset for the "next" page
* @param integer the offset for the "previous" page
* @param string the URL-encoded query
- * @param string the id for the direction dropdown
+ * @param string the id for the direction dropdown
*
* @global string $db the database name
* @global string $table the table name
@@ -334,9 +334,9 @@ onsubmit="return (checkFormElementInRange(this, 'session_max_rows', '<?php echo
&& $_SESSION['tmp_user_values']['max_rows'] != 'all') {
// display the Next button
- PMA_displayTableNavigationOneButton('>',
- $GLOBALS['strNext'],
- $pos_next,
+ PMA_displayTableNavigationOneButton('>',
+ $GLOBALS['strNext'],
+ $pos_next,
$html_sql_query);
// prepare some options for the End button
@@ -349,9 +349,9 @@ onsubmit="return (checkFormElementInRange(this, 'session_max_rows', '<?php echo
}
// display the End button
- PMA_displayTableNavigationOneButton('>>',
- $GLOBALS['strEnd'],
- @((ceil($unlim_num_rows / $_SESSION['tmp_user_values']['max_rows'])- 1) * $_SESSION['tmp_user_values']['max_rows']),
+ PMA_displayTableNavigationOneButton('>>',
+ $GLOBALS['strEnd'],
+ @((ceil($unlim_num_rows / $_SESSION['tmp_user_values']['max_rows'])- 1) * $_SESSION['tmp_user_values']['max_rows']),
$html_sql_query,
'onsubmit="return ' . (($_SESSION['tmp_user_values']['pos'] + $_SESSION['tmp_user_values']['max_rows'] < $unlim_num_rows && $num_rows >= $_SESSION['tmp_user_values']['max_rows']) ? 'true' : 'false') . '"',
$input_for_real_end,
@@ -442,7 +442,7 @@ onsubmit="return (checkFormElementInRange(this, 'session_max_rows', '<?php echo
* @param integer the total number of fields returned by the SQL query
* @param array the analyzed query
*
- * @return boolean $clause_is_unique
+ * @return boolean $clause_is_unique
*
* @global string $db the database name
* @global string $table the table name
@@ -564,7 +564,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
echo '</div>';
// prepare full/partial text button or link
- if ($_SESSION['tmp_user_values']['display_text']=='F') {
+ if ($_SESSION['tmp_user_values']['display_text']=='F') {
// currently in fulltext mode so show the opposite link
$tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_partialtext.png';
$tmp_txt = $GLOBALS['strPartialText'];
@@ -789,7 +789,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
// Field name may be preceded by a space, or any number
// of characters followed by a dot (tablename.fieldname)
// so do a direct comparison for the sort expression;
- // this avoids problems with queries like
+ // this avoids problems with queries like
// "SELECT id, count(id)..." and clicking to sort
// on id or on count(id).
// Another query to test this:
@@ -852,6 +852,13 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
$order_link_params['onmouseout'] = 'if(document.getElementById(\'soimg' . $i . '\')){ document.getElementById(\'soimg' . $i . '\').src=\'' . $GLOBALS['pmaThemeImage'] . 's_desc.png\'; }';
}
}
+ if ($GLOBALS['cfg']['HeaderFlipType'] == 'auto') {
+ if (PMA_USR_BROWSER_AGENT == 'IE') {
+ $GLOBALS['cfg']['HeaderFlipType'] = 'css';
+ } else {
+ $GLOBALS['cfg']['HeaderFlipType'] = 'fake';
+ }
+ }
if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped'
&& $GLOBALS['cfg']['HeaderFlipType'] == 'css') {
$order_link_params['style'] = 'direction: ltr; writing-mode: tb-rl;';
@@ -1141,7 +1148,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
$lnk_goto = 'sql.php' . PMA_generate_common_url($_url_params, 'text');
$del_query = 'DELETE FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table)
- . ' WHERE ' . $where_clause . ($clause_is_unique ? '' : ' LIMIT 1');
+ . ' WHERE ' . $where_clause . ($clause_is_unique ? '' : ' LIMIT 1');
$_url_params = array(
'db' => $db,
@@ -1154,7 +1161,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
$js_conf = 'DELETE FROM ' . PMA_jsFormat($db) . '.' . PMA_jsFormat($table)
. ' WHERE ' . PMA_jsFormat($where_clause, false)
- . ($clause_is_unique ? '' : ' LIMIT 1');
+ . ($clause_is_unique ? '' : ' LIMIT 1');
$del_str = PMA_getIcon('b_drop.png', $GLOBALS['strDelete'], true);
} elseif ($is_display['del_lnk'] == 'kp') { // kill process case
@@ -1346,7 +1353,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
$vertical_display['data'][$row_no][$i] = ' <td' . $mouse_events . ' class="' . $class . ($condition_field ? ' condition' : '') . '"> </td>' . "\n";
}
}
- // n o t n u m e r i c a n d n o t B L O B
+ // n o t n u m e r i c a n d n o t B L O B
} else {
if (!isset($row[$i]) || is_null($row[$i])) {
$vertical_display['data'][$row_no][$i] = ' <td' . $mouse_events . ' class="' . $class . ($condition_field ? ' condition' : '') . '"><i>NULL</i></td>' . "\n";
@@ -1676,8 +1683,8 @@ function PMA_displayTable_checkConfigParams()
// as this is a form value, the type is always string so we cannot
// use PMA_isValid($_REQUEST['session_max_rows'], 'integer')
- if ((PMA_isValid($_REQUEST['session_max_rows'], 'numeric')
- && (int) $_REQUEST['session_max_rows'] == $_REQUEST['session_max_rows'])
+ if ((PMA_isValid($_REQUEST['session_max_rows'], 'numeric')
+ && (int) $_REQUEST['session_max_rows'] == $_REQUEST['session_max_rows'])
|| $_REQUEST['session_max_rows'] == 'all') {
$_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'] = $_REQUEST['session_max_rows'];
unset($_REQUEST['session_max_rows']);
@@ -1718,7 +1725,7 @@ function PMA_displayTable_checkConfigParams()
// according to low-level field flags
$_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary'] = true;
}
-
+
if (isset($_REQUEST['display_binary_as_hex'])) {
$_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] = true;
unset($_REQUEST['display_binary_as_hex']);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1603-g90d862c
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 90d862ca779dff4035a71c94b137b4a93f2ac1a4 (commit)
from 70e711bf29f46254b0b516a284a5920928fbcd1d (commit)
- Log -----------------------------------------------------------------
commit 90d862ca779dff4035a71c94b137b4a93f2ac1a4
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 14:53:55 2010 +0200
Czech translation update.
Finally we're at 100%.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 49 ++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 40 insertions(+), 9 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 3137a2e..898992f 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-11 11:34+0200\n"
-"PO-Revision-Date: 2010-04-12 13:58+0200\n"
+"PO-Revision-Date: 2010-04-16 15:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -3554,6 +3554,10 @@ msgid ""
"ignore all databases by default and allow only certain databases to be "
"replicated. Please select the mode:"
msgstr ""
+"Tento server není nastaven jako nadřízený v replikačním procesu. Můžete si "
+"vybrat zda replikovat všechny databáze a přeskočit vybrané (vhodné pokud "
+"chcete replikovat většinu databází) nebo můžete zvolit opačný přístup - jen "
+"vybrat databáze, které chcete synchronizovat. Prosím zvolte požadovaný režim:"
#: libraries/messages.inc.php:790
msgid "Master configuration"
@@ -3573,6 +3577,8 @@ msgid ""
"should see a message informing you, that this server <b>is</b> configured as "
"master"
msgstr ""
+"Prosím klikněte na tlačítko po restartování MySQL serveru. Poté byste měli "
+"vidět zprávu informující vás že server <b>je</b> nastaven jako nadřízený"
#: libraries/messages.inc.php:794
msgid "Please select databases:"
@@ -3641,6 +3647,8 @@ msgid ""
"This server is not configured as slave in a replication process. Would you "
"like to <a href=\"%s\">configure</a> it?"
msgstr ""
+"Tento server není nastaven jako podřízený v replikačním procesu. Přejete si "
+"ho <a href=\"%s\">nastavit</a>?"
#: libraries/messages.inc.php:807
msgid "Reset slave"
@@ -4755,6 +4763,8 @@ msgid ""
"Make sure, you have unique server-id in your configuration file (my.cnf). If "
"not, please add the following line into [mysqld] section:"
msgstr ""
+"Ujistěte se, že máte unikátní ID serveru ve vašem konfiguračním souboru (my."
+"cnf). Pokud ne, prosím přidejte následující řádek to sekce [mysqld]:"
#: libraries/messages.inc.php:1026
msgid "Slovak"
@@ -7171,7 +7181,7 @@ msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Zakázat použití INFORMATION_SCHEMA"
#: setup/lib/messages.inc.php:271
-#, fuzzy, php-format
+#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - [a@?"
"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication"
@@ -7180,13 +7190,12 @@ msgid ""
"IP belongs to an ISP where thousands of users, including you, are connected "
"to."
msgstr ""
-"Tato [a@?page=form&formset=features#tab_Security]volba[/a] by měla být "
-"zakázána, protože umožňuje útočníkům prolomit přihlašování k libovolnému "
-"MySQL serveru útokem hrobou silou. V případě nutnosti použijte [a@?"
-"page=form&formset=features#tab_Security]seznam důvěryhodných proxy[/a]. "
-"Nicméně ochrana založená na kotrole IP adres, nemusí být spolehlivá, pokud "
-"Vaše IP adresa patří poskytovateli internetových služeb, ke kterému jsou "
-"připojeny tisíce uživatelů."
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - [a@?"
+"page=servers&mode=edit&id=%1$d#tab_Server_config]omezení počítačů[/"
+"a] a [a@?page=form&formset=features#tab_Security]seznam důvěryhodných "
+"proxy[/a]. Nicméně zabezpečení založené na IP adresách nemusí být "
+"spolehlivé, pokud je vaše IP adresa dynamicky přidělována poskytovatelem "
+"spolu s mnoha dalšími uživateli."
#: setup/lib/messages.inc.php:272
msgid "Edit server"
@@ -7289,6 +7298,10 @@ msgid ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
+"Databáze používaná pro relace, záložky a PDF stránky. Více informací "
+"naleznete na [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Pokud "
+"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]"
+"phpmyadmin[/kbd]"
#: setup/lib/messages.inc.php:294
msgid "Port on which MySQL server is listening, leave empty for default"
@@ -7340,6 +7353,7 @@ msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
+"Jestli má sledování tabulek automaticky vytvářet verze pro tabulky a pohledy."
#: setup/lib/messages.inc.php:304
msgid "Automatically create versions"
@@ -7480,6 +7494,10 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
+"Tato volba nemá žádný efekt s přihlašovací metodou [kbd]config[/kbd], "
+"protože v tomto případě je heslo uloženo v konfiguračním souboru; tato volba "
+"neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení "
+"formuláře"
#: setup/lib/messages.inc.php:332
msgid "Show password change form"
@@ -7543,6 +7561,8 @@ msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
+"Pokud jsou povoleny tooltipy a je nastaven komentář databáze, tato volba "
+"prohodí komentář a skutečné jméno"
#: setup/lib/messages.inc.php:346
msgid "Display database comment instead of its name"
@@ -7555,6 +7575,9 @@ msgid ""
"['LeftFrameTableSeparator'] directive, so only the folder is called like the "
"alias, the table name itself stays unchanged"
msgstr ""
+"Při nastavení na [kbd]nested[/kbd], bude komentář použit pro zanoření a "
+"rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář se "
+"použije jen pro zanoření, ale jména tabulek zůstanou nezměněná"
#: setup/lib/messages.inc.php:348
msgid "Display table comment instead of its name"
@@ -7568,6 +7591,7 @@ msgstr "Zobrazit komentáře tabulky v tooltipu"
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
+"Označí používané tabulky a umožní zobrazit databáze se zamčenými tabulkami."
#: setup/lib/messages.inc.php:351
msgid "Skip locked tables"
@@ -7596,6 +7620,10 @@ msgid ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
+"Zadejte proxy ve tvaru [kbd]IP: důvěryhodná hlavička s adresou[/kbd]. "
+"Následující příklad povolí používání hlavičky HTTP_X_FORWARDED_FOR (X-"
+"Forwarded-For) přicházející od proxy 1.2.3.4:[br][kbd]1.2.3.4: "
+"HTTP_X_FORWARDED_FOR[/kbd]"
#: setup/lib/messages.inc.php:361
msgid "List of trusted proxies for IP allow/deny"
@@ -7623,6 +7651,9 @@ msgid ""
"libraries/import.lib.php for defaults on how many queries a statement may "
"contain."
msgstr ""
+"Zobrazí počet ovlivněných řádek pro každý dotaz při zadání více dotazů. V "
+"souboru libraries/import.lib.php naleznete kolik dotazů můžete najednou "
+"zadat."
#: setup/lib/messages.inc.php:367
msgid "Verbose multiple statements"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1602-g70e711b
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 70e711bf29f46254b0b516a284a5920928fbcd1d (commit)
via 33c2200caa89bba943cd4c1c35cf12e7baba46a9 (commit)
via 1e6339c8c78434f5c1a193d1210b9f9f847f1d43 (commit)
via 57213ead5be84c437ae7660790ed380b741a8ab6 (commit)
via 45525339e474a57db28216c67d5eae5fb7912777 (commit)
from 43c7f409e329203d3698fbaf70b305ff1eaf5a0f (commit)
- Log -----------------------------------------------------------------
commit 70e711bf29f46254b0b516a284a5920928fbcd1d
Author: Sutharshan Balachandren <sutharshan02(a)gmail.com>
Date: Fri Apr 16 10:43:19 2010 +0200
Translation update done using Pootle.
commit 33c2200caa89bba943cd4c1c35cf12e7baba46a9
Author: Sutharshan Balachandren <sutharshan02(a)gmail.com>
Date: Fri Apr 16 10:41:17 2010 +0200
Translation update done using Pootle.
commit 1e6339c8c78434f5c1a193d1210b9f9f847f1d43
Merge: 57213ead5be84c437ae7660790ed380b741a8ab6 43c7f409e329203d3698fbaf70b305ff1eaf5a0f
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 16 10:40:28 2010 +0200
Merge remote branch 'origin/master'
commit 57213ead5be84c437ae7660790ed380b741a8ab6
Author: Sutharshan Balachandren <sutharshan02(a)gmail.com>
Date: Fri Apr 16 10:40:05 2010 +0200
Translation update done using Pootle.
commit 45525339e474a57db28216c67d5eae5fb7912777
Author: Sutharshan Balachandren <sutharshan02(a)gmail.com>
Date: Fri Apr 16 10:38:01 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ta.po | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/po/ta.po b/po/ta.po
index c37d22a..f07ef79 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-11 11:34+0200\n"
-"PO-Revision-Date: 2010-04-10 07:38+0200\n"
-"Last-Translator: <sutharshan02(a)gmail.com>\n"
+"PO-Revision-Date: 2010-04-16 10:43+0200\n"
+"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
+"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -7135,7 +7135,7 @@ msgstr ""
#: setup/lib/messages.inc.php:370
msgid "Check for latest version"
-msgstr ""
+msgstr "புதிய பதிப்பை பார்வையிடவும்"
#: setup/lib/messages.inc.php:371
#, php-format
@@ -7153,7 +7153,7 @@ msgstr ""
#: setup/lib/messages.inc.php:373
msgid "No newer stable version is available"
-msgstr ""
+msgstr "புதிய நிலையான பதிப்புகள் ஒன்றும் இல்லை "
#: setup/lib/messages.inc.php:374
msgid "Unparsable version string"
@@ -7170,7 +7170,7 @@ msgstr ""
#: setup/lib/messages.inc.php:377
msgid "Warning"
-msgstr ""
+msgstr "எச்சரிக்கை"
#: setup/lib/messages.inc.php:378
msgid ""
@@ -7194,4 +7194,4 @@ msgstr ""
#: setup/lib/messages.inc.php:381
msgid "ZIP"
-msgstr ""
+msgstr "ZIP"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 1837aecab0e0aea40c09e91e8a096f8615f1ee21
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 1837aecab0e0aea40c09e91e8a096f8615f1ee21 (commit)
from f7779ad1b24ca831c0f2fb3718bae46716e55205 (commit)
- Log -----------------------------------------------------------------
commit 1837aecab0e0aea40c09e91e8a096f8615f1ee21
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 11:25:40 2010 +0200
Update to match current master.
-----------------------------------------------------------------------
Summary of changes:
output/ca/translators.html | 2 +-
output/cs/Documentation.html | 6 +++---
output/cs/translators.html | 6 +++---
output/de/translators.html | 2 +-
output/en_GB/Documentation.html | 2 +-
output/en_GB/translators.html | 2 +-
output/es/translators.html | 2 +-
output/fi/translators.html | 2 +-
output/fr/Documentation.html | 6 +++---
output/fr/translators.html | 6 +++---
output/gl/translators.html | 2 +-
output/hu/translators.html | 2 +-
output/it/Documentation.html | 2 +-
output/it/translators.html | 2 +-
output/ja/Documentation.html | 2 +-
output/ja/translators.html | 2 +-
output/ka/translators.html | 2 +-
output/lt/translators.html | 2 +-
output/mn/translators.html | 2 +-
output/nb/translators.html | 2 +-
output/nl/translators.html | 2 +-
output/pl/Documentation.html | 2 +-
output/pl/translators.html | 2 +-
output/pt_BR/Documentation.html | 6 +++---
output/pt_BR/translators.html | 6 +++---
output/ro/translators.html | 2 +-
output/sk/translators.html | 2 +-
output/sv/translators.html | 2 +-
output/tr/translators.html | 2 +-
output/zh_CN/Documentation.html | 5 +++--
output/zh_CN/translators.html | 5 +++--
output/zh_TW/translators.html | 2 +-
po/ca.po | 6 ++++--
po/cs.po | 5 +++--
po/de.po | 7 ++++---
po/en_GB.po | 5 +++--
po/es.po | 6 ++++--
po/fi.po | 4 ++--
po/fr.po | 5 +++--
po/gl.po | 4 ++--
po/hu.po | 4 ++--
po/hy.po | 7 ++++---
po/it.po | 5 +++--
po/ja.po | 4 ++--
po/ka.po | 4 ++--
po/lt.po | 7 ++++---
po/mn.po | 4 ++--
po/nb.po | 4 ++--
po/nl.po | 7 ++++---
po/pl.po | 4 ++--
po/pt_BR.po | 5 +++--
po/ro.po | 4 ++--
po/sk.po | 4 ++--
po/sv.po | 4 ++--
po/tr.po | 4 ++--
po/zh_CN.po | 5 +++--
po/zh_TW.po | 4 ++--
pot/ca-full.pot | 4 ++--
pot/ca-html.pot | 4 ++--
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 4 ++--
pot/cs-html.pot | 4 ++--
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 4 ++--
pot/de-html.pot | 4 ++--
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 4 ++--
pot/en_GB-html.pot | 4 ++--
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 4 ++--
pot/es-html.pot | 4 ++--
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 4 ++--
pot/fi-html.pot | 4 ++--
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 4 ++--
pot/fr-html.pot | 4 ++--
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 4 ++--
pot/gl-html.pot | 4 ++--
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 4 ++--
pot/hu-html.pot | 4 ++--
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 4 ++--
pot/hy-html.pot | 4 ++--
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 4 ++--
pot/it-html.pot | 4 ++--
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 4 ++--
pot/ja-html.pot | 4 ++--
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 4 ++--
pot/ka-html.pot | 4 ++--
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 4 ++--
pot/lt-html.pot | 4 ++--
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 4 ++--
pot/mn-html.pot | 4 ++--
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 4 ++--
pot/nb-html.pot | 4 ++--
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 4 ++--
pot/nl-html.pot | 4 ++--
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 4 ++--
pot/pl-html.pot | 4 ++--
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 4 ++--
pot/pt_BR-html.pot | 4 ++--
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 15 ++-------------
pot/ro-html.pot | 4 ++--
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 4 ++--
pot/sk-html.pot | 4 ++--
pot/sk-txt.pot | 2 +-
pot/sv-full.pot | 4 ++--
pot/sv-html.pot | 4 ++--
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 15 ++-------------
pot/tr-html.pot | 4 ++--
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 15 +++++++++++++--
pot/zh_CN-html.pot | 4 ++--
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 4 ++--
pot/zh_TW-html.pot | 4 ++--
pot/zh_TW-txt.pot | 2 +-
132 files changed, 252 insertions(+), 247 deletions(-)
diff --git a/output/ca/translators.html b/output/ca/translators.html
index c35023a..f7fec18 100644
--- a/output/ca/translators.html
+++ b/output/ca/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index fb4ebb7..b7d9171 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -5172,9 +5172,9 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">tým vývojářů
-phpMyAdmina</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">Licence</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Přispějte</a></li>
<li class="last">Platné <a href="http://validator.w3.org/check/referer">HTML</a> a <a
diff --git a/output/cs/translators.html b/output/cs/translators.html
index ce219db..0efdd49 100644
--- a/output/cs/translators.html
+++ b/output/cs/translators.html
@@ -478,9 +478,9 @@ budou poskytovat podporu po emailu.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">tým vývojářů
-phpMyAdmina</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">Licence</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Přispějte</a></li>
<li class="last">Platné <a href="http://validator.w3.org/check/referer">HTML</a> a <a
diff --git a/output/de/translators.html b/output/de/translators.html
index 07972b0..30f65b4 100644
--- a/output/de/translators.html
+++ b/output/de/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/en_GB/Documentation.html b/output/en_GB/Documentation.html
index f9cafe0..db5b923 100644
--- a/output/en_GB/Documentation.html
+++ b/output/en_GB/Documentation.html
@@ -5174,7 +5174,7 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/en_GB/translators.html b/output/en_GB/translators.html
index bff57dc..ef34bb2 100644
--- a/output/en_GB/translators.html
+++ b/output/en_GB/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/es/translators.html b/output/es/translators.html
index 7111fc3..4bf0e02 100644
--- a/output/es/translators.html
+++ b/output/es/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/fi/translators.html b/output/fi/translators.html
index 4ccd0ef..f8c0df0 100644
--- a/output/fi/translators.html
+++ b/output/fi/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/fr/Documentation.html b/output/fr/Documentation.html
index 6ee5f14..471e7c5 100644
--- a/output/fr/Documentation.html
+++ b/output/fr/Documentation.html
@@ -6138,9 +6138,9 @@ multiplateforme de Jean-loup Gailly et Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">Équipe de développement
-de phpMyAdmin</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">Licence</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Faire un don</a></li>
<li class="last">Valid <a href="http://validator.w3.org/check/referer">HTML</a> et <a
diff --git a/output/fr/translators.html b/output/fr/translators.html
index 715edde..7cee04d 100644
--- a/output/fr/translators.html
+++ b/output/fr/translators.html
@@ -483,9 +483,9 @@ d'assistance par courriel.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">Équipe de développement
-de phpMyAdmin</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">Licence</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Faire un don</a></li>
<li class="last">Valid <a href="http://validator.w3.org/check/referer">HTML</a> et <a
diff --git a/output/gl/translators.html b/output/gl/translators.html
index e523af8..19b8a66 100644
--- a/output/gl/translators.html
+++ b/output/gl/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/hu/translators.html b/output/hu/translators.html
index f481c61..718e72f 100644
--- a/output/hu/translators.html
+++ b/output/hu/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/it/Documentation.html b/output/it/Documentation.html
index 8779a49..f852fdd 100644
--- a/output/it/Documentation.html
+++ b/output/it/Documentation.html
@@ -5214,7 +5214,7 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/it/translators.html b/output/it/translators.html
index 0f1ae98..e7ea559 100644
--- a/output/it/translators.html
+++ b/output/it/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index 997b131..49579b7 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -4984,7 +4984,7 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/ja/translators.html b/output/ja/translators.html
index ee4598d..0139788 100644
--- a/output/ja/translators.html
+++ b/output/ja/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/ka/translators.html b/output/ka/translators.html
index 05051c9..5125e00 100644
--- a/output/ka/translators.html
+++ b/output/ka/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/lt/translators.html b/output/lt/translators.html
index f7e5643..d49db28 100644
--- a/output/lt/translators.html
+++ b/output/lt/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/mn/translators.html b/output/mn/translators.html
index 29c7889..9aae02e 100644
--- a/output/mn/translators.html
+++ b/output/mn/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/nb/translators.html b/output/nb/translators.html
index e3792a3..d5465c0 100644
--- a/output/nb/translators.html
+++ b/output/nb/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/nl/translators.html b/output/nl/translators.html
index b34d447..cd51cfe 100644
--- a/output/nl/translators.html
+++ b/output/nl/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index 3387e6d..4eaab38 100644
--- a/output/pl/Documentation.html
+++ b/output/pl/Documentation.html
@@ -5211,7 +5211,7 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/pl/translators.html b/output/pl/translators.html
index 53f6499..919d9b2 100644
--- a/output/pl/translators.html
+++ b/output/pl/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index cb34780..37c6ad1 100644
--- a/output/pt_BR/Documentation.html
+++ b/output/pt_BR/Documentation.html
@@ -5195,9 +5195,9 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">Equipe de
-desenvolvimento do phpMyAdmin</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">Licença</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Doações</a></li>
<li class="last"><a href="http://validator.w3.org/check/referer">HTML</a> e <a
diff --git a/output/pt_BR/translators.html b/output/pt_BR/translators.html
index 2e92c68..a0089a8 100644
--- a/output/pt_BR/translators.html
+++ b/output/pt_BR/translators.html
@@ -480,9 +480,9 @@ forneçam suporte por e-mail.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">Equipe de
-desenvolvimento do phpMyAdmin</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">Licença</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Doações</a></li>
<li class="last"><a href="http://validator.w3.org/check/referer">HTML</a> e <a
diff --git a/output/ro/translators.html b/output/ro/translators.html
index 917da67..b75d2c4 100644
--- a/output/ro/translators.html
+++ b/output/ro/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/sk/translators.html b/output/sk/translators.html
index 6e3c81f..1248cd9 100644
--- a/output/sk/translators.html
+++ b/output/sk/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/sv/translators.html b/output/sv/translators.html
index 5e0b88b..6e8ae8b 100644
--- a/output/sv/translators.html
+++ b/output/sv/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/tr/translators.html b/output/tr/translators.html
index ad65971..cbf194b 100644
--- a/output/tr/translators.html
+++ b/output/tr/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/output/zh_CN/Documentation.html b/output/zh_CN/Documentation.html
index e18b770..5bdf5e8 100644
--- a/output/zh_CN/Documentation.html
+++ b/output/zh_CN/Documentation.html
@@ -4682,8 +4682,9 @@ Language))</a> - 一个 W3C 推荐用来创建可以描述不同类型数据的
</div>
<ul id="footer">
- <li>版权所有 © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin 开发组 (英语)</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">授权</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">捐助 (英语)</a></li>
<li class="last">验证 <a href="http://validator.w3.org/check/referer">HTML</a> 和 <a
diff --git a/output/zh_CN/translators.html b/output/zh_CN/translators.html
index 9de1f2e..f4896a2 100644
--- a/output/zh_CN/translators.html
+++ b/output/zh_CN/translators.html
@@ -473,8 +473,9 @@ href="https://l10n.cihar.com/projects/pmadoc/">翻译服务器</a>来帮助我
</div>
<ul id="footer">
- <li>版权所有 © 2003 - 2009 <a
-href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin 开发组 (英语)</a></li>
+ <li>Copyright © 2003 - 2010 <a
+href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
+team</a></li>
<li><a href="LICENSE">授权</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">捐助 (英语)</a></li>
<li class="last">验证 <a href="http://validator.w3.org/check/referer">HTML</a> 和 <a
diff --git a/output/zh_TW/translators.html b/output/zh_TW/translators.html
index b227469..ae81e2c 100644
--- a/output/zh_TW/translators.html
+++ b/output/zh_TW/translators.html
@@ -478,7 +478,7 @@ provide e-mail support.</span></p>
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a
+ <li>Copyright © 2003 - 2010 <a
href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
team</a></li>
<li><a href="LICENSE">License</a></li>
diff --git a/po/ca.po b/po/ca.po
index 6bdcc8f..9f00ba9 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-20 16:12+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: none\n"
@@ -10846,10 +10846,12 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
+"<a href=\"http://www.phpmyadmin.net/\">Pàgina inicial de phpMyAdmin</a>"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5042 ../phpmyadmin/translators.html:464
diff --git a/po/cs.po b/po/cs.po
index 165426d..32a9150 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: po 4a\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-04-12 14:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Czech <cs(a)li.org>\n"
@@ -11098,8 +11098,9 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
diff --git a/po/de.po b/po/de.po
index 9581701..5595ed3 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-08-10 11:41+0200\n"
"Last-Translator: Sören Spreng <soeren.spreng(a)gmail.com>\n"
"Language-Team: none\n"
@@ -11324,10 +11324,11 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
-msgstr ""
+msgstr "<a href=\"http://www.phpmyadmin.net/\"> phpMyAdmin Homepage</a>"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5042 ../phpmyadmin/translators.html:464
diff --git a/po/en_GB.po b/po/en_GB.po
index 82730fe..3e0e454 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -13784,8 +13784,9 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
diff --git a/po/es.po b/po/es.po
index 2bb700a..bbac76b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-29 16:12+0200\n"
"Last-Translator: Alberto Luaces <aluaces(a)udc.es>\n"
"Language-Team: none\n"
@@ -11007,10 +11007,12 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
+"<a href=\"http://www.phpmyadmin.net/\"> Página principal de phpMyAdmin</a>"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5042 ../phpmyadmin/translators.html:464
diff --git a/po/fi.po b/po/fi.po
index fa14d7f..d2dfcb0 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10824,7 +10824,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 09ed372..cb7b09c 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-03-14 17:02+0200\n"
"Last-Translator: Cédric Corazza <cedric.corazza(a)wanadoo.fr>\n"
"Language-Team: none\n"
@@ -14804,8 +14804,9 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
diff --git a/po/gl.po b/po/gl.po
index 59d4a33..cb94963 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10823,7 +10823,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index fe85360..1a293ce 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10824,7 +10824,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/hy.po b/po/hy.po
index cced743..de8b4e7 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: 2010-04-11 10:05+0200\n"
"Last-Translator: <keepitg(a)mail.ru>\n"
"Language-Team: none\n"
@@ -10835,10 +10835,11 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
-msgstr ""
+msgstr "<a href=\"http://www.phpmyadmin.net/\"> phpMyAdmin գլխավոր էջ</a>"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5042 ../phpmyadmin/translators.html:464
diff --git a/po/it.po b/po/it.po
index 0ebfa86..b774db1 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-03-10 19:42+0200\n"
"Last-Translator: <fantonifabio(a)tiscali.it>\n"
"Language-Team: Italian <it(a)li.org>\n"
@@ -13189,8 +13189,9 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
diff --git a/po/ja.po b/po/ja.po
index 241503a..9896f16 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-03-18 19:12+0200\n"
"Last-Translator: <okinawa11(a)hotmail.com>\n"
"Language-Team: Japan <jp(a)li.org>\n"
@@ -13335,7 +13335,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"<a href=\"http://www.phpmyadmin.net/\"> SourceForge phpMyAdmin プロジェクト"
diff --git a/po/ka.po b/po/ka.po
index 9ed178a..c826f1b 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10824,7 +10824,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 9b80e14..596eba7 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-03-30 20:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: none\n"
@@ -10850,10 +10850,11 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
-msgstr ""
+msgstr "<a href=\"http://www.phpmyadmin.net/\"> phpMyAdmin tinklapis</a>"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5042 ../phpmyadmin/translators.html:464
diff --git a/po/mn.po b/po/mn.po
index eba7597..144b811 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10820,7 +10820,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 67964b1..38ccdfc 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10824,7 +10824,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 4510915..6c9a29c 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-02-15 13:42+0200\n"
"Last-Translator: <thyone(a)thyone.org>\n"
"Language-Team: none\n"
@@ -10964,10 +10964,11 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
-msgstr ""
+msgstr "<a href=\"http://www.phpmyadmin.net/\"> phpMyAdmin homepage</a>"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5042 ../phpmyadmin/translators.html:464
diff --git a/po/pl.po b/po/pl.po
index 01f7384..49502d8 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-01-22 15:13+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: Polish <pl(a)li.org>\n"
@@ -12796,7 +12796,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"<a href=\"http://www.phpmyadmin.net/\"> Strona projektu phpMyAdmina na "
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 6befaa4..2f4749f 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-04-06 16:59+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: none\n"
@@ -11317,8 +11317,9 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
diff --git a/po/ro.po b/po/ro.po
index 757ca6c..d06be37 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-03-01 12:14+0200\n"
"Last-Translator: <the_sky_dreamer2003(a)yahoo.com>\n"
"Language-Team: none\n"
@@ -10830,7 +10830,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index dcf7f8e..68f68b1 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:45+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10823,7 +10823,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index b565721..3787d0f 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10824,7 +10824,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 4da9443..df19976 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10824,7 +10824,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 715b205..bfccbeb 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:45+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: 2010-03-04 14:08+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: none\n"
@@ -12010,8 +12010,9 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
+#, fuzzy
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
"版权所有 © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 603bfe4..8d00396 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:45+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 88adfbf..dd230db 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 781aa09..81c1c1c 100644
--- a/pot/ca-html.pot
+++ b/pot/ca-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/ca-txt.pot
+++ b/pot/ca-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-full.pot b/pot/cs-full.pot
index f9b0548..8cb2437 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index 0f3aa2e..9fa83e2 100644
--- a/pot/cs-html.pot
+++ b/pot/cs-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index a17e6bb..e883632 100644
--- a/pot/cs-txt.pot
+++ b/pot/cs-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-full.pot b/pot/de-full.pot
index 7a4d06b..591f269 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/de-html.pot b/pot/de-html.pot
index 60c55cb..39102c7 100644
--- a/pot/de-html.pot
+++ b/pot/de-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/de-txt.pot
+++ b/pot/de-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-full.pot b/pot/en_GB-full.pot
index 82ff1ff..0815f0e 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 09adcd8..ce7b35c 100644
--- a/pot/en_GB-html.pot
+++ b/pot/en_GB-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index 836a90c..0b5f567 100644
--- a/pot/en_GB-txt.pot
+++ b/pot/en_GB-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-full.pot b/pot/es-full.pot
index 1a959f6..49230dd 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/es-html.pot b/pot/es-html.pot
index fe6d0cd..eff4e78 100644
--- a/pot/es-html.pot
+++ b/pot/es-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/es-txt.pot
+++ b/pot/es-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-full.pot b/pot/fi-full.pot
index 3f5d254..d89a9bf 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index 8d70ed8..2035e6c 100644
--- a/pot/fi-html.pot
+++ b/pot/fi-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/fi-txt.pot
+++ b/pot/fi-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-full.pot b/pot/fr-full.pot
index 8898293..96ab592 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index 3728bc3..996b98a 100644
--- a/pot/fr-html.pot
+++ b/pot/fr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index a17e6bb..e883632 100644
--- a/pot/fr-txt.pot
+++ b/pot/fr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-full.pot b/pot/gl-full.pot
index 3ea9bde..2360f0c 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index fdfdfed..3716f44 100644
--- a/pot/gl-html.pot
+++ b/pot/gl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index a17e6bb..e883632 100644
--- a/pot/gl-txt.pot
+++ b/pot/gl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-full.pot b/pot/hu-full.pot
index 00a2a78..0206d49 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index 52e01cd..5acdcbc 100644
--- a/pot/hu-html.pot
+++ b/pot/hu-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -
10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/hu-txt.pot
+++ b/pot/hu-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-full.pot b/pot/hy-full.pot
index 8fc21cf..2321d87 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index a3db593..a59a87e 100644
--- a/pot/hy-html.pot
+++ b/pot/hy-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index 836a90c..0b5f567 100644
--- a/pot/hy-txt.pot
+++ b/pot/hy-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-full.pot b/pot/it-full.pot
index e49099e..efaa5ad 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:06+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/it-html.pot b/pot/it-html.pot
index 226a592..be31ac9 100644
--- a/pot/it-html.pot
+++ b/pot/it-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:06+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index 0cfbd3e..e883632 100644
--- a/pot/it-txt.pot
+++ b/pot/it-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:06+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-full.pot b/pot/ja-full.pot
index 488c73e..72b3f57 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index c48ae5c..b306852 100644
--- a/pot/ja-html.pot
+++ b/pot/ja-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index a17e6bb..e883632 100644
--- a/pot/ja-txt.pot
+++ b/pot/ja-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-full.pot b/pot/ka-full.pot
index bb73d85..9499fd0 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 29586f7..2c66014 100644
--- a/pot/ka-html.pot
+++ b/pot/ka-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index a17e6bb..e883632 100644
--- a/pot/ka-txt.pot
+++ b/pot/ka-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-full.pot b/pot/lt-full.pot
index 9436514..59b4063 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index 57a55cd..fd66ac8 100644
--- a/pot/lt-html.pot
+++ b/pot/lt-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/lt-txt.pot
+++ b/pot/lt-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-full.pot b/pot/mn-full.pot
index b7fe985..5285084 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index 330b4fb..cd3f044 100644
--- a/pot/mn-html.pot
+++ b/pot/mn-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index 836a90c..e883632 100644
--- a/pot/mn-txt.pot
+++ b/pot/mn-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-full.pot b/pot/nb-full.pot
index 7e10f1d..a6d9148 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index a875244..2afecca 100644
--- a/pot/nb-html.pot
+++ b/pot/nb-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/nb-txt.pot
+++ b/pot/nb-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-full.pot b/pot/nl-full.pot
index 766c22d..238e23f 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index 4f0772a..be173ae 100644
--- a/pot/nl-html.pot
+++ b/pot/nl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index a17e6bb..e883632 100644
--- a/pot/nl-txt.pot
+++ b/pot/nl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-full.pot b/pot/pl-full.pot
index 19b8f33..7b57d93 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:06+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/pl-html.pot b/pot/pl-html.pot
index 5ce8696..80e5726 100644
--- a/pot/pl-html.pot
+++ b/pot/pl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:06+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/pl-txt.pot b/pot/pl-txt.pot
index 0cfbd3e..e883632 100644
--- a/pot/pl-txt.pot
+++ b/pot/pl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:06+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-full.pot b/pot/pt_BR-full.pot
index 95dab39..9dfda09 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index 8d95a03..2f7c41a 100644
--- a/pot/pt_BR-html.pot
+++ b/pot/pt_BR-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index 836a90c..e883632 100644
--- a/pot/pt_BR-txt.pot
+++ b/pot/pt_BR-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-full.pot b/pot/ro-full.pot
index 69e1ad1..4c24bed 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,20 +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: 2010-04-12 14:08+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\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: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10832,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/ro-html.pot b/pot/ro-html.pot
index 7ccbb73..3cd3fec 100644
--- a/pot/ro-html.pot
+++ b/pot/ro-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/ro-txt.pot b/pot/ro-txt.pot
index 836a90c..e883632 100644
--- a/pot/ro-txt.pot
+++ b/pot/ro-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-full.pot b/pot/sk-full.pot
index cc30119..9627a2d 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/sk-html.pot b/pot/sk-html.pot
index 891b874..3ab4937 100644
--- a/pot/sk-html.pot
+++ b/pot/sk-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/sk-txt.pot b/pot/sk-txt.pot
index 836a90c..0b5f567 100644
--- a/pot/sk-txt.pot
+++ b/pot/sk-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-full.pot b/pot/sv-full.pot
index c300fa9..25e7d1c 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/sv-html.pot b/pot/sv-html.pot
index 310844e..ee0710c 100644
--- a/pot/sv-html.pot
+++ b/pot/sv-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/sv-txt.pot b/pot/sv-txt.pot
index a17e6bb..e883632 100644
--- a/pot/sv-txt.pot
+++ b/pot/sv-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-full.pot b/pot/tr-full.pot
index 4a6bc27..5c86f82 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -6,20 +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: 2010-04-12 14:07+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\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: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10832,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/tr-html.pot b/pot/tr-html.pot
index 96a5ef0..caff35c 100644
--- a/pot/tr-html.pot
+++ b/pot/tr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/tr-txt.pot b/pot/tr-txt.pot
index 0f2a05d..e883632 100644
--- a/pot/tr-txt.pot
+++ b/pot/tr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-full.pot b/pot/zh_CN-full.pot
index 941d3f5..f151abb 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -6,9 +6,20 @@
#, 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: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: ENCODING\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: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10832,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index 73340c5..9759fc2 100644
--- a/pot/zh_CN-html.pot
+++ b/pot/zh_CN-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:42+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index 836a90c..0b5f567 100644
--- a/pot/zh_CN-txt.pot
+++ b/pot/zh_CN-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-full.pot b/pot/zh_TW-full.pot
index c793e7a..976e97a 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10821,7 +10821,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
diff --git a/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index 65e3105..4b7ad50 100644
--- a/pot/zh_TW-html.pot
+++ b/pot/zh_TW-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10881,7 +10881,7 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5041 ../phpmyadmin/translators.html:463
msgid ""
-"Copyright © 2003 - 2009 <a "
+"Copyright © 2003 - 2010 <a "
"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
"team</a>"
msgstr ""
diff --git a/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index 836a90c..0b5f567 100644
--- a/pot/zh_TW-txt.pot
+++ b/pot/zh_TW-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-12 14:09+0300\n"
+"POT-Creation-Date: 2010-04-16 10:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
hooks/post-receive
--
phpMyAdmin localized documentation
1
0