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

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_1RC1-77-ga4ca163
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, QA_3_3 has been updated
via a4ca1638e95cb7892c878394440a103d015be6fa (commit)
from 589504fe8a423b794797f72cf61b60fc8b770b3e (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
pdf_schema.php | 56 ++++++++++++++++++++++++++++++++++++--------------------
2 files changed, 37 insertions(+), 20 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 807fe76..f4da7a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2972232 [menu] Import menu tab not present on main page
- patch #2976790 [menu] Go to the upper level after table DROP,
thanks to Kaarel Nummert - kaarelnu
+- patch #2978815 [pdf] Fix generating PDF with table dimensions, thanks to BlinK_
3.3.1.0 (2010-03-16)
- bug #2941037 [core] Database structure not sorted by table correctly
diff --git a/pdf_schema.php b/pdf_schema.php
index 82a07c1..086301a 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -511,8 +511,19 @@ class PMA_RT_Table {
var $height_cell = 6;
var $x, $y;
var $primary = array();
+ var $show_info = false;
/**
+ * Returns title of the current table,
+ * title can have the dimensions of the table
+ *
+ * @access private
+ */
+ function getTitle()
+ {
+ return ($this->show_info ? sprintf('%.0f', $this->width) . 'x' . sprintf('%.0f', $this->height) : '') . ' ' . $this->table_name;
+ } // end of the "getTitle" function
+ /**
* Sets the width of the table
*
* @param integer $ The font size
@@ -522,8 +533,6 @@ class PMA_RT_Table {
*/
function PMA_RT_Table_setWidth($ff)
{
- // this looks buggy to me... does it really work if
- // there are fields that require wider cells than the name of the table?
global $pdf;
foreach ($this->fields AS $field) {
@@ -531,7 +540,11 @@ class PMA_RT_Table {
}
$this->width += $pdf->GetStringWidth(' ');
$pdf->SetFont($ff, 'B');
- $this->width = max($this->width, $pdf->GetStringWidth(' ' . $this->table_name));
+ // it is unknown what value must be added, because
+ // table title is affected by the tabe width value
+ while ($this->width < $pdf->GetStringWidth($this->getTitle())) {
+ $this->width += 5;
+ }
$pdf->SetFont($ff, '');
} // end of the "PMA_RT_Table_setWidth()" method
/**
@@ -546,7 +559,6 @@ class PMA_RT_Table {
/**
* Do draw the table
*
- * @param boolean $ Whether to display table position or not
* @param integer $ The font size
* @param boolean $ Whether to display color
* @param integer $ The max. with among tables
@@ -554,7 +566,7 @@ class PMA_RT_Table {
* @access private
* @see PMA_PDF
*/
- function PMA_RT_Table_draw($show_info, $ff, $setcolor = 0)
+ function PMA_RT_Table_draw($ff, $setcolor = 0)
{
global $pdf, $with_doc;
@@ -570,11 +582,7 @@ class PMA_RT_Table {
$pdf->PMA_links['doc'][$this->table_name]['-'] = '';
}
- if ($show_info) {
- $pdf->PMA_PDF_cellScale($this->width, $this->height_cell, sprintf('%.0f', $this->width) . 'x' . sprintf('%.0f', $this->height) . ' ' . $this->table_name, 1, 1, 'C', $setcolor, $pdf->PMA_links['doc'][$this->table_name]['-']);
- } else {
- $pdf->PMA_PDF_cellScale($this->width, $this->height_cell, $this->table_name, 1, 1, 'C', $setcolor, $pdf->PMA_links['doc'][$this->table_name]['-']);
- }
+ $pdf->PMA_PDF_cellScale($this->width, $this->height_cell, $this->getTitle(), 1, 1, 'C', $setcolor, $pdf->PMA_links['doc'][$this->table_name]['-']);
$pdf->PMA_PDF_setXScale($this->x);
$pdf->SetFont($ff, '');
$pdf->SetTextColor(0);
@@ -611,6 +619,8 @@ class PMA_RT_Table {
* @param string $ The table name
* @param integer $ The font size
* @param integer $ The max. with among tables
+ * @param boolean $ Whether to display keys or not
+ * @param boolean $ Whether to display table position or not
* @global object The current PDF document
* @global integer The current page number (from the
* $cfg['Servers'][$i]['table_coords'] table)
@@ -620,7 +630,7 @@ class PMA_RT_Table {
* @see PMA_PDF, PMA_RT_Table::PMA_RT_Table_setWidth,
PMA_RT_Table::PMA_RT_Table_setHeight
*/
- function __construct($table_name, $ff, &$same_wide_width, $show_keys)
+ function __construct($table_name, $ff, &$same_wide_width, $show_keys = false, $show_info = false)
{
global $pdf, $pdf_page_number, $cfgRelation, $db;
@@ -644,9 +654,14 @@ class PMA_RT_Table {
$this->fields[] = $row[0];
}
}
+
+ $this->show_info = $show_info;
+
// height and width
- $this->PMA_RT_Table_setWidth($ff);
$this->PMA_RT_Table_setHeight();
+ // setWidth must me after setHeight, because title
+ // can include table height which changes table width
+ $this->PMA_RT_Table_setWidth($ff);
if ($same_wide_width < $this->width) {
$same_wide_width = $this->width;
}
@@ -850,17 +865,18 @@ class PMA_RT {
* @param string $ The relation field in the master table
* @param string $ The foreign table name
* @param string $ The relation field in the foreign table
+ * @param boolean $ Whether to display table position or not
* @access private
* @see PMA_RT_setMinMax
*/
- function PMA_RT_addRelation($master_table, $master_field, $foreign_table, $foreign_field)
+ function PMA_RT_addRelation($master_table, $master_field, $foreign_table, $foreign_field, $show_info)
{
if (!isset($this->tables[$master_table])) {
- $this->tables[$master_table] = new PMA_RT_Table($master_table, $this->ff, $this->tablewidth);
+ $this->tables[$master_table] = new PMA_RT_Table($master_table, $this->ff, $this->tablewidth, false, $show_info);
$this->PMA_RT_setMinMax($this->tables[$master_table]);
}
if (!isset($this->tables[$foreign_table])) {
- $this->tables[$foreign_table] = new PMA_RT_Table($foreign_table, $this->ff, $this->tablewidth);
+ $this->tables[$foreign_table] = new PMA_RT_Table($foreign_table, $this->ff, $this->tablewidth, false, $show_info);
$this->PMA_RT_setMinMax($this->tables[$foreign_table]);
}
$this->relations[] = new PMA_RT_Relation($this->tables[$master_table], $master_field, $this->tables[$foreign_table], $foreign_field);
@@ -918,10 +934,10 @@ class PMA_RT {
* @access private
* @see PMA_RT_Table::PMA_RT_Table_draw()
*/
- function PMA_RT_drawTables($show_info, $draw_color = 0)
+ function PMA_RT_drawTables($draw_color = 0)
{
foreach ($this->tables AS $table) {
- $table->PMA_RT_Table_draw($show_info, $this->ff, $draw_color);
+ $table->PMA_RT_Table_draw($this->ff, $draw_color);
}
} // end of the "PMA_RT_drawTables()" method
/**
@@ -1029,7 +1045,7 @@ class PMA_RT {
foreach ($alltables AS $table) {
if (!isset($this->tables[$table])) {
- $this->tables[$table] = new PMA_RT_Table($table, $this->ff, $this->tablewidth, $show_keys);
+ $this->tables[$table] = new PMA_RT_Table($table, $this->ff, $this->tablewidth, $show_keys, $show_info);
}
if ($this->same_wide) {
@@ -1075,7 +1091,7 @@ class PMA_RT {
// (do not use array_search() because we would have to
// to do a === FALSE and this is not PHP3 compatible)
if (in_array($rel['foreign_table'], $alltables)) {
- $this->PMA_RT_addRelation($one_table, $master_field, $rel['foreign_table'], $rel['foreign_field']);
+ $this->PMA_RT_addRelation($one_table, $master_field, $rel['foreign_table'], $rel['foreign_field'], $show_info);
}
} // end while
} // end if
@@ -1093,7 +1109,7 @@ class PMA_RT {
$this->PMA_RT_drawRelations($change_color);
}
- $this->PMA_RT_drawTables($show_info, $change_color);
+ $this->PMA_RT_drawTables($change_color);
$this->PMA_RT_showRt();
} // end of the "PMA_RT()" method
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-911-ge68305f
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via e68305febd52c7d357a02d21b273423887d2783f (commit)
via 0c526a31b5a4b75ebdc023606fa5610baf0fd795 (commit)
via f61c1b400afd42b95ab7b36f270e50821e2fb489 (commit)
via 2329af48519891bc11471e456b4a4b27e589b86c (commit)
via f28b03a66ab2c8e3dbf090c610ee9db5a22e209c (commit)
via ef477e96929cca6eb0fa09f5efbd7c619757f5ea (commit)
from e7f29a389bc269b72f3cf481c77ae5d15f782775 (commit)
- Log -----------------------------------------------------------------
commit e68305febd52c7d357a02d21b273423887d2783f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 12:25:24 2010 +0200
PMA_langList returns only existing languages, no need to check them again.
commit 0c526a31b5a4b75ebdc023606fa5610baf0fd795
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 12:25:15 2010 +0200
Add Telugu definition.
commit f61c1b400afd42b95ab7b36f270e50821e2fb489
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 12:24:08 2010 +0200
Fix handling of not defined laguanges.
commit 2329af48519891bc11471e456b4a4b27e589b86c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 12:19:06 2010 +0200
Update Czech translation.
commit f28b03a66ab2c8e3dbf090c610ee9db5a22e209c
Merge: ef477e96929cca6eb0fa09f5efbd7c619757f5ea e7f29a389bc269b72f3cf481c77ae5d15f782775
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Mar 30 11:32:54 2010 +0200
Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit ef477e96929cca6eb0fa09f5efbd7c619757f5ea
Merge: 6f5fe44324c8d3d6b31b4ab0800d0861ffc96ab1 ee015566416517673a8c1a0fa2bb97f20a2073a9
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Mar 30 11:32:34 2010 +0200
Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
-----------------------------------------------------------------------
Summary of changes:
libraries/select_lang.lib.php | 4 +++-
po/cs.po | 16 ++++++++--------
setup/frames/index.inc.php | 6 ------
3 files changed, 11 insertions(+), 15 deletions(-)
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index 50afc0d..be1ce37 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -288,6 +288,8 @@ function PMA_langDetails($lang) {
return array('sr|serbian', 'serbian_cyrillic-utf-8', 'sr', 'Српски');
case 'sv':
return array('sv|swedish', 'swedish-utf-8', 'sv', 'Svenska');
+ case 'te':
+ return array('te|telugu', 'telugu-utf-8', 'te', 'తెలుగు');
case 'th':
return array('th|thai', 'thai-utf-8', 'th', 'ภาษาไทย');
case 'tr':
@@ -305,7 +307,7 @@ function PMA_langDetails($lang) {
case 'zh_CN':
return array('zh|chinese simplified', 'chinese_simplified-utf-8', 'zh', '中文');
}
- return array($lang, $lang, $lang, '');
+ return array("$lang|$lang", $lang, $lang);
}
/**
diff --git a/po/cs.po b/po/cs.po
index cf12e39..bfa8ada 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-03-19 00:28+0100\n"
-"PO-Revision-Date: 2010-03-29 09:27+0200\n"
+"PO-Revision-Date: 2010-03-30 12:18+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -3486,7 +3486,7 @@ msgstr "Přidat replikačního uživatele pro podřízený server"
#: libraries/messages.inc.php:779
#, php-format
msgid "Master server changed succesfully to %s"
-msgstr ""
+msgstr "Nadřízený server bych úspěšně změněn na %s"
#: libraries/messages.inc.php:780
msgid "This server is configured as master in a replication process."
@@ -5074,11 +5074,11 @@ msgstr "Povolit přihlašování uživatele root"
#: libraries/messages.inc.php:1120
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-msgstr ""
+msgstr "Název pro zobrazení při HTTP autentizace"
#: libraries/messages.inc.php:1121
msgid "HTTP Realm"
-msgstr ""
+msgstr "HTTP doméma"
#: libraries/messages.inc.php:1122
msgid ""
@@ -5120,7 +5120,7 @@ msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-"Nechte prázdné pro žádné komentaře či mime typy sloupců, výchozí nastavení: "
+"Nechte prázdné pro žádné komentáře či mime typy sloupců, výchozí nastavení: "
"[kbd]pma_column_info[/kbd]."
#: libraries/messages.inc.php:1129
@@ -5287,7 +5287,7 @@ msgstr ""
#: libraries/messages.inc.php:1161
msgid "PDF schema: pages table"
-msgstr ""
+msgstr "PDF schémata: tabulka stránek"
#: libraries/messages.inc.php:1162
msgid ""
@@ -5372,7 +5372,7 @@ msgstr ""
#: libraries/messages.inc.php:1179
msgid "PDF schema: table coordinates"
-msgstr ""
+msgstr "PDF schéma: tabulka souřadnic"
#: libraries/messages.inc.php:1180
msgid ""
@@ -5382,7 +5382,7 @@ msgstr ""
#: libraries/messages.inc.php:1181
msgid "Display fields table"
-msgstr ""
+msgstr "Tabulka s popisem sloupců"
#: libraries/messages.inc.php:1183
msgid "User for config auth"
diff --git a/setup/frames/index.inc.php b/setup/frames/index.inc.php
index 78c94cb..6282382 100644
--- a/setup/frames/index.inc.php
+++ b/setup/frames/index.inc.php
@@ -74,9 +74,6 @@ if (!$is_https) {
// create language list
$lang_list = array();
foreach ($all_languages as $each_lang_key => $each_lang) {
- if (!file_exists($GLOBALS['lang_path'] . $each_lang[1] . '.inc.php')) {
- continue;
- }
$lang_name = ucfirst(substr(strrchr($each_lang[0], '|'), 1));
// Include native name if non empty
@@ -175,9 +172,6 @@ $opts = array(
'values' => array(),
'values_escaped' => true);
foreach ($all_languages as $each_lang_key => $each_lang) {
- if (!file_exists($GLOBALS['lang_path'] . $each_lang[1] . '.inc.php')) {
- continue;
- }
$lang_name = ucfirst(substr(strrchr($each_lang[0], '|'), 1));
// Include native name if non empty
if (!empty($each_lang[3])) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-905-ge7f29a3
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via e7f29a389bc269b72f3cf481c77ae5d15f782775 (commit)
via 6f5fe44324c8d3d6b31b4ab0800d0861ffc96ab1 (commit)
via cfc39726f2762600903fde6e11922e0ed7ab9f0c (commit)
via 4f7c716bf0ee9155a8d39e8b6d660c7691921268 (commit)
via 2e6584c4e8b68ceebbb5272380f00cb2770746af (commit)
via 74b96e9875e84ed4dbf9b443d68c3554f7d41cf6 (commit)
via 7b252ffdd4cb7c7cb3e4c66eb3d26e94fa56f196 (commit)
via c363ea6f148374ef9aae6aaa338f91b50c4cde46 (commit)
via 7e52f87f57fda02a9f5651b00b22a15f74904694 (commit)
via 64bd7d132a98d592a42c721179f0c85a33c58606 (commit)
via 424be87d4031ccc70e9313cb8c51cdd600e3735f (commit)
via 33c736b554d70c132dd0bd54b5d5dd3f76262772 (commit)
via d060f3a040b04e09ae0d381698933e7b2c5c1529 (commit)
from ee015566416517673a8c1a0fa2bb97f20a2073a9 (commit)
- Log -----------------------------------------------------------------
commit e7f29a389bc269b72f3cf481c77ae5d15f782775
Merge: ee015566416517673a8c1a0fa2bb97f20a2073a9 6f5fe44324c8d3d6b31b4ab0800d0861ffc96ab1
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 11:31:57 2010 +0200
Merge remote branch 'pootle/master'
commit 6f5fe44324c8d3d6b31b4ab0800d0861ffc96ab1
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:04:47 2010 +0200
Translation update done using Pootle.
commit cfc39726f2762600903fde6e11922e0ed7ab9f0c
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:04:28 2010 +0200
Translation update done using Pootle.
commit 4f7c716bf0ee9155a8d39e8b6d660c7691921268
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:04:11 2010 +0200
Translation update done using Pootle.
commit 2e6584c4e8b68ceebbb5272380f00cb2770746af
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:03:58 2010 +0200
Translation update done using Pootle.
commit 74b96e9875e84ed4dbf9b443d68c3554f7d41cf6
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:02:03 2010 +0200
Translation update done using Pootle.
commit 7b252ffdd4cb7c7cb3e4c66eb3d26e94fa56f196
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:01:35 2010 +0200
Translation update done using Pootle.
commit c363ea6f148374ef9aae6aaa338f91b50c4cde46
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:01:28 2010 +0200
Translation update done using Pootle.
commit 7e52f87f57fda02a9f5651b00b22a15f74904694
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:01:21 2010 +0200
Translation update done using Pootle.
commit 64bd7d132a98d592a42c721179f0c85a33c58606
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:01:14 2010 +0200
Translation update done using Pootle.
commit 424be87d4031ccc70e9313cb8c51cdd600e3735f
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:01:06 2010 +0200
Translation update done using Pootle.
commit 33c736b554d70c132dd0bd54b5d5dd3f76262772
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:00:54 2010 +0200
Translation update done using Pootle.
commit d060f3a040b04e09ae0d381698933e7b2c5c1529
Author: Panagiotis Papazoglou <papaz_p(a)yahoo.com>
Date: Tue Mar 30 11:00:06 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/el.po | 32 ++++++++++++++------------------
1 files changed, 14 insertions(+), 18 deletions(-)
diff --git a/po/el.po b/po/el.po
index d53fa27..1164d87 100644
--- a/po/el.po
+++ b/po/el.po
@@ -4,13 +4,15 @@ 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-03-19 00:28+0100\n"
-"PO-Revision-Date: 2010-03-12 09:14+0100\n"
-"Last-Translator: Automatically generated\n"
+"PO-Revision-Date: 2010-03-30 11:04+0200\n"
+"Last-Translator: Panagiotis <papaz_p(a)yahoo.com>\n"
"Language-Team: greek <el(a)li.org>\n"
+"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.0.1\n"
#: libraries/auth/config.auth.lib.php:107
#, php-format
@@ -36,17 +38,15 @@ msgstr ""
#. l10n: Language to use for MySQL 5.1 documentation
#: libraries/common.lib.php:411
-#, fuzzy
msgctxt "$mysql_5_1_doc_lang"
msgid "en"
-msgstr "Εστάλησαν"
+msgstr "el"
#. l10n: Language to use for MySQL 5.0 documentation
#: libraries/common.lib.php:415
-#, fuzzy
msgctxt "$mysql_5_0_doc_lang"
msgid "en"
-msgstr "Εστάλησαν"
+msgstr "el"
#. l10n: Text direction, use either ltr or rtl
#: libraries/messages.inc.php:15
@@ -458,7 +458,6 @@ msgstr ""
"Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %s;"
#: libraries/messages.inc.php:96
-#, fuzzy
msgctxt "$strBLOBRepositoryDisabled"
msgid "Disabled"
msgstr "Απενεργοποιημένη"
@@ -472,7 +471,6 @@ msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Πρόκειτε να ΑΠΕΝΕΡΓΟΠΟΙΉΣΕΤΕ μια Αποθήκη BLOB!"
#: libraries/messages.inc.php:99
-#, fuzzy
msgctxt "$strBLOBRepositoryEnabled"
msgid "Enabled"
msgstr "Ενεργοποιημένη"
@@ -486,7 +484,6 @@ msgid "Remove BLOB Repository Reference"
msgstr "Απομάκρυνση της Αναφοράς Αποθήκης BLOB"
#: libraries/messages.inc.php:102
-#, fuzzy
msgctxt "$strBLOBRepositoryRepair"
msgid "Repair"
msgstr "Επισκευή"
@@ -930,7 +927,6 @@ msgid "Create table"
msgstr "Δημιουργία πίνακα"
#: libraries/messages.inc.php:200
-#, fuzzy
msgctxt "$strCreateTableShort"
msgid "Create table"
msgstr "Δημιουργία πίνακα"
@@ -945,7 +941,6 @@ msgstr ""
"Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης"
#: libraries/messages.inc.php:203
-#, fuzzy
msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Καμία"
@@ -1980,7 +1975,7 @@ msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
#: libraries/messages.inc.php:440
msgid "Insert as new row and ignore errors"
-msgstr ""
+msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων"
#: libraries/messages.inc.php:441
msgid "Insert"
@@ -2085,6 +2080,9 @@ msgid ""
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
+"Η υποστήριξη Javascript λείπει ή είναι απενεργοποιημένη στον φυλλομετρητή "
+"σας. Μερικές λειτουργίες του phpMyAdmin δεν θα υφίσταται. Για παράδειγμα το "
+"πλαίσιο πλοήγησης δεν θα ανανεώνεται αυτόματα."
#: libraries/messages.inc.php:464
msgid "Joins"
@@ -2520,9 +2518,8 @@ msgid "Filter"
msgstr "Φίλτρο"
#: libraries/messages.inc.php:555
-#, fuzzy
msgid "New table"
-msgstr "Δεν υπάρχουν πίνακες"
+msgstr "Νέος πίνακας"
#: libraries/messages.inc.php:556
msgid "Next"
@@ -2977,13 +2974,12 @@ msgid "No tables"
msgstr "Δεν υπάρχουν πίνακες"
#: libraries/messages.inc.php:651
-#, fuzzy
msgid "Page has been created"
-msgstr "Ο πίνακας %1$s έχει δημιουργηθεί."
+msgstr "Η σελίδα δημιουργήθηκε"
#: libraries/messages.inc.php:652
msgid "Page creation failed"
-msgstr ""
+msgstr "Η δημιουργία σελίδας απέτυχε"
#: libraries/messages.inc.php:653
msgid "PDF"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-892-gee01556
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via ee015566416517673a8c1a0fa2bb97f20a2073a9 (commit)
from e9909a244126164605d1cfb35f6e483bdffc74db (commit)
- Log -----------------------------------------------------------------
commit ee015566416517673a8c1a0fa2bb97f20a2073a9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 11:23:00 2010 +0200
Add quiet mode.
-----------------------------------------------------------------------
Summary of changes:
scripts/generate-mo | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/scripts/generate-mo b/scripts/generate-mo
index 323ee74..e26575b 100755
--- a/scripts/generate-mo
+++ b/scripts/generate-mo
@@ -1,7 +1,15 @@
#!/bin/sh
+if [ x$1 = x--quiet ] ; then
+ stats=""
+else
+ stats="--statistics"
+fi
+
for x in po/*.po ; do
lang=`echo $x | sed 's@po/\(.*\)\.po@\1@'`
- echo -n "$lang: "
+ if [ ! -z "$stas" ] ; then
+ echo -n "$lang: "
+ fi
mkdir -p locale/$lang/LC_MESSAGES
- msgfmt --statistics --check -o locale/$lang/LC_MESSAGES/phpmyadmin.mo $x
+ msgfmt $stats --check -o locale/$lang/LC_MESSAGES/phpmyadmin.mo $x
done
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. 5fc76a8f5a83c2561ac7725cfa0e819ec98afc83
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via 5fc76a8f5a83c2561ac7725cfa0e819ec98afc83 (commit)
via 735539fbc4324baa6c79457bfc929028823cea8c (commit)
via 344d5a458c89fca389c3b48a49b7bb782b07a187 (commit)
via 9bdf025ec3a463f33292c91274784bb7aa291336 (commit)
via 0551fde89e117b0b5cab42770c72d001db5d82ae (commit)
from e69384948a6f73edbd1b06de626590171a5d8825 (commit)
- Log -----------------------------------------------------------------
commit 5fc76a8f5a83c2561ac7725cfa0e819ec98afc83
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 11:19:38 2010 +0200
Adjust to work wit gettext.
commit 735539fbc4324baa6c79457bfc929028823cea8c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 10:58:14 2010 +0200
Update description of translations.
commit 344d5a458c89fca389c3b48a49b7bb782b07a187
Merge: 9bdf025ec3a463f33292c91274784bb7aa291336 e69384948a6f73edbd1b06de626590171a5d8825
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:05:46 2010 +0200
Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/website
commit 9bdf025ec3a463f33292c91274784bb7aa291336
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 15 14:03:39 2010 +0100
Better description.
commit 0551fde89e117b0b5cab42770c72d001db5d82ae
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 15 14:03:09 2010 +0100
Add translators list to overview.
-----------------------------------------------------------------------
Summary of changes:
README | 2 +
data/langnames.py | 119 ++++++++++++++++++++++----------------------
helper/cache.py | 2 +-
render.py | 35 ++++++-------
templates/support.tpl | 5 +-
templates/translations.tpl | 24 ++++-----
6 files changed, 92 insertions(+), 95 deletions(-)
diff --git a/README b/README
index 12c4747..b2e49ff 100644
--- a/README
+++ b/README
@@ -16,6 +16,8 @@ python-feedparser - http://www.feedparser.org
(4.1 tested)
GitPython - http://gitorious.org/projects/git-python/
(0.1.6 tested)
+polib - http://bitbucket.org/izi/polib/src/
+(0.5.1 tested)
Security announcements
diff --git a/data/langnames.py b/data/langnames.py
index e3f612d..eb1559f 100644
--- a/data/langnames.py
+++ b/data/langnames.py
@@ -17,64 +17,65 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
MAP = {
- 'afrikaans' : 'af',
- 'afrikaans' : 'af',
- 'arabic' : 'ar',
- 'azerbaijani' : 'az',
- 'bangla' : 'bn',
- 'belarusian_cyrillic' : 'be',
- 'belarusian_latin' : 'belat',
- 'bulgarian' : 'bg',
- 'bosnian' : 'bs',
- 'catalan' : 'ca',
- 'czech' : 'cs',
- 'danish' : 'da',
- 'german' : 'de',
- 'greek' : 'el',
- 'english' : 'en',
- 'english-gb' : 'engb',
- 'spanish' : 'es',
- 'estonian' : 'et',
- 'basque' : 'eu',
- 'persian' : 'fa',
- 'finnish' : 'fi',
- 'french' : 'fr',
- 'galician' : 'gl',
- 'hebrew' : 'he',
- 'hindi' : 'hi',
- 'croatian' : 'hr',
- 'hungarian' : 'hu',
- 'indonesian' : 'id',
- 'italian' : 'it',
- 'japanese' : 'ja',
- 'korean' : 'ko',
- 'georgian' : 'ka',
- 'lithuanian' : 'lt',
- 'latvian' : 'lv',
- 'macedonian_cyrillic' : 'mk',
- 'mongolian' : 'mn',
- 'malay' : 'ms',
- 'dutch' : 'nl',
- 'norwegian' : 'no',
- 'polish' : 'pl',
- 'brazilian_portuguese' : 'ptbr',
- 'portuguese' : 'pt',
- 'romanian' : 'ro',
- 'russian' : 'ru',
- 'slovak' : 'sk',
- 'slovenian' : 'sl',
- 'sinhala' : 'si',
- 'albanian' : 'sq',
- 'serbian_latin' : 'srlat',
- 'serbian_cyrillic' : 'sr',
- 'swedish' : 'sv',
- 'thai' : 'th',
- 'turkish' : 'tr',
- 'tatarish' : 'tt',
- 'ukrainian' : 'uk',
- 'uzbek_cyrillic': 'uz',
- 'uzbek_latin': 'uzlat',
- 'chinese_traditional' : 'zhtw',
- 'chinese_simplified' : 'zh',
+ 'af' : 'afrikaans',
+ 'af' : 'afrikaans',
+ 'ar' : 'arabic',
+ 'az' : 'azerbaijani',
+ 'bn' : 'bangla',
+ 'be' : 'belarusian_cyrillic',
+ 'be@latin' : 'belarusian_latin',
+ 'bg' : 'bulgarian',
+ 'bs' : 'bosnian',
+ 'ca' : 'catalan',
+ 'cs' : 'czech',
+ 'da' : 'danish',
+ 'de' : 'german',
+ 'el' : 'greek',
+ 'en' : 'english',
+ 'en_GB' : 'english-gb',
+ 'es' : 'spanish',
+ 'et' : 'estonian',
+ 'eu' : 'basque',
+ 'fa' : 'persian',
+ 'fi' : 'finnish',
+ 'fr' : 'french',
+ 'gl' : 'galician',
+ 'he' : 'hebrew',
+ 'hi' : 'hindi',
+ 'hr' : 'croatian',
+ 'hu' : 'hungarian',
+ 'id' : 'indonesian',
+ 'it' : 'italian',
+ 'ja' : 'japanese',
+ 'ko' : 'korean',
+ 'ka' : 'georgian',
+ 'lt' : 'lithuanian',
+ 'lv' : 'latvian',
+ 'mk' : 'macedonian_cyrillic',
+ 'mn' : 'mongolian',
+ 'ms' : 'malay',
+ 'nl' : 'dutch',
+ 'nb' : 'norwegian',
+ 'pl' : 'polish',
+ 'pt_BR' : 'brazilian_portuguese',
+ 'pt' : 'portuguese',
+ 'ro' : 'romanian',
+ 'ru' : 'russian',
+ 'sk' : 'slovak',
+ 'sl' : 'slovenian',
+ 'si' : 'sinhala',
+ 'sq' : 'albanian',
+ 'sr@latin' : 'serbian_latin',
+ 'sr' : 'serbian_cyrillic',
+ 'sv' : 'swedish',
+ 'te' : 'telugu',
+ 'th' : 'thai',
+ 'tr' : 'turkish',
+ 'tt' : 'tatarish',
+ 'uk' : 'ukrainian',
+ 'uz' : 'uzbek_cyrillic',
+ 'uz@latin' : 'uzbek_latin',
+ 'zh_TW' : 'chinese_traditional',
+ 'zh_CN' : 'chinese_simplified',
}
diff --git a/helper/cache.py b/helper/cache.py
index 3cd3dd8..c7dc626 100644
--- a/helper/cache.py
+++ b/helper/cache.py
@@ -188,4 +188,4 @@ class GitCache(Cache):
os.system('cd %s ; git pull -q' % self.dirname)
self.repo = git.Repo(self.dirname)
self.tree = self.repo.tree()
- self.langtree = self.tree['lang']
+ self.langtree = self.tree['po']
diff --git a/render.py b/render.py
index faf85cc..3e81c8e 100755
--- a/render.py
+++ b/render.py
@@ -27,6 +27,7 @@ import shutil
import csv
import traceback
import datetime
+import polib
from genshi.template import TemplateLoader
from genshi.template import NewTextTemplate
from genshi.input import XML
@@ -57,7 +58,7 @@ BRANCH_REGEXP = re.compile('^([0-9]+\.[0-9]+)\.')
MAJOR_BRANCH_REGEXP = re.compile('^([0-9]+)\.')
TESTING_REGEXP = re.compile('.*(beta|alpha|rc).*')
SIZE_REGEXP = re.compile('.*\(([0-9]+) bytes, ([0-9]+) downloads to date')
-LANG_REGEXP ='((translation|lang|%s).*update|update.*(translation|lang|%s)|^updated?$|new lang|better word|fix.*translation)'
+LANG_REGEXP ='((translation|lang|%s).*update|update.*(translation|lang|%s)|^updated?$|new lang|better word|fix.*translation|Translation update done using Pootle)'
# Base URL (including trailing /)
SERVER = 'http://www.phpmyadmin.net'
@@ -914,26 +915,21 @@ class SFGenerator:
list = self.git.langtree.keys()
list.sort()
translators = XML(self.git.tree['translators.html'].data)
- english = self.git.langtree['english-utf-8.inc.php'].data
- allmessages = len(re.compile('\n\$str').findall(english))
for name in list:
- if name[-14:] != '-utf-8.inc.php':
+ if name[-3:] != '.po':
continue
- lang = name[:-14]
- try:
- baselang, ignore = lang.split('_')
- except:
- baselang = lang
- translator = translators.select('tr[@id="%s"]/td[2]/text()' % lang)
+ lang = name[:-3]
+ longlang = data.langnames.MAP[lang]
+ po = polib.pofile('cache/git___phpmyadmin.git.sourceforge.net_gitroot_phpmyadmin_phpmyadmin/po/%s' % name)
+ translator = translators.select('tr[@id="%s"]/td[2]/text()' % longlang)
translator = unicode(translator).strip()
if translator == '':
- translator = translators.select('tr[@id="%s"]/td[2]/text()' % baselang)
+ translator = translators.select('tr[@id="%s"]/td[2]/text()' % longlang.split('_')[0])
translator = unicode(translator).strip()
translator = self.fmt_translator(translator)
- short = data.langnames.MAP[lang]
- helper.log.dbg(' - %s [%s]' % (lang, short))
+ helper.log.dbg(' - %s [%s]' % (lang, longlang))
gitlog = self.git.repo.log(path = 'lang/english-utf-8.inc.php')
- langs = '%s|%s|%s' % (lang, short, baselang)
+ langs = '%s|%s' % (lang, longlang)
regexp = re.compile(LANG_REGEXP % (langs, langs), re.IGNORECASE)
found = None
if lang == 'english':
@@ -943,10 +939,9 @@ class SFGenerator:
if regexp.findall(x.message) != []:
found = x
break
- content = self.git.langtree[name].data
- missing = len(re.compile('\n\$str.*to translate').findall(content))
- translated = allmessages - missing
- percent = 100.0 * translated / allmessages
+
+ percent = po.percent_translated()
+ translated = len(po.translated_entries())
if percent < 50:
css = ' b50'
elif percent < 80:
@@ -958,8 +953,8 @@ class SFGenerator:
except TypeError:
dt = ''
self.data['translations'].append({
- 'name': lang,
- 'short': short,
+ 'name': longlang,
+ 'short': lang,
'translated': translated,
'translator': translator,
'percent': '%0.1f' % percent,
diff --git a/templates/support.tpl b/templates/support.tpl
index 56b894b..2f7ebbb 100644
--- a/templates/support.tpl
+++ b/templates/support.tpl
@@ -25,8 +25,9 @@
<h2>Mailing Lists</h2>
<ul>
<li>For news/announcements: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-news">phpmyadmin-news(a)lists.sourceforge.net</a></li>
- <li>For user questions: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-users">phpmyadmin-users(a)lists.sourceforge.net</a></li>
- <li>For developer questions: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-devel">phpmyadmin-devel(a)lists.sourceforge.net</a></li>
+ <li>For users: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-users">phpmyadmin-users(a)lists.sourceforge.net</a></li>
+ <li>For developers: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-devel">phpmyadmin-devel(a)lists.sourceforge.net</a></li>
+ <li>For translators: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-translators">phpmyadmin-translators(a)lists.sourceforge.net</a></li>
<li>Git commit notifications: <a href="https://lists.sourceforge.net/mailman/listinfo/phpmyadmin-git">phpmyadmin-git(a)lists.sourceforge.net</a></li>
<li><a href="http://sourceforge.net/mail/?group_id=23067">Mailing lists overview</a></li>
</ul>
diff --git a/templates/translations.tpl b/templates/translations.tpl
index 3dc0d49..2203021 100644
--- a/templates/translations.tpl
+++ b/templates/translations.tpl
@@ -6,23 +6,21 @@
<h2>Translations</h2>
<p>
-Translations inside phpMyAdmin are in various states. The ones that have less
-than 80% translated strings are shown in dark red, the ones below 50% in more
-intensive red (those are considered orphaned and the phpMyAdmin project would
-appreciate any help in updating them). Translators contacts are available on
-our <a href="http://www.phpmyadmin.net/documentation/translators.html">translators
-list</a>.
-</p>
-<p>
-If you want to help improving a translation, please follow intructions on <a
-href="${base_url}improve.${file_ext}#translate">how to improve page</a>.
+Translations of phpMyAdmin are handled using Gettext. It is used for both
+translating phpMyAdmin as well as the documentation (where Po4a is being
+used).
</p>
+
<p>
-Documentation translation is kept separately, you can see it's summary on our
-<a href="https://l10n.cihar.com/projects/pmadoc/">translation server</a>.
+You are welcome to contribute to any translations, you can follow instructions
+on <a href="${base_url}improve.${file_ext}#translate">how to improve page</a>.
+Or simply go to the <a href="https://l10n.cihar.com/">translation server</a>
+and translate there projects <a
+href="https://l10n.cihar.com/projects/phpmyadmin/">phpMyAdmin</a> or <a
+href="https://l10n.cihar.com/projects/pmadoc/">phpMyAdmin documentation</a>.
+The translation server also provides you overview of translation status.
</p>
-
<table class="graph sortable" id="sorttable">
<thead>
<tr>
hooks/post-receive
--
phpMyAdmin website
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, gettext, deleted. RELEASE_3_3_1RC1-888-g9a26625
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, gettext has been deleted
was 9a26625560c3bcbeb0169bff625f09bcc8bcfe46
-----------------------------------------------------------------------
9a26625560c3bcbeb0169bff625f09bcc8bcfe46 Merge branch 'master' into gettext
-----------------------------------------------------------------------
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. e6908a5c24550625f8622a7fafe2daccc887d5ae
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via e6908a5c24550625f8622a7fafe2daccc887d5ae (commit)
from a24c6574bcdb49e671470e8b2cfbf41eda0951bd (commit)
- Log -----------------------------------------------------------------
commit e6908a5c24550625f8622a7fafe2daccc887d5ae
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 10:34:16 2010 +0200
Mention master document.
-----------------------------------------------------------------------
Summary of changes:
README | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/README b/README
index 51d7123..ab47b57 100644
--- a/README
+++ b/README
@@ -1,7 +1,8 @@
phpMyAdmin - localized documentation
====================================
-This repository contains localized documentation for phpMyAdmin.
+This repository contains localized documentation for phpMyAdmin. It
+is based on master document placed in phpmyadmin repository.
To translate edit your language file in po directory, changes will be
propagated to generated documents. You can also translate online at
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. a24c6574bcdb49e671470e8b2cfbf41eda0951bd
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via a24c6574bcdb49e671470e8b2cfbf41eda0951bd (commit)
from 39c4279b6ee5ccb1cb606a83e2f9b463dda33bb3 (commit)
- Log -----------------------------------------------------------------
commit a24c6574bcdb49e671470e8b2cfbf41eda0951bd
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 10:22:29 2010 +0200
Regenerate based on latest changes.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 2 +-
output/fr/Documentation.html | 2 +-
output/it/Documentation.html | 2 +-
output/ja/Documentation.html | 2 +-
output/pl/Documentation.html | 2 +-
output/pt_BR/Documentation.html | 2 +-
output/zh_CN/Documentation.html | 2 +-
po/ca.po | 4 ++--
po/cs.po | 4 ++--
po/de.po | 4 ++--
po/en_GB.po | 4 ++--
po/es.po | 4 ++--
po/fi.po | 4 ++--
po/fr.po | 4 ++--
po/gl.po | 4 ++--
po/hu.po | 4 ++--
po/hy.po | 4 ++--
po/it.po | 4 ++--
po/ja.po | 4 ++--
po/ka.po | 4 ++--
po/lt.po | 4 ++--
po/mn.po | 4 ++--
po/nb.po | 4 ++--
po/nl.po | 4 ++--
po/pl.po | 4 ++--
po/pt_BR.po | 4 ++--
po/ro.po | 4 ++--
po/sk.po | 4 ++--
po/sv.po | 4 ++--
po/tr.po | 4 ++--
po/zh_CN.po | 4 ++--
po/zh_TW.po | 4 ++--
pot/ca-full.pot | 15 ++-------------
pot/ca-html.pot | 4 ++--
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 15 ++-------------
pot/cs-html.pot | 4 ++--
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 15 ++-------------
pot/de-html.pot | 4 ++--
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 6 +++---
pot/en_GB-html.pot | 4 ++--
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 15 ++-------------
pot/es-html.pot | 4 ++--
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 15 ++-------------
pot/fi-html.pot | 4 ++--
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 15 ++-------------
pot/fr-html.pot | 4 ++--
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 15 ++-------------
pot/gl-html.pot | 4 ++--
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 15 ++-------------
pot/hu-html.pot | 4 ++--
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 15 ++-------------
pot/hy-html.pot | 4 ++--
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 15 ++-------------
pot/it-html.pot | 4 ++--
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 15 ++-------------
pot/ja-html.pot | 4 ++--
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 15 ++-------------
pot/ka-html.pot | 4 ++--
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 15 ++-------------
pot/lt-html.pot | 4 ++--
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 15 ++-------------
pot/mn-html.pot | 4 ++--
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 15 ++-------------
pot/nb-html.pot | 4 ++--
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 15 ++-------------
pot/nl-html.pot | 4 ++--
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 15 ++-------------
pot/pl-html.pot | 4 ++--
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 15 ++-------------
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 | 15 ++-------------
pot/sk-html.pot | 4 ++--
pot/sk-txt.pot | 2 +-
pot/sv-full.pot | 15 ++-------------
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 | 15 ++-------------
pot/zh_TW-html.pot | 4 ++--
pot/zh_TW-txt.pot | 2 +-
107 files changed, 183 insertions(+), 447 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index a544d99..9f64598 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -4464,7 +4464,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/output/fr/Documentation.html b/output/fr/Documentation.html
index e74a70c..b1d0830 100644
--- a/output/fr/Documentation.html
+++ b/output/fr/Documentation.html
@@ -5295,7 +5295,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/output/it/Documentation.html b/output/it/Documentation.html
index 1bd12bc..629eaba 100644
--- a/output/it/Documentation.html
+++ b/output/it/Documentation.html
@@ -4506,7 +4506,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index 451b213..e69bc3b 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -4282,7 +4282,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index 0423cb6..50405db 100644
--- a/output/pl/Documentation.html
+++ b/output/pl/Documentation.html
@@ -4503,7 +4503,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index 881d2d6..a055ded 100644
--- a/output/pt_BR/Documentation.html
+++ b/output/pt_BR/Documentation.html
@@ -4487,7 +4487,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/output/zh_CN/Documentation.html b/output/zh_CN/Documentation.html
index 35bc0a8..384137c 100644
--- a/output/zh_CN/Documentation.html
+++ b/output/zh_CN/Documentation.html
@@ -4035,7 +4035,7 @@ tracker of the phpMyAdmin project</a>.
</ol>
<p>More details on git are available on <a
-href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/po/ca.po b/po/ca.po
index 42ead2e..e69b845 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9227,7 +9227,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/cs.po b/po/cs.po
index 1cf5a12..2cb15de 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-03-22 23:52+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2010-03-10 13:27+0100\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Czech <cs(a)li.org>\n"
@@ -9413,7 +9413,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/de.po b/po/de.po
index 0a1d60e..a54d6bd 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9701,7 +9701,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/en_GB.po b/po/en_GB.po
index ddc9571..d35d7a1 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-03-22 23:59+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11816,7 +11816,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/es.po b/po/es.po
index 781749e..fb7cb4a 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9372,7 +9372,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/fi.po b/po/fi.po
index 150783a..27d60e0 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9204,7 +9204,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/fr.po b/po/fr.po
index e433d20..6656441 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-03-22 23:52+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -12733,7 +12733,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/gl.po b/po/gl.po
index 48e0ced..2b05b4d 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9203,7 +9203,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/hu.po b/po/hu.po
index df92991..1e9a4c7 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9204,7 +9204,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/hy.po b/po/hy.po
index 0ec0e09..8b13d33 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-03-22 23:59+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9200,7 +9200,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/it.po b/po/it.po
index a1c6c2a..6d3d7c5 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-03-29 09:17+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -11496,7 +11496,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/ja.po b/po/ja.po
index b3a1daf..469416d 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-03-29 09:18+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -11656,7 +11656,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/ka.po b/po/ka.po
index 396fdaf..e9c2a88 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9204,7 +9204,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/lt.po b/po/lt.po
index 0ce7fde..3b5650d 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9202,7 +9202,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/mn.po b/po/mn.po
index aa0d5df..9a3b6a9 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9200,7 +9200,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/nb.po b/po/nb.po
index a380976..5d6d5d3 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9204,7 +9204,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/nl.po b/po/nl.po
index 8bf7079..87ed07d 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2010-02-15 13:42+0200\n"
"Last-Translator: <thyone(a)thyone.org>\n"
"Language-Team: none\n"
@@ -9344,7 +9344,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/pl.po b/po/pl.po
index e508939..c0c0289 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-03-22 23:51+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -11106,7 +11106,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 23ad731..68ce9b3 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2010-03-25 02:09+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: none\n"
@@ -9656,7 +9656,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/ro.po b/po/ro.po
index 6d278c9..5c3bf16 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9210,7 +9210,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/sk.po b/po/sk.po
index 67fedc9..4cc31db 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-03-29 09:21+0300\n"
+"POT-Creation-Date: 2010-03-30 10:20+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"
@@ -9203,7 +9203,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are availabl
e on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/sv.po b/po/sv.po
index 8ea3bb7..4088503 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9204,7 +9204,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/tr.po b/po/tr.po
index 2555060..8821f2d 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9204,7 +9204,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 7af6abf..1ee73d5 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-03-22 23:58+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -10215,7 +10215,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/po/zh_TW.po b/po/zh_TW.po
index b20d9ad..d8d0847 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-03-22 23:59+0100\n"
+"POT-Creation-Date: 2010-03-30 10:19+0300\n"
"PO-Revision-Date: 2010-01-25 13:26+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -9201,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 5226fd8..7de77bb 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ca-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# ca-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 391ab85..b2f6dbc 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 b69e222..47f1729 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# cs-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:18+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"
-"#-#-#-#-# cs-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index 751780c..ac6a1cf 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-03-29 09:18+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 2ba312a..f4483bf 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# de-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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"
-"#-#-#-#-# de-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/de-html.pot b/pot/de-html.pot
index ba5fe41..fb17879 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 be2f737..f53e848 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -9,7 +9,7 @@ msgstr ""
"#-#-#-#-# en_GB-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:21+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# en_GB-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:20+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"
@@ -9212,7 +9212,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 21413f8..6a3d379 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-03-29 09:21+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index 9c108c4..fe40b0a 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:20+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 dc2c57d..3a4f4a2 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# es-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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"
-"#-#-#-#-# es-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/es-html.pot b/pot/es-html.pot
index 83b4081..488ccdc 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 bf0a688..b75506c 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fi-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# fi-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index 031fee4..d8f69f5 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 7a1f2ef..40a25db 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:18+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"
-"#-#-#-#-# fr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index 0629ff1..cb9db33 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-03-29 09:18+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 2cd8664..8d7e378 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# gl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# gl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index b3d4df5..57df101 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 15268a3..f96525b 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hu-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# hu-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index 6bdae46..0357b2c 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 ca9c3c5..c76e8d3 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hy-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:21+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"
-"#-#-#-#-# hy-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index cb1a43c..cb2a9f5 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-03-29 09:21+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index 9c108c4..ff427d8 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 8c7799e..1e2224d 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# it-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:17+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"
-"#-#-#-#-# it-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:08+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/it-html.pot b/pot/it-html.pot
index 3521654..3e31e9a 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-03-29 09:17+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index b2ee0ad..ff427d8 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-03-29 09:08+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 1deaa78..ac858db 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ja-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:18+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"
-"#-#-#-#-# ja-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index ab8003b..48117fe 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-03-29 09:18+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 0bee4e1..4a736cd 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ka-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# ka-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 4602dde..72677b4 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 0f51696..48508c0 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# lt-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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"
-"#-#-#-#-# lt-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index 47ebdac..25a2893 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 b0de40c..d98a352 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# mn-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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"
-"#-#-#-#-# mn-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index 5a9bf00..f96f294 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index 9c108c4..ff427d8 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 f868214..1123e4c 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nb-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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"
-"#-#-#-#-# nb-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index b92f3a7..6655270 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index 0fe54e6..ff427d8 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-03-29 09:10+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 9c1ff17..ca12ae1 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# nl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index aefed76..6ff54fa 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 237cb1e..c8a4fb1 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:17+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"
-"#-#-#-#-# pl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:08+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/pl-html.pot b/pot/pl-html.pot
index b587af4..be1494f 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-03-29 09:17+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/pl-txt.pot b/pot/pl-txt.pot
index b2ee0ad..ff427d8 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-03-29 09:08+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 60f9a93..c98f41b 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pt_BR-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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"
-"#-#-#-#-# pt_BR-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index 836ab52..091d20c 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index 9c108c4..ff427d8 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 0ef2e42..f30ee20 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-03-29 09:20+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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ro-html.pot b/pot/ro-html.pot
index 3fb3f5f..76765ec 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/ro-txt.pot b/pot/ro-txt.pot
index 9c108c4..ff427d8 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 8ba4db8..d683b24 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sk-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:21+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"
-"#-#-#-#-# sk-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:20+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/sk-html.pot b/pot/sk-html.pot
index fed6b48..0171797 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-03-29 09:21+0300\n"
+"POT-Creation-Date: 2010-03-30 10:20+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/sk-txt.pot b/pot/sk-txt.pot
index 9c108c4..fe40b0a 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:20+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 7636d81..d1d1031 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sv-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:19+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"
-"#-#-#-#-# sv-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/sv-html.pot b/pot/sv-html.pot
index 74822b9..c94e5e8 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/sv-txt.pot b/pot/sv-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 f71f0a4..594deae 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-03-29 09:19+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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/tr-html.pot b/pot/tr-html.pot
index db7383c..b727d00 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-03-29 09:19+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/tr-txt.pot b/pot/tr-txt.pot
index 87a8a26..ff427d8 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-03-29 09:09+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 074eb54..18d23da 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_CN-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index 413402a..5b929be 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index 9c108c4..ff427d8 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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 14bd4d4..77d42f9 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_TW-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:20+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_TW-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9212,7 +9201,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
-"pma/Devel:git\">our wiki</a>."
+"pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index 044e2ae..dbd8e06 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-03-29 09:20+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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"
@@ -9257,7 +9257,7 @@ msgstr ""
#: ../phpmyadmin/Documentation.html:4359
msgid ""
"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Devel:git\">our wiki</a>."
+"href=\"http://wiki.phpmyadmin.net/pma/Devel:Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
diff --git a/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index 9c108c4..ff427d8 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-03-29 09:11+0300\n"
+"POT-Creation-Date: 2010-03-30 10:19+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_1RC1-277-g38f5107
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, master has been updated
via 38f5107524466c63b88152139d23573678d004ff (commit)
via 589504fe8a423b794797f72cf61b60fc8b770b3e (commit)
from bd0c89b630be5a3bff087cae788afeac228daa00 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
Documentation.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Documentation.html b/Documentation.html
index e7880a9..fb465b9 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -4356,7 +4356,7 @@ chmod o+rwx tmp
</li>
</ol>
-<p>More details on git are available on <a href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+<p>More details on git are available on <a href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, gettext, updated. RELEASE_3_3_1RC1-888-g9a26625
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, gettext has been updated
via 9a26625560c3bcbeb0169bff625f09bcc8bcfe46 (commit)
via 38f5107524466c63b88152139d23573678d004ff (commit)
via 589504fe8a423b794797f72cf61b60fc8b770b3e (commit)
via bd0c89b630be5a3bff087cae788afeac228daa00 (commit)
via b452564b8320789a580e86ab272327f048654bfc (commit)
via dbd83fa123f951fce7795ca38bb117b64a5c2aaf (commit)
from 1c241775fc95e3a9fcec0265cf122907dfeb46c2 (commit)
- Log -----------------------------------------------------------------
commit 9a26625560c3bcbeb0169bff625f09bcc8bcfe46
Merge: 1c241775fc95e3a9fcec0265cf122907dfeb46c2 38f5107524466c63b88152139d23573678d004ff
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 30 10:17:39 2010 +0200
Merge branch 'master' into gettext
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 +++
Documentation.html | 2 +-
libraries/config.default.php | 10 ++++++-
libraries/header_scripts.inc.php | 5 +++
pmd/scripts/move.js | 53 +++++++++++++++++++++++++++++++++++---
tbl_select.php | 18 ++++++++++++-
6 files changed, 85 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 51febbb..7a1717f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -53,6 +53,10 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
to Pavel Konnikov and Herman van Rink
+ patch #2974341 [structure] Clicking on table name in db Structure should
Browse the table if possible, thanks to bhdouglass - dougboybhd
++ patch #2975533 [search] New search operators, thanks to
+ Martynas Mickevičius
++ patch #2967320 [designer] Colored relations based on the primary key,
+ thanks to GreenRover - greenrover
3.3.2.0 (not yet released)
- patch #2969449 [core] Name for MERGE engine varies depending on the
diff --git a/Documentation.html b/Documentation.html
index e7880a9..fb465b9 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -4356,7 +4356,7 @@ chmod o+rwx tmp
</li>
</ol>
-<p>More details on git are available on <a href="http://wiki.phpmyadmin.net/pma/Devel:git">our wiki</a>.</p>
+<p>More details on git are available on <a href="http://wiki.phpmyadmin.net/pma/Devel:Git">our wiki</a>.</p>
<p> Write access to the repository is granted only to experienced developers who
have already contributed something useful to phpMyAdmin.<br />
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 35f603d..1aa1348 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -2990,6 +2990,10 @@ $cfg['NumOperators'] = array(
'!=',
'LIKE',
'NOT LIKE',
+ 'IN (...)',
+ 'NOT IN (...)',
+ 'BETWEEN',
+ 'NOT BETWEEN',
);
/**
@@ -3007,7 +3011,11 @@ $cfg['TextOperators'] = array(
'REGEXP ^...$',
'NOT REGEXP',
"= ''",
- "!= ''"
+ "!= ''",
+ 'IN (...)',
+ 'NOT IN (...)',
+ 'BETWEEN',
+ 'NOT BETWEEN',
);
/**
diff --git a/libraries/header_scripts.inc.php b/libraries/header_scripts.inc.php
index d924bbd..a1611ac 100644
--- a/libraries/header_scripts.inc.php
+++ b/libraries/header_scripts.inc.php
@@ -112,6 +112,11 @@ $GLOBALS['js_events'][] = array(
'function' => 'PMA_TT_init',
);
+/**
+ * Here we add a timestamp when loading the file, so that users who
+ * upgrade phpMyAdmin are not stuck with older .js files in their
+ * browser cache. This produces an HTTP 304 request for each file.
+ */
foreach ($GLOBALS['js_include'] as $js_script_file) {
echo '<script src="./js/' . $js_script_file . '?ts=' . filemtime('./js/' . $js_script_file) . '" type="text/javascript"></script>' . "\n";
}
diff --git a/pmd/scripts/move.js b/pmd/scripts/move.js
index df1b972..35d6239 100644
--- a/pmd/scripts/move.js
+++ b/pmd/scripts/move.js
@@ -291,7 +291,7 @@ function Re_load()
+ height_field;
//alert(y1 + ' - ' + key2 + "." + key3);
- Line0(x1 - sm_x, y1 - sm_y, x2 - sm_x, y2 - sm_y, "rgba(0,100,150,1)");
+ Line0(x1 - sm_x, y1 - sm_y, x2 - sm_x, y2 - sm_y, getColorByTarget( contr[K][key][key2][key3][0]+'.'+contr[K][key][key2][key3][1] ) );
}
}
@@ -315,8 +315,8 @@ function Line(x1, y1, x2, y2, color_line)
*/
function Line0(x1, y1, x2, y2, color_line)
{
- Circle(x1, y1, 3, 3, "rgba(0,0,255,1)");
- Rect(x2 - 1, y2 - 2, 4, 4, "rgba(0,0,255,1)");
+ Circle(x1, y1, 3, 3, color_line);
+ Rect(x2 - 1, y2 - 2, 4, 4, color_line);
if (ON_angular_direct) {
Line2(x1, y1, x2, y2, color_line);
@@ -717,7 +717,7 @@ function Canvas_click(id)
Key2 = key2; Key3 = key3;
Key = K;
} else {
- Line0(x1 - sm_x, y1 - sm_y, x2 - sm_x, y2 - sm_y, "rgba(0,100,150,1)");
+ Line0(x1 - sm_x, y1 - sm_y, x2 - sm_x, y2 - sm_y, getColorByTarget( contr[K][key][key2][key3][0]+'.'+contr[K][key][key2][key3][1] ));
}
}
if (selected) {
@@ -920,3 +920,48 @@ function Start_display_field()
ON_display_field = 0;
}
}
+//------------------------------------------------------------------------------
+var TargetColors = new Array();
+function getColorByTarget( target )
+{
+ var color = ''; //"rgba(0,100,150,1)";
+
+ for (i in TargetColors)
+ if (TargetColors[i][0]==target) {
+ color = TargetColors[i][1];
+ break;
+ }
+
+
+ if (color.length==0)
+ {
+ var i = TargetColors.length+1;
+ var d = i % 6;
+ var j = (i - d) / 6;
+ j = j % 4;
+ j++;
+ var color_case = new Array(
+ new Array(1, 0, 0),
+ new Array(0, 1, 0),
+ new Array(0, 0, 1),
+ new Array(1, 1, 0),
+ new Array(1, 0, 1),
+ new Array(0, 1, 1)
+ );
+ var a = color_case[d][0];
+ var b = color_case[d][1];
+ var c = color_case[d][2];
+ e = (1 - (j - 1) / 6);
+
+ var r = Math.round(a * 200 * e);
+ var g = Math.round(b * 200 * e);
+ var b = Math.round(c * 200 * e);
+ var color = "rgba("+r+","+g+","+b+",1)";
+
+ TargetColors.push( new Array(target, color) );
+
+
+ }
+
+ return color;
+}
diff --git a/tbl_select.php b/tbl_select.php
index 874502e..0fbd24c 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -408,7 +408,23 @@ else {
$func_type = 'REGEXP';
$fields[$i] = '^' . $fields[$i] . '$';
}
- $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $quot . PMA_sqlAddslashes($fields[$i]) . $quot;
+
+ if ($func_type == 'IN (...)' || $func_type == 'NOT IN (...)' || $func_type == 'BETWEEN' || $func_type == 'NOT BETWEEN') {
+ $func_type = str_replace(' (...)', '', $func_type);
+
+ // quote values one by one
+ $values = explode(',', $fields[$i]);
+ foreach ($values as &$value)
+ $value = $quot . PMA_sqlAddslashes(trim($value)) . $quot;
+
+ if ($func_type == 'BETWEEN' || $func_type == 'NOT BETWEEN')
+ $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . (isset($values[0]) ? $values[0] : '') . ' AND ' . (isset($values[1]) ? $values[1] : '');
+ else
+ $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' (' . implode(',', $values) . ')';
+ }
+ else {
+ $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $quot . PMA_sqlAddslashes($fields[$i]) . $quot;;
+ }
} // end if
} // end for
hooks/post-receive
--
phpMyAdmin
1
0