Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 3 participants
- 39098 discussions
[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
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1597-g43c7f40
by Herman van Rink 16 Apr '10
by Herman van Rink 16 Apr '10
16 Apr '10
The branch, master has been updated
via 43c7f409e329203d3698fbaf70b305ff1eaf5a0f (commit)
from 541c99c084a60b35865ab7f60d7b1442f6a6d554 (commit)
- Log -----------------------------------------------------------------
commit 43c7f409e329203d3698fbaf70b305ff1eaf5a0f
Author: Herman van Rink <rink(a)initfour.nl>
Date: Fri Apr 16 10:03:49 2010 +0200
Add missing slash in jquery css include
-----------------------------------------------------------------------
Summary of changes:
libraries/header_meta_style.inc.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libraries/header_meta_style.inc.php b/libraries/header_meta_style.inc.php
index 1e656c5..02c0aa1 100644
--- a/libraries/header_meta_style.inc.php
+++ b/libraries/header_meta_style.inc.php
@@ -56,5 +56,5 @@ if ($GLOBALS['text_dir'] == 'ltr') {
?>
<link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : ''; ?>phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
<link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : ''; ?>print.css" media="print" />
- <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['pmaThemePath']; ?>jquery/jquery-ui-1.8.custom.css" />
+ <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['pmaThemePath']; ?>/jquery/jquery-ui-1.8.custom.css" />
<meta name="robots" content="noindex,nofollow" />
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1596-g541c99c
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 541c99c084a60b35865ab7f60d7b1442f6a6d554 (commit)
via 69dd779f407a41d9b6ea5b8c7418cfac322368cb (commit)
from 67fd7e2567009a8bc6eb605e18587efc9b7047c4 (commit)
- Log -----------------------------------------------------------------
commit 541c99c084a60b35865ab7f60d7b1442f6a6d554
Merge: 67fd7e2567009a8bc6eb605e18587efc9b7047c4 69dd779f407a41d9b6ea5b8c7418cfac322368cb
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 09:58:27 2010 +0200
Merge branch 'QA_3_3'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
pmd_general.php | 2 +-
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 602ae21..8814169 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -83,6 +83,8 @@ $Id$
thanks to Björn Wiberg - bwiberg
- bug #2983066 [interface] Flush table on table operations shows the query twice,
thanks to Martynas Mickevičius - BlinK_
+- bug #2983060, patch #2987900 [interface] Fix initial state of tables in
+ designer, thanks to Sutharshan Balachandren.
3.3.2.0 (2010-04-13)
- patch #2969449 [core] Name for MERGE engine varies depending on the
diff --git a/pmd_general.php b/pmd_general.php
index 01a0a2d..f5be698 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -224,7 +224,7 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
</tr>
</thead>
<tbody id="id_tbody_<?php echo $t_n_url ?>"
- <?php if (! isset($tab_pos[$t_n])) echo 'style="display: none;"'; ?>>
+ <?php if ( isset($tab_pos[$t_n])) echo 'style="display: none;"'; ?>>
<?php
$display_field = PMA_getDisplayField($db, $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i]);
for ($j = 0, $id_cnt = count($tab_column[$t_n]["COLUMN_ID"]); $j < $id_cnt; $j++) {
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_2-19-g69dd779
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, QA_3_3 has been updated
via 69dd779f407a41d9b6ea5b8c7418cfac322368cb (commit)
from b6132c51540b24d821641d0a2c7a749bbc55d813 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
pmd_general.php | 2 +-
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5df54a1..ac9f998 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
thanks to Björn Wiberg - bwiberg
- bug #2983066 [interface] Flush table on table operations shows the query twice,
thanks to Martynas Mickevičius - BlinK_
+- bug #2983060, patch #2987900 [interface] Fix initial state of tables in
+ designer, thanks to Sutharshan Balachandren.
3.3.2.0 (2010-04-13)
- patch #2969449 [core] Name for MERGE engine varies depending on the
diff --git a/pmd_general.php b/pmd_general.php
index 8fd22fd..6956dd6 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -225,7 +225,7 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
</tr>
</thead>
<tbody id="id_tbody_<?php echo $t_n_url ?>"
- <?php if (! isset($tab_pos[$t_n])) echo 'style="display: none;"'; ?>>
+ <?php if ( isset($tab_pos[$t_n])) echo 'style="display: none;"'; ?>>
<?php
$display_field = PMA_getDisplayField($db, $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i]);
for ($j = 0, $id_cnt = count($tab_column[$t_n]["COLUMN_ID"]); $j < $id_cnt; $j++) {
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1594-g67fd7e2
by Michal Čihař 16 Apr '10
by Michal Čihař 16 Apr '10
16 Apr '10
The branch, master has been updated
via 67fd7e2567009a8bc6eb605e18587efc9b7047c4 (commit)
via e194beb978f98a11777e91ee09b95b9ff3656b67 (commit)
from 46b2ed8dddac3d0bc925a9d58c652cc4e95d6cfb (commit)
- Log -----------------------------------------------------------------
commit 67fd7e2567009a8bc6eb605e18587efc9b7047c4
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 16 09:54:19 2010 +0200
CURRENT_TIMESTAMP is also valid for DATETIME.
commit e194beb978f98a11777e91ee09b95b9ff3656b67
Author: Sutharshan Balachandren <sutharshan02(a)gmail.com>
Date: Fri Apr 16 09:53:18 2010 +0200
[interface] Add javascript validation of datetime input.
patch #2983960
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 +
js/tbl_change.js | 170 ++++++++++++++++++++++++
tbl_change.php | 24 ++--
themes/darkblue_orange/css/theme_right.css.php | 5 +
themes/original/css/theme_right.css.php | 5 +
5 files changed, 194 insertions(+), 12 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 64695b9..602ae21 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -69,6 +69,8 @@ $Id$
- patch #2985068 [engines] Fix parsing of PBXT status, thanks to Madhura Jayaratne.
- patch #2986073 [interface] Convert upload progress bar to jQuery, thanks to
Philip Frank.
+- patch #2983960 [interface] Add javascript validation of datetime input,
+ thanks to
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_change.js b/js/tbl_change.js
index 97c9bf7..9539591 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -56,6 +56,175 @@ function nullify(theType, urlField, md5Field, multi_edit)
/**
+ * javascript DateTime format validation.
+ * its used to prevent adding default (0000-00-00 00:00:00) to database when user enter wrong values
+ * Start of validation part
+ */
+//function checks the number of days in febuary
+function daysInFebruary (year){
+ return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
+}
+//function to convert single digit to double digit
+function fractionReplace(num)
+{
+ num=parseInt(num);
+ var res="00";
+ switch(num)
+ {
+ case 1:res= "01";break;
+ case 2:res= "02";break;
+ case 3:res= "03";break;
+ case 4:res= "04";break;
+ case 5:res= "05";break;
+ case 6:res= "06";break;
+ case 7:res= "07";break;
+ case 8:res= "08";break;
+ case 9:res= "09";break;
+ }
+ return res;
+}
+
+/* function to check the validity of date
+* The following patterns are accepted in this validation (accepted in mysql as well)
+* 1) 2001-12-23
+* 2) 2001-1-2
+* 3) 02-12-23
+* 4) And instead of using '-' the following punctuations can be used (+,.,*,^,@,/) All these are accepted by mysql as well. Therefore no issues
+*/
+function isDate(val,tmstmp)
+{
+ val=val.replace(/[.|*|^|+|//|@]/g,'-');
+ var arrayVal=val.split("-");
+ for(var a=0;a<arrayVal.length;a++)
+ {
+ if(arrayVal[a].length==1)
+ arrayVal[a]=fractionReplace(arrayVal[a]);
+ }
+ val=arrayVal.join("-");
+ var pos=2;
+ dtexp=new RegExp(/^([0-9]{4})-(((01|03|05|07|08|10|12)-((0[0-9])|([1-2][0-9])|(3[0-1])))|((02|04|06|09|11)-((0[0-9])|([1-2][0-9])|30)))$/);
+ if(val.length==8)
+ {
+ dtexp=new RegExp(/^([0-9]{2})-(((01|03|05|07|08|10|12)-((0[0-9])|([1-2][0-9])|(3[0-1])))|((02|04|06|09|11)-((0[0-9])|([1-2][0-9])|30)))$/);
+ pos=0;
+ }
+ if(dtexp.test(val))
+ {
+ var month=parseInt(val.substring(pos+3,pos+5));
+ var day=parseInt(val.substring(pos+6,pos+8));
+ var year=parseInt(val.substring(0,pos+2));
+ if(month==2&&day>daysInFebruary(year))
+ return false;
+ if(val.substring(0,pos+2).length==2)
+ {
+ if(val.substring(0,pos+2).length==2)
+ year=parseInt("20"+val.substring(0,pos+2));
+ else
+ year=parseInt("19"+val.substring(0,pos+2));
+ }
+ if(tmstmp==true)
+ {
+ if(year<1978) return false;
+ if(year>2038||(year>2037&&day>19&&month>=1)||(year>2037&&month>1)) return false;
+ }
+ }
+ else
+ return false;
+ return true;
+}
+
+/* function to check the validity of time
+* The following patterns are accepted in this validation (accepted in mysql as well)
+* 1) 2:3:4
+* 2) 2:23:43
+*/
+function isTime(val)
+{
+ var arrayVal=val.split(":");
+ for(var a=0;a<arrayVal.length;a++)
+ {
+ if(arrayVal[a].length==1)
+ arrayVal[a]=fractionReplace(arrayVal[a]);
+ }
+ val=arrayVal.join(":");
+ tmexp=new RegExp(/^(([0-1][0-9])|(2[0-3])):((0[0-9])|([1-5][0-9])):((0[0-9])|([1-5][0-9]))$/);
+ if(!tmexp.test(val))
+ return false;
+ return true;
+}
+//validate the datetime and integer
+function Validator(urlField, multi_edit,theType){
+ var rowForm = document.forms['insertForm'];
+ var evt = window.event || arguments.callee.caller.arguments[0];
+ var target = evt.target || evt.srcElement;
+ unNullify(urlField, multi_edit);
+
+ if(target.name.substring(0,6)=="fields")
+ {
+ var dt=rowForm.elements['fields[multi_edit][' + multi_edit + '][' + urlField + ']'];
+ // validate for date time
+ if(theType=="datetime"||theType=="time"||theType=="date"||theType=="timestamp")
+ {
+ if(theType=="date"){
+ if(!isDate(dt.value))
+ {
+ dt.className="invalid_value";
+ return false;
+ }
+ }
+ else if(theType=="time")
+ {
+ if(!isTime(dt.value))
+ {
+ dt.className="invalid_value";
+ return false;
+ }
+ }
+ else if(theType=="datetime"||theType=="timestamp")
+ {
+ tmstmp=false;
+ if(dt.value=="CURRENT_TIMESTAMP")
+ {
+ dt.className="";
+ return true;
+ }
+ if(theType=="timestamp")
+ {
+ tmstmp=true;
+ }
+ if(dt.value=="0000-00-00 00:00:00")
+ return true;
+ var dv=dt.value.indexOf(" ");
+ if(dv==-1)
+ {
+ dt.className="invalid_value";
+ return false;
+ }
+ else
+ {
+ if(!(isDate(dt.value.substring(0,dv),tmstmp)&&isTime(dt.value.substring(dv+1))))
+ {
+ dt.className="invalid_value";
+ return false;
+ }
+ }
+ }
+ }
+ //validate for integer type
+ if(theType.substring(0,3)=="int"){
+
+ if(isNaN(dt.value)){
+ dt.className="invalid_value";
+ return false;
+ }
+ }
+ }
+
+ dt.className="";
+ }
+ /* End of datetime validation*/
+
+/**
* Unchecks the "NULL" control when a function has been selected or a value
* entered
*
@@ -351,6 +520,7 @@ function returnDate(d) {
}
window.opener.dateField.value = txt;
+ window.opener.dateField.className='';
if (typeof(window.opener.dateFieldNull) != 'undefined') {
window.opener.dateFieldNull.checked = false;
}
diff --git a/tbl_change.php b/tbl_change.php
index 631b8f6..84e5f69 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -183,7 +183,7 @@ if (isset($where_clause)) {
} else { // end if (no row returned)
$meta = PMA_DBI_get_fields_meta($result[$key_id]);
list($unique_condition, $tmp_clause_is_unique) = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true);
- if (! empty($unique_condition)) {
+ if (! empty($unique_condition)) {
$found_unique_key = true;
}
unset($unique_condition, $tmp_clause_is_unique);
@@ -242,6 +242,7 @@ if (isset($clause_is_unique)) {
}
?>
+
<!-- Insert/Edit form -->
<form method="post" action="tbl_replace.php" name="insertForm" <?php if ($is_upload) { echo ' enctype="multipart/form-data"'; } ?>>
<?php
@@ -304,7 +305,7 @@ foreach ($rows as $row_id => $vrow) {
<thead>
<tr>
<th><?php echo $strField; ?></th>
-
+
<?php
if ($cfg['ShowFieldTypesInDataEditView']) {
$this_url_params = array_merge($url_params,
@@ -345,8 +346,8 @@ foreach ($rows as $row_id => $vrow) {
// d a t e t i m e
//
// Current date should not be set as default if the field is NULL
- // for the current row, but do not put here the current datetime
- // if there is a default value (the real default value will be set
+ // for the current row, but do not put here the current datetime
+ // if there is a default value (the real default value will be set
// in the Default value logic below)
// Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
@@ -411,10 +412,9 @@ foreach ($rows as $row_id => $vrow) {
if (-1 === $field['len']) {
$field['len'] = PMA_DBI_field_len($vresult, $i);
}
-
- $unnullify_trigger = $chg_evt_handler . "=\"return unNullify('"
- . PMA_escapeJsString($field['Field_md5']) . "', '"
- . PMA_escapeJsString($jsvkey) . "')\"";
+ //Call validation when the form submited...
+ $unnullify_trigger = $chg_evt_handler . "=\"return Validator('". PMA_escapeJsString($field['Field_md5']) . "', '"
+ . PMA_escapeJsString($jsvkey) . "','".$field['pma_type']."')\"";
// Use an MD5 as an array index to avoid having special characters in the name atttibute (see bug #1746964 )
$field_name_appendix = $vkey . '[' . $field['Field_md5'] . ']';
@@ -439,7 +439,7 @@ foreach ($rows as $row_id => $vrow) {
<td align="center"<?php echo $field['wrap']; ?>>
<?php echo $field['pma_type']; ?>
</td>
-
+
<?php } //End if
// Prepares the field value
@@ -562,12 +562,12 @@ foreach ($rows as $row_id => $vrow) {
) {
$default_function = $cfg['DefaultFunctions']['pk_char36'];
}
-
+
// this is set only when appropriate and is always true
if (isset($field['display_binary_as_hex'])) {
$default_function = 'UNHEX';
}
-
+
// loop on the dropdown array and print all available options for that field.
foreach ($dropdown as $each_dropdown){
echo '<option';
@@ -639,7 +639,7 @@ foreach ($rows as $row_id => $vrow) {
// foreign key in a drop-down
$onclick .= '4, ';
} elseif ($foreigners && isset($foreigners[$field['Field']]) && $foreignData['foreign_link'] == true) {
- // foreign key with a browsing icon
+ // foreign key with a browsing icon
$onclick .= '6, ';
} else {
$onclick .= '5, ';
diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php
index 2a78ca8..38743e3 100644
--- a/themes/darkblue_orange/css/theme_right.css.php
+++ b/themes/darkblue_orange/css/theme_right.css.php
@@ -1284,3 +1284,8 @@ table#serverconnection_trg_local {
width: 85%;
padding: 0.1em;
}
+/**
+ * Validation error message styles
+ */
+.invalid_value
+{background:#F00;}
\ No newline at end of file
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php
index acb2c7d..34c5052 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -1216,3 +1216,8 @@ table#serverconnection_src_local,
table#serverconnection_trg_local {
float:left;
}
+/**
+ * Validation error message styles
+ */
+.invalid_value
+{background:#F00;}
\ No newline at end of file
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-1592-g46b2ed8
by Marc Delisle 15 Apr '10
by Marc Delisle 15 Apr '10
15 Apr '10
The branch, master has been updated
via 46b2ed8dddac3d0bc925a9d58c652cc4e95d6cfb (commit)
from a384bef30bb8655809629232d21e47e792921dad (commit)
- Log -----------------------------------------------------------------
commit 46b2ed8dddac3d0bc925a9d58c652cc4e95d6cfb
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Apr 15 11:24:31 2010 -0400
current bytes uploaded was displayed as undefined
-----------------------------------------------------------------------
Summary of changes:
libraries/display_import.lib.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php
index c1d94c5..2d5d526 100644
--- a/libraries/display_import.lib.php
+++ b/libraries/display_import.lib.php
@@ -61,7 +61,7 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
finished = response.finished;
percent = response.percent;
total = response.total;
- complete = total.complete;
+ complete = response.complete;
if (total==0 && complete==0 && percent==0) {
$('#upload_form_status_info').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo PMA_jsFormat($strImportLargeFileUploading); ?>');
hooks/post-receive
--
phpMyAdmin
1
0