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-76-g589504f
by Michal Čihař 30 Mar '10
by Michal Čihař 30 Mar '10
30 Mar '10
The branch, QA_3_3 has been updated
via 589504fe8a423b794797f72cf61b60fc8b770b3e (commit)
from 291f2a1d1d97299b3b47dc2b9871e3646ae7d3f8 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
Documentation.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Documentation.html b/Documentation.html
index 486af10..34f1bbd 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -4340,7 +4340,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, master, updated. RELEASE_3_3_1RC1-275-gbd0c89b
by Marc Delisle 29 Mar '10
by Marc Delisle 29 Mar '10
29 Mar '10
The branch, master has been updated
via bd0c89b630be5a3bff087cae788afeac228daa00 (commit)
from b452564b8320789a580e86ab272327f048654bfc (commit)
- Log -----------------------------------------------------------------
commit bd0c89b630be5a3bff087cae788afeac228daa00
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Mar 29 17:46:55 2010 -0400
explain the timestamp we generate at load time for each .js file
-----------------------------------------------------------------------
Summary of changes:
libraries/header_scripts.inc.php | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
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";
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-274-gb452564
by Marc Delisle 29 Mar '10
by Marc Delisle 29 Mar '10
29 Mar '10
The branch, master has been updated
via b452564b8320789a580e86ab272327f048654bfc (commit)
from dbd83fa123f951fce7795ca38bb117b64a5c2aaf (commit)
- Log -----------------------------------------------------------------
commit b452564b8320789a580e86ab272327f048654bfc
Author: GreenRover <greenrover(a)users.sourceforge.net>
Date: Mon Mar 29 17:39:39 2010 -0400
Patch #2967320 Colored relations based on primary key
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 +
pmd/scripts/move.js | 53 +++++++++++++++++++++++++++++++++++++++++++++++---
2 files changed, 51 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6fe706b..7a1717f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -55,6 +55,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
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/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;
+}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-273-gdbd83fa
by Marc Delisle 29 Mar '10
by Marc Delisle 29 Mar '10
29 Mar '10
The branch, master has been updated
via dbd83fa123f951fce7795ca38bb117b64a5c2aaf (commit)
from 775d2ce26417a2c52b42f719a0dbccc3e63e468b (commit)
- Log -----------------------------------------------------------------
commit dbd83fa123f951fce7795ca38bb117b64a5c2aaf
Author: Martynas Mickevičius <BlinK_(a)users.sourceforge.net>
Date: Mon Mar 29 17:26:27 2010 -0400
Patch #2975533 New search operators
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
libraries/config.default.php | 10 +++++++++-
tbl_select.php | 18 +++++++++++++++++-
3 files changed, 28 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 51febbb..6fe706b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -53,6 +53,8 @@ $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
3.3.2.0 (not yet released)
- patch #2969449 [core] Name for MERGE engine varies depending on the
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/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

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 39c4279b6ee5ccb1cb606a83e2f9b463dda33bb3
by Dieter Adriaenssens 29 Mar '10
by Dieter Adriaenssens 29 Mar '10
29 Mar '10
The branch, master has been updated
via 39c4279b6ee5ccb1cb606a83e2f9b463dda33bb3 (commit)
from 055d5acc76560a8f1c87700207eccd6af4061e41 (commit)
- Log -----------------------------------------------------------------
commit 39c4279b6ee5ccb1cb606a83e2f9b463dda33bb3
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Mon Mar 29 21:59:55 2010 +0200
Fix broken link in FAQ_7_3
-----------------------------------------------------------------------
Summary of changes:
output/en_GB/Documentation.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/output/en_GB/Documentation.html b/output/en_GB/Documentation.html
index 9bcbe46..93764ec 100644
--- a/output/en_GB/Documentation.html
+++ b/output/en_GB/Documentation.html
@@ -4466,7 +4466,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 />
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, gettext, updated. RELEASE_3_3_1RC1-882-g1c24177
by Michal Čihař 29 Mar '10
by Michal Čihař 29 Mar '10
29 Mar '10
The branch, gettext has been updated
via 1c241775fc95e3a9fcec0265cf122907dfeb46c2 (commit)
from 465ec50efae8d6294f2ca356dbd848c4308270a9 (commit)
- Log -----------------------------------------------------------------
commit 1c241775fc95e3a9fcec0265cf122907dfeb46c2
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:27:36 2010 +0200
Translate some strings to Czech.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 19 ++++++++-----------
1 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 2fbbe24..cf12e39 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,10 +1,11 @@
# Automatically generated <>, 2010.
+# Michal <michal(a)cihar.com>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-19 00:28+0100\n"
-"PO-Revision-Date: 2010-03-19 01:24+0200\n"
+"PO-Revision-Date: 2010-03-29 09:27+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -3530,7 +3531,7 @@ msgstr "Nastavení serveru"
#: libraries/messages.inc.php:788
msgid "Master replication"
-msgstr ""
+msgstr "Replikace nadřízeného"
#: libraries/messages.inc.php:789
msgid "Replication"
@@ -3544,9 +3545,8 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:791
-#, fuzzy
msgid "Please select databases:"
-msgstr "Prosím vyberte databázi"
+msgstr "Prosím vyberte databáze:"
#: libraries/messages.inc.php:792
#, php-format
@@ -3563,7 +3563,7 @@ msgstr ""
#: libraries/messages.inc.php:794
msgid "Show connected slaves"
-msgstr ""
+msgstr "Zobrazit připojené podřízené"
#: libraries/messages.inc.php:795 libraries/messages.inc.php:1257
msgid "Show master status"
@@ -3664,14 +3664,12 @@ msgid "Slave status"
msgstr "Stav podřízeného"
#: libraries/messages.inc.php:816
-#, fuzzy
msgid "Synchronize databases with master"
-msgstr "Synchronovat databáze"
+msgstr "Synchronovat databáze s nadřízeným"
#: libraries/messages.inc.php:817
-#, fuzzy
msgid "Unable to change master"
-msgstr "Nepodařilo se připojit k nadřízenému %s."
+msgstr "Nepodařilo se změnit nadřízeného"
#: libraries/messages.inc.php:818
msgid "Unknown error"
@@ -5357,9 +5355,8 @@ msgid "Server socket"
msgstr "Socket serveru"
#: libraries/messages.inc.php:1176
-#, fuzzy
msgid "Enable SSL for connection to MySQL server"
-msgstr "Zda se má komprimovat připojení k MySQL serveru."
+msgstr "Zda se má použít SSL pro připojení k MySQL serveru"
#: libraries/messages.inc.php:1177
msgid "Use SSL"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 055d5acc76560a8f1c87700207eccd6af4061e41
by Michal Čihař 29 Mar '10
by Michal Čihař 29 Mar '10
29 Mar '10
The branch, master has been updated
via 055d5acc76560a8f1c87700207eccd6af4061e41 (commit)
via 53953b74d9ae9a4cf1e3a70517e714a0482d7a90 (commit)
via f509305b50f002b9f21f724a7441badbcf380c6e (commit)
via 846cb94134b8996aa37ffd58dd2676a38f40e47f (commit)
via 4b38b6bd73bd7c93333a9ae1070b69d808a0ec1e (commit)
from c43dbf32dfc211e5364191e085fc645b50d9932a (commit)
- Log -----------------------------------------------------------------
commit 055d5acc76560a8f1c87700207eccd6af4061e41
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:22:49 2010 +0200
Regenerate index documents with correct language names.
commit 53953b74d9ae9a4cf1e3a70517e714a0482d7a90
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:18:25 2010 +0200
Fix escaping.
commit f509305b50f002b9f21f724a7441badbcf380c6e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:17:36 2010 +0200
Use variable with language name.
commit 846cb94134b8996aa37ffd58dd2676a38f40e47f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:16:38 2010 +0200
This function is not being used.
commit 4b38b6bd73bd7c93333a9ae1070b69d808a0ec1e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:15:47 2010 +0200
Avoid duplication of en_GB.
-----------------------------------------------------------------------
Summary of changes:
generate-lang-index | 44 +-----------------------------------
get-lang-name | 4 +-
output/ca/index-full-template.html | 2 +-
output/ca/index.html | 2 +-
output/de/index-full-template.html | 2 +-
output/de/index.html | 2 +-
output/es/index-full-template.html | 2 +-
output/es/index.html | 2 +-
output/fi/index-full-template.html | 2 +-
output/fi/index.html | 2 +-
output/gl/index-full-template.html | 2 +-
output/gl/index.html | 2 +-
output/hu/index-full-template.html | 2 +-
output/hu/index.html | 2 +-
output/ja/index-full-template.html | 2 +-
output/ja/index.html | 2 +-
output/ka/index-full-template.html | 2 +-
output/ka/index.html | 2 +-
output/lt/index-full-template.html | 2 +-
output/lt/index.html | 2 +-
output/mn/index-full-template.html | 2 +-
output/mn/index.html | 2 +-
output/nb/index-full-template.html | 8 +++---
output/nl/index-full-template.html | 2 +-
output/nl/index.html | 2 +-
output/ro/index-full-template.html | 2 +-
output/ro/index.html | 2 +-
output/sk/index-full-template.html | 2 +-
output/sk/index.html | 2 +-
output/sv/index-full-template.html | 2 +-
output/sv/index.html | 2 +-
output/tr/index-full-template.html | 2 +-
output/tr/index.html | 2 +-
po/ca.po | 4 +-
po/de.po | 4 +-
po/es.po | 4 +-
po/fi.po | 4 +-
po/gl.po | 4 +-
po/hu.po | 4 +-
po/it.po | 4 +-
po/ja.po | 2 +-
po/ka.po | 4 +-
po/lt.po | 4 +-
po/mn.po | 4 +-
po/nb.po | 12 +++++----
po/nl.po | 4 +-
po/pt_BR.po | 8 +++---
po/ro.po | 4 +-
po/sk.po | 4 +-
po/sv.po | 4 +-
po/tr.po | 4 +-
pot/ca-full.pot | 15 ++++++++++-
pot/ca-html.pot | 4 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 4 +-
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 6 ++--
pot/de-html.pot | 4 +-
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 13 +++++++++-
pot/en_GB-html.pot | 2 +-
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 | 13 +++++++++-
pot/fr-html.pot | 2 +-
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 | 13 +++++++++-
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 4 +-
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 4 +-
pot/ja-html.pot | 2 +-
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 | 6 ++--
pot/mn-html.pot | 4 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 17 +++++++++++--
pot/nb-html.pot | 6 ++--
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 6 ++--
pot/nl-html.pot | 4 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 13 +++++++++-
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 13 +++++++++-
pot/pt_BR-html.pot | 2 +-
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 | 13 +++++++++-
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 13 +++++++++-
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
126 files changed, 401 insertions(+), 232 deletions(-)
diff --git a/generate-lang-index b/generate-lang-index
index 807a793..5686e7d 100755
--- a/generate-lang-index
+++ b/generate-lang-index
@@ -15,48 +15,6 @@ getname() {
esac
}
-langname() {
- case $1 in
- fr)
- echo "French"
- ;;
- cs)
- echo "Czech"
- ;;
- pt_BR)
- echo "Brazilian Portuguese"
- ;;
- jp)
- echo "Japanese"
- ;;
- pl)
- echo "Polish"
- ;;
- it)
- echo "Italian"
- ;;
- zh_TW)
- echo "Traditional Chinese"
- ;;
- zh_CN)
- echo "Simplified Chinese"
- ;;
- hy)
- echo "Armenian"
- ;;
- en_GB)
- echo "English (United Kingdom)"
- ;;
- en_GB)
- echo "English (United Kingdom)"
- ;;
-### MARKER TO ADD NEW LANGUAGE NAMES ###
- *)
- echo $1
- ;;
- esac
-}
-
lang=$1
langname=`./get-lang-name $1`
cd output/$lang
@@ -90,7 +48,7 @@ EOT
EOT
else
cat <<EOT
-<p>Documents translated to `langname $lang`:</p>
+<p>Documents translated to $langname:</p>
<ul>
EOT
for file in $files ; do
diff --git a/get-lang-name b/get-lang-name
index b31e8d4..a81ca71 100755
--- a/get-lang-name
+++ b/get-lang-name
@@ -72,8 +72,8 @@ case $1 in
en_GB)
echo "English (United Kingdom)"
;;
- en_GB)
- echo "English (United Kingdom)"
+ en)
+ echo "English"
;;
sk)
echo "Slovak"
diff --git a/output/ca/index-full-template.html b/output/ca/index-full-template.html
index 6f6ff6c..0ca4a58 100644
--- a/output/ca/index-full-template.html
+++ b/output/ca/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Catalan Documentation</h1>
-<p>Documents translated to ca:</p>
+<p>Documents translated to Catalan:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/ca/index.html b/output/ca/index.html
index 9659502..85ae9b4 100644
--- a/output/ca/index.html
+++ b/output/ca/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Catalan Documentation</h1>
-<p>Documents translated to ca:</p>
+<p>Documents translated to Catalan:</p>
<ul>
<li><a href="translators.html">Traductors</a></li>
</ul>
diff --git a/output/de/index-full-template.html b/output/de/index-full-template.html
index 53c1515..3ce54c9 100644
--- a/output/de/index-full-template.html
+++ b/output/de/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin German Documentation</h1>
-<p>Documents translated to de:</p>
+<p>Documents translated to German:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/de/index.html b/output/de/index.html
index 5a4278e..b2ce340 100644
--- a/output/de/index.html
+++ b/output/de/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin German Documentation</h1>
-<p>Documents translated to de:</p>
+<p>Documents translated to German:</p>
<ul>
<li><a href="translators.html">Übersetzer</a></li>
</ul>
diff --git a/output/es/index-full-template.html b/output/es/index-full-template.html
index 72017c6..b55d09d 100644
--- a/output/es/index-full-template.html
+++ b/output/es/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Spanish Documentation</h1>
-<p>Documents translated to es:</p>
+<p>Documents translated to Spanish:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/es/index.html b/output/es/index.html
index 6a4cf4e..e1a5eec 100644
--- a/output/es/index.html
+++ b/output/es/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Spanish Documentation</h1>
-<p>Documents translated to es:</p>
+<p>Documents translated to Spanish:</p>
<ul>
<li><a href="translators.html">Traductores</a></li>
</ul>
diff --git a/output/fi/index-full-template.html b/output/fi/index-full-template.html
index bbb52b2..7dc4ca8 100644
--- a/output/fi/index-full-template.html
+++ b/output/fi/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Finnish Documentation</h1>
-<p>Documents translated to fi:</p>
+<p>Documents translated to Finnish:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/fi/index.html b/output/fi/index.html
index 59506fe..87380fd 100644
--- a/output/fi/index.html
+++ b/output/fi/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Finnish Documentation</h1>
-<p>Documents translated to fi:</p>
+<p>Documents translated to Finnish:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/gl/index-full-template.html b/output/gl/index-full-template.html
index cab1418..7480387 100644
--- a/output/gl/index-full-template.html
+++ b/output/gl/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Galician Documentation</h1>
-<p>Documents translated to gl:</p>
+<p>Documents translated to Galician:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/gl/index.html b/output/gl/index.html
index 2a7e6ab..99e8079 100644
--- a/output/gl/index.html
+++ b/output/gl/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Galician Documentation</h1>
-<p>Documents translated to gl:</p>
+<p>Documents translated to Galician:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/hu/index-full-template.html b/output/hu/index-full-template.html
index 169b1a0..6d98abf 100644
--- a/output/hu/index-full-template.html
+++ b/output/hu/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Hungarian Documentation</h1>
-<p>Documents translated to hu:</p>
+<p>Documents translated to Hungarian:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/hu/index.html b/output/hu/index.html
index d76b8b1..2cdc188 100644
--- a/output/hu/index.html
+++ b/output/hu/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Hungarian Documentation</h1>
-<p>Documents translated to hu:</p>
+<p>Documents translated to Hungarian:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/ja/index-full-template.html b/output/ja/index-full-template.html
index ca9d7aa..ee39e3c 100644
--- a/output/ja/index-full-template.html
+++ b/output/ja/index-full-template.html
@@ -1,6 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="jp"
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja"
version="-//W3C//DTD XHTML 1.1//EN" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
diff --git a/output/ja/index.html b/output/ja/index.html
index e217c49..a099c80 100644
--- a/output/ja/index.html
+++ b/output/ja/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Japanese Documentation</h1>
-<p>Documents translated to ja:</p>
+<p>Documents translated to Japanese:</p>
<ul>
<li><a href="Documentation.html">Main documentation</a></li>
<li><a href="translators.html">Translators</a></li>
diff --git a/output/ka/index-full-template.html b/output/ka/index-full-template.html
index c8e27e7..8471f24 100644
--- a/output/ka/index-full-template.html
+++ b/output/ka/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Georgian Documentation</h1>
-<p>Documents translated to ka:</p>
+<p>Documents translated to Georgian:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/ka/index.html b/output/ka/index.html
index 9f2cea1..cafb64f 100644
--- a/output/ka/index.html
+++ b/output/ka/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Georgian Documentation</h1>
-<p>Documents translated to ka:</p>
+<p>Documents translated to Georgian:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/lt/index-full-template.html b/output/lt/index-full-template.html
index 6429b63..8be489c 100644
--- a/output/lt/index-full-template.html
+++ b/output/lt/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Lithuanian Documentation</h1>
-<p>Documents translated to lt:</p>
+<p>Documents translated to Lithuanian:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/lt/index.html b/output/lt/index.html
index 885377a..8a05325 100644
--- a/output/lt/index.html
+++ b/output/lt/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Lithuanian Documentation</h1>
-<p>Documents translated to lt:</p>
+<p>Documents translated to Lithuanian:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/mn/index-full-template.html b/output/mn/index-full-template.html
index b2abf16..83f2513 100644
--- a/output/mn/index-full-template.html
+++ b/output/mn/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Mongolian Documentation</h1>
-<p>Documents translated to mn:</p>
+<p>Documents translated to Mongolian:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/mn/index.html b/output/mn/index.html
index a1e1b2a..5b599c9 100644
--- a/output/mn/index.html
+++ b/output/mn/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Mongolian Documentation</h1>
-<p>Documents translated to mn:</p>
+<p>Documents translated to Mongolian:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/nb/index-full-template.html b/output/nb/index-full-template.html
index 25d12dc..32d6aa2 100644
--- a/output/nb/index-full-template.html
+++ b/output/nb/index-full-template.html
@@ -1,14 +1,14 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="no"
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nb"
version="-//W3C//DTD XHTML 1.1//EN" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin Norwegian Documentation</title>
+ <title>phpMyAdmin nb Documentation</title>
</head>
<body>
-<h1>phpMyAdmin Norwegian Documentation</h1>
-<p>Documents translated to no:</p>
+<h1>phpMyAdmin nb Documentation</h1>
+<p>Documents translated to nb:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/nl/index-full-template.html b/output/nl/index-full-template.html
index 0b4d61e..6ddb0f8 100644
--- a/output/nl/index-full-template.html
+++ b/output/nl/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Dutch Documentation</h1>
-<p>Documents translated to nl:</p>
+<p>Documents translated to Dutch:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/nl/index.html b/output/nl/index.html
index b04844f..c449830 100644
--- a/output/nl/index.html
+++ b/output/nl/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Dutch Documentation</h1>
-<p>Documents translated to nl:</p>
+<p>Documents translated to Dutch:</p>
<ul>
<li><a href="translators.html">Vertalers</a></li>
</ul>
diff --git a/output/ro/index-full-template.html b/output/ro/index-full-template.html
index af80d81..d2598ef 100644
--- a/output/ro/index-full-template.html
+++ b/output/ro/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Romanian Documentation</h1>
-<p>Documents translated to ro:</p>
+<p>Documents translated to Romanian:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/ro/index.html b/output/ro/index.html
index 01d1e3c..16527be 100644
--- a/output/ro/index.html
+++ b/output/ro/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Romanian Documentation</h1>
-<p>Documents translated to ro:</p>
+<p>Documents translated to Romanian:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/sk/index-full-template.html b/output/sk/index-full-template.html
index 7f0feb9..b94ff2a 100644
--- a/output/sk/index-full-template.html
+++ b/output/sk/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Slovak Documentation</h1>
-<p>Documents translated to sk:</p>
+<p>Documents translated to Slovak:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/sk/index.html b/output/sk/index.html
index a3d01f6..3a3cd04 100644
--- a/output/sk/index.html
+++ b/output/sk/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Slovak Documentation</h1>
-<p>Documents translated to sk:</p>
+<p>Documents translated to Slovak:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/sv/index-full-template.html b/output/sv/index-full-template.html
index 0bbbd07..0ad25fc 100644
--- a/output/sv/index-full-template.html
+++ b/output/sv/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Swedish Documentation</h1>
-<p>Documents translated to sv:</p>
+<p>Documents translated to Swedish:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/sv/index.html b/output/sv/index.html
index 126077d..cdcd279 100644
--- a/output/sv/index.html
+++ b/output/sv/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Swedish Documentation</h1>
-<p>Documents translated to sv:</p>
+<p>Documents translated to Swedish:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/output/tr/index-full-template.html b/output/tr/index-full-template.html
index 9f9fe42..3e0de8e 100644
--- a/output/tr/index-full-template.html
+++ b/output/tr/index-full-template.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Turkish Documentation</h1>
-<p>Documents translated to tr:</p>
+<p>Documents translated to Turkish:</p>
<ul>
<li><a href="INSTALL">INSTALL</a></li>
<li><a href="TODO">TODO</a></li>
diff --git a/output/tr/index.html b/output/tr/index.html
index efd32e5..e93a59b 100644
--- a/output/tr/index.html
+++ b/output/tr/index.html
@@ -8,7 +8,7 @@
</head>
<body>
<h1>phpMyAdmin Turkish Documentation</h1>
-<p>Documents translated to tr:</p>
+<p>Documents translated to Turkish:</p>
<ul>
<li><a href="translators.html">Translators</a></li>
</ul>
diff --git a/po/ca.po b/po/ca.po
index bd393df..42ead2e 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-22 23:55+0100\n"
+"POT-Creation-Date: 2010-03-29 09: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"
@@ -11284,7 +11284,7 @@ msgstr "Documentació de phpMyAdmin 3.3.0-dev"
#. type: Content of: <html><body><p>
#: output/ca/index-full-template.html:11
-msgid "Documents translated to ca:"
+msgid "Documents translated to Catalan:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/de.po b/po/de.po
index 2af7b1e..0a1d60e 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-22 23:56+0100\n"
+"POT-Creation-Date: 2010-03-29 09:20+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"
@@ -11758,7 +11758,7 @@ msgstr "phpMyAdmin 3.3.0-dev - Dokumentation"
#. type: Content of: <html><body><p>
#: output/de/index-full-template.html:11
-msgid "Documents translated to de:"
+msgid "Documents translated to German:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/es.po b/po/es.po
index f872dd6..781749e 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-22 23:56+0100\n"
+"POT-Creation-Date: 2010-03-29 09:20+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"
@@ -11445,7 +11445,7 @@ msgstr "phpMyAdmin 3.3.0-dev - Documentación"
#. type: Content of: <html><body><p>
#: output/es/index-full-template.html:11
-msgid "Documents translated to es:"
+msgid "Documents translated to Spanish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/fi.po b/po/fi.po
index 8f43972..150783a 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-22 23:55+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11256,7 +11256,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/fi/index-full-template.html:11
-msgid "Documents translated to fi:"
+msgid "Documents translated to Finnish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/gl.po b/po/gl.po
index 78cbbff..48e0ced 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11255,7 +11255,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/gl/index-full-template.html:11
-msgid "Documents translated to gl:"
+msgid "Documents translated to Galician:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/hu.po b/po/hu.po
index a835c3c..df92991 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-22 23:55+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11256,7 +11256,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/hu/index-full-template.html:11
-msgid "Documents translated to hu:"
+msgid "Documents translated to Hungarian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/it.po b/po/it.po
index 8d05cdf..a1c6c2a 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-22 23:50+0100\n"
+"POT-Creation-Date: 2010-03-29 09:17+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"
@@ -536,7 +536,7 @@ msgstr ""
"In tal caso dovrai ri-salvare con BBEdit TUTTI gli script di phpMyAdmin in "
"formato Unix prima di trasferirli sul server, in quanto PHP non sembra "
"gradire il metodo di formattazione dei fine-riga in stile <acronym title="
-"\"Apple Macintosh\">Mac</acronym> ("<tt>\r</tt>")."
+"\"Apple Macintosh\">Mac</acronym> ("<tt>\\r</tt>")."
#. type: Content of: <html><body><div><h3>
#: ../phpmyadmin/Documentation.html:193
diff --git a/po/ja.po b/po/ja.po
index 13fe0b3..b3a1daf 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-22 23:51+0100\n"
+"POT-Creation-Date: 2010-03-29 09:18+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"
diff --git a/po/ka.po b/po/ka.po
index f605176..396fdaf 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-22 23:54+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11256,7 +11256,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ka/index-full-template.html:11
-msgid "Documents translated to ka:"
+msgid "Documents translated to Georgian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/lt.po b/po/lt.po
index 8fd9601..0ce7fde 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:20+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11254,7 +11254,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/lt/index-full-template.html:11
-msgid "Documents translated to lt:"
+msgid "Documents translated to Lithuanian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/mn.po b/po/mn.po
index 7fd90e5..aa0d5df 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:20+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11252,7 +11252,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/mn/index-full-template.html:11
-msgid "Documents translated to mn:"
+msgid "Documents translated to Mongolian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/nb.po b/po/nb.po
index 03a75f0..a380976 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-22 23:56+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11251,13 +11251,15 @@ msgstr ""
#. type: Content of: <html><body><h1>
#: output/nb/index-full-template.html:7 output/nb/index-full-template.html:10
-msgid "phpMyAdmin Norwegian Documentation"
-msgstr ""
+#, fuzzy
+msgid "phpMyAdmin nb Documentation"
+msgstr "phpMyAdmin-Dokumentasjon"
#. type: Content of: <html><body><p>
#: output/nb/index-full-template.html:11
-msgid "Documents translated to no:"
-msgstr ""
+#, fuzzy
+msgid "Documents translated to nb:"
+msgstr "Dokumentasjon"
#. type: Content of: <html><body><ul><li>
#: output/nb/index-full-template.html:13
diff --git a/po/nl.po b/po/nl.po
index 490e703..8bf7079 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2010-02-15 13:42+0200\n"
"Last-Translator: <thyone(a)thyone.org>\n"
"Language-Team: none\n"
@@ -11400,7 +11400,7 @@ msgstr "phpMyAdmin 3.4.0-dev - Documentation"
#. type: Content of: <html><body><p>
#: output/nl/index-full-template.html:11
-msgid "Documents translated to nl:"
+msgid "Documents translated to Dutch:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/pt_BR.po b/po/pt_BR.po
index d518235..23ad731 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,14 +7,14 @@ 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-29 09:11+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"
-"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -9632,8 +9632,8 @@ msgid ""
"<tt>git clone git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/"
"phpmyadmin</tt>"
msgstr ""
-"<tt>git clone "
-"git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin</tt>"
+"<tt>git clone git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/"
+"phpmyadmin</tt>"
#. type: Content of: <html><body><div><ol><li>
#: ../phpmyadmin/Documentation.html:4349
diff --git a/po/ro.po b/po/ro.po
index bde0362..6d278c9 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:20+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"
@@ -11262,7 +11262,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ro/index-full-template.html:11
-msgid "Documents translated to ro:"
+msgid "Documents translated to Romanian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/sk.po b/po/sk.po
index d8a4373..67fedc9 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-23 00:00+0100\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"
@@ -11255,7 +11255,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/sk/index-full-template.html:11
-msgid "Documents translated to sk:"
+msgid "Documents translated to Slovak:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/sv.po b/po/sv.po
index 81d78a7..8ea3bb7 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11256,7 +11256,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/sv/index-full-template.html:11
-msgid "Documents translated to sv:"
+msgid "Documents translated to Swedish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/po/tr.po b/po/tr.po
index e2ab1ca..2555060 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-22 23:54+0100\n"
+"POT-Creation-Date: 2010-03-29 09:19+0300\n"
"PO-Revision-Date: 2009-05-19 09:52+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11256,7 +11256,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/tr/index-full-template.html:11
-msgid "Documents translated to tr:"
+msgid "Documents translated to Turkish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index f24502d..5226fd8 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:55+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ca/index-full-template.html:11
-msgid "Documents translated to ca:"
+msgid "Documents translated to Catalan:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 5744689..391ab85 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-22 23:55+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ca/index-full-template.html:11
-msgid "Documents translated to ca:"
+msgid "Documents translated to Catalan:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index eb59c26..0fe54e6 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-22 23:55+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 4cae850..b69e222 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -9,7 +9,7 @@ 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-22 23:52+0100\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index 2db18f3..751780c 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-22 23:52+0100\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"
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index 20e2d32..87a8a26 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 7422119..2ba312a 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -9,7 +9,7 @@ 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-22 23:56+0100\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11264,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/de/index-full-template.html:11
-msgid "Documents translated to de:"
+msgid "Documents translated to German:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/de-html.pot b/pot/de-html.pot
index 0d88e07..ba5fe41 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-22 23:56+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/de/index-full-template.html:11
-msgid "Documents translated to de:"
+msgid "Documents translated to German:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index 8dd487a..0fe54e6 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 be9b926..be2f737 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -6,9 +6,20 @@
#, fuzzy
msgid ""
msgstr ""
+"#-#-#-#-# en_GB-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-22 23:59+0100\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"
+"#-#-#-#-# 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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 9e165f0..21413f8 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-22 23:59+0100\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"
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index de8fcc1..9c108c4 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-22 23:59+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 36bfb70..dc2c57d 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:56+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/es/index-full-template.html:11
-msgid "Documents translated to es:"
+msgid "Documents translated to Spanish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/es-html.pot b/pot/es-html.pot
index 53af783..83b4081 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-22 23:56+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/es/index-full-template.html:11
-msgid "Documents translated to es:"
+msgid "Documents translated to Spanish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index fa008a0..0fe54e6 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-22 23:56+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 bbae0f8..bf0a688 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:55+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/fi/index-full-template.html:11
-msgid "Documents translated to fi:"
+msgid "Documents translated to Finnish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index 1709af3..031fee4 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-22 23:55+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/fi/index-full-template.html:11
-msgid "Documents translated to fi:"
+msgid "Documents translated to Finnish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index eb59c26..0fe54e6 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-22 23:55+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 f6f1b14..7a1f2ef 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:52+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index 9bb77c6..0629ff1 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-22 23:52+0100\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"
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index 124dc2a..87a8a26 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-22 23:52+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 dc539d9..2cd8664 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:53+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/gl/index-full-template.html:11
-msgid "Documents translated to gl:"
+msgid "Documents translated to Galician:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index b824168..b3d4df5 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-22 23:53+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/gl/index-full-template.html:11
-msgid "Documents translated to gl:"
+msgid "Documents translated to Galician:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index 20e2d32..87a8a26 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 588465c..15268a3 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:55+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/hu/index-full-template.html:11
-msgid "Documents translated to hu:"
+msgid "Documents translated to Hungarian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index 9818c25..6bdae46 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-22 23:55+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/hu/index-full-template.html:11
-msgid "Documents translated to hu:"
+msgid "Documents translated to Hungarian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index eb59c26..0fe54e6 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-22 23:55+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 f4a2795..ca9c3c5 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:59+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index b7cd695..cb1a43c 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-22 23:59+0100\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"
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index de8fcc1..9c108c4 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-22 23:59+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 ee98cac..8c7799e 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -9,7 +9,7 @@ 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-22 23:50+0100\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# 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-22 23:51+0100\n"
+"POT-Creation-Date: 2010-03-29 09:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-html.pot b/pot/it-html.pot
index 8286de9..3521654 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-22 23:50+0100\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"
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index adad3ac..b2ee0ad 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-22 23:51+0100\n"
+"POT-Creation-Date: 2010-03-29 09:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-full.pot b/pot/ja-full.pot
index ae96eab..1deaa78 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -9,7 +9,7 @@ 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-22 23:51+0100\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# 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-22 23:52+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index bbbdf35..ab8003b 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-22 23:51+0100\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"
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index 124dc2a..87a8a26 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-22 23:52+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 b43427e..0bee4e1 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:54+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ka/index-full-template.html:11
-msgid "Documents translated to ka:"
+msgid "Documents translated to Georgian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 25ccfe4..4602dde 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-22 23:54+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ka/index-full-template.html:11
-msgid "Documents translated to ka:"
+msgid "Documents translated to Georgian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index 339a979..87a8a26 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-22 23:54+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 ac50b2d..0f51696 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:57+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/lt/index-full-template.html:11
-msgid "Documents translated to lt:"
+msgid "Documents translated to Lithuanian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index 5c500d5..47ebdac 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-22 23:57+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/lt/index-full-template.html:11
-msgid "Documents translated to lt:"
+msgid "Documents translated to Lithuanian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index 8dd487a..0fe54e6 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 4ce038d..b0de40c 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -9,7 +9,7 @@ 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-22 23:57+0100\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# 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-22 23:58+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11264,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/mn/index-full-template.html:11
-msgid "Documents translated to mn:"
+msgid "Documents translated to Mongolian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index dba0d53..5a9bf00 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-22 23:57+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/mn/index-full-template.html:11
-msgid "Documents translated to mn:"
+msgid "Documents translated to Mongolian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index 06c11fd..9c108c4 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-22 23:58+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 405f1da..f868214 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:56+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11248,12 +11259,12 @@ msgstr ""
#. type: Content of: <html><body><h1>
#: output/nb/index-full-template.html:7 output/nb/index-full-template.html:10
-msgid "phpMyAdmin Norwegian Documentation"
+msgid "phpMyAdmin nb Documentation"
msgstr ""
#. type: Content of: <html><body><p>
#: output/nb/index-full-template.html:11
-msgid "Documents translated to no:"
+msgid "Documents translated to nb:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index 7095d35..b92f3a7 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-22 23:56+0100\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"
@@ -11298,12 +11298,12 @@ msgstr ""
#. type: Content of: <html><body><h1>
#: output/nb/index-full-template.html:7 output/nb/index-full-template.html:10
-msgid "phpMyAdmin Norwegian Documentation"
+msgid "phpMyAdmin nb Documentation"
msgstr ""
#. type: Content of: <html><body><p>
#: output/nb/index-full-template.html:11
-msgid "Documents translated to no:"
+msgid "Documents translated to nb:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index fa008a0..0fe54e6 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-22 23:56+0100\n"
+"POT-Creation-Date: 2010-03-29 09:10+0300\n"
"PO-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 5bf3822..9c1ff17 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -9,7 +9,7 @@ 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-22 23:53+0100\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# 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-22 23:54+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11264,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/nl/index-full-template.html:11
-msgid "Documents translated to nl:"
+msgid "Documents translated to Dutch:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index 9a7cca4..aefed76 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-22 23:53+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/nl/index-full-template.html:11
-msgid "Documents translated to nl:"
+msgid "Documents translated to Dutch:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index 339a979..87a8a26 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-22 23:54+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 1af2bc2..237cb1e 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:51+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-html.pot b/pot/pl-html.pot
index f9a5dcb..b587af4 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-22 23:51+0100\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"
diff --git a/pot/pl-txt.pot b/pot/pl-txt.pot
index adad3ac..b2ee0ad 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-22 23:51+0100\n"
+"POT-Creation-Date: 2010-03-29 09:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-full.pot b/pot/pt_BR-full.pot
index fa86b3f..60f9a93 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:58+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index 0587728..836ab52 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-22 23:58+0100\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"
diff --git a/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index 06c11fd..9c108c4 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-22 23:58+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 5d322f0..0ef2e42 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:57+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ro/index-full-template.html:11
-msgid "Documents translated to ro:"
+msgid "Documents translated to Romanian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ro-html.pot b/pot/ro-html.pot
index 672c5f0..3fb3f5f 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-22 23:57+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/ro/index-full-template.html:11
-msgid "Documents translated to ro:"
+msgid "Documents translated to Romanian:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ro-txt.pot b/pot/ro-txt.pot
index 8dd487a..9c108c4 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-22 23:57+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 2034882..8ba4db8 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -6,9 +6,20 @@
#, 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-23 00:00+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/sk/index-full-template.html:11
-msgid "Documents translated to sk:"
+msgid "Documents translated to Slovak:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/sk-html.pot b/pot/sk-html.pot
index 1bf96ad..fed6b48 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-23 00:00+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/sk/index-full-template.html:11
-msgid "Documents translated to sk:"
+msgid "Documents translated to Slovak:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/sk-txt.pot b/pot/sk-txt.pot
index bb89312..9c108c4 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-23 00:00+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 5da4f42..7636d81 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:53+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/sv/index-full-template.html:11
-msgid "Documents translated to sv:"
+msgid "Documents translated to Swedish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/sv-html.pot b/pot/sv-html.pot
index 4cdd261..74822b9 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-22 23:53+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/sv/index-full-template.html:11
-msgid "Documents translated to sv:"
+msgid "Documents translated to Swedish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/sv-txt.pot b/pot/sv-txt.pot
index 20e2d32..87a8a26 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-22 23:53+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 5c098cc..f71f0a4 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:54+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -11253,7 +11264,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/tr/index-full-template.html:11
-msgid "Documents translated to tr:"
+msgid "Documents translated to Turkish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/tr-html.pot b/pot/tr-html.pot
index a6bf8d4..db7383c 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-22 23:54+0100\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"
@@ -11303,7 +11303,7 @@ msgstr ""
#. type: Content of: <html><body><p>
#: output/tr/index-full-template.html:11
-msgid "Documents translated to tr:"
+msgid "Documents translated to Turkish:"
msgstr ""
#. type: Content of: <html><body><ul><li>
diff --git a/pot/tr-txt.pot b/pot/tr-txt.pot
index 339a979..87a8a26 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-22 23:54+0100\n"
+"POT-Creation-Date: 2010-03-29 09:09+0300\n"
"PO-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 117ff2b..074eb54 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -6,9 +6,20 @@
#, fuzzy
msgid ""
msgstr ""
+"#-#-#-#-# zh_CN-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-22 23:58+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index 454abb3..413402a 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-22 23:58+0100\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"
diff --git a/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index 06c11fd..9c108c4 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-22 23:58+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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 b5dd417..14bd4d4 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -6,9 +6,20 @@
#, 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-22 23:59+0100\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"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index fe351a2..044e2ae 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-22 23:59+0100\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"
diff --git a/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index de8fcc1..9c108c4 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-22 23:59+0100\n"
+"POT-Creation-Date: 2010-03-29 09:11+0300\n"
"PO-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, gettext, updated. RELEASE_3_3_1RC1-881-g465ec50
by Michal Čihař 29 Mar '10
by Michal Čihař 29 Mar '10
29 Mar '10
The branch, gettext has been updated
via 465ec50efae8d6294f2ca356dbd848c4308270a9 (commit)
via 8fac76138004d6d811cf464b5f224382d287391d (commit)
via ee1ac10531a0d4e154ba80cbb52b4efeafeb1bd4 (commit)
via 37dec40c527f88ca06c161d049ed81d3985fdbcb (commit)
via e775610205daadf61f1fe443d2b1dca1c3372291 (commit)
via ca2b8520e52775f7e2515e5cf953de8d0a323834 (commit)
via ec7f2ee94c824b2ec6dd6407aa008e698d75df81 (commit)
via 46afd9d410cdaa3d471eaf40c308f12196840a76 (commit)
via a7b4d9c4c051456b9fffce793ef9789611bd7cf5 (commit)
via 252d7f92335dc57015a6adcf1eb7238b5a3afe4d (commit)
via b78fe06b38e6095cc3424fb7ef467b465c10ef3b (commit)
via 6a0ef059c675091b91e3340a2d98fd6b5aba7e15 (commit)
via 1b691149825d2eb5e64e2932b58b3734ddbe3fe6 (commit)
via 9fc19bc0568c53ee2a86cf433390dec209e1c84b (commit)
via 435931457115e5673b1c79d61e4a3de5a6af667c (commit)
via 5b7d44ca5472938101b8ffe0065adeca92b35bd6 (commit)
via e7a1705b6df83d52c4e26a7f09cd8db367151b81 (commit)
via b774459169467ca5c0980f308358330dac950ba4 (commit)
via 3459098babee9b911107a6776e87cbdf569816ec (commit)
via 775d2ce26417a2c52b42f719a0dbccc3e63e468b (commit)
via d8765ad5fb3e773361a68b788c53a231790e84b2 (commit)
via 031d315b3c1d7507a1f39e52bf93f7917dbe7eee (commit)
via 605727dd9857edafcea279e5f6384f75a145ac48 (commit)
via f3286a0d214c0ed03e04350dbf17369686963b84 (commit)
via e58626c1888f22027d26df749be475fc28800086 (commit)
via a0fb4c04b96da4ca82968b355a271614d5e7bde5 (commit)
via f7418693d783d1ae694cf392e19e0ff7dfe0d95d (commit)
via 6ff307b546471fd556cdfe3ac924a89217134e5d (commit)
from 1ce73794ea669c0a37ad65a83c14a1286b7b2371 (commit)
- Log -----------------------------------------------------------------
commit 465ec50efae8d6294f2ca356dbd848c4308270a9
Merge: 8fac76138004d6d811cf464b5f224382d287391d ee1ac10531a0d4e154ba80cbb52b4efeafeb1bd4
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:06:32 2010 +0200
Merge remote branch 'pootle/gettext' into gettext
commit 8fac76138004d6d811cf464b5f224382d287391d
Merge: 1ce73794ea669c0a37ad65a83c14a1286b7b2371 775d2ce26417a2c52b42f719a0dbccc3e63e468b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Mar 29 09:06:15 2010 +0200
Merge branch 'master' into gettext
commit ee1ac10531a0d4e154ba80cbb52b4efeafeb1bd4
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:26:56 2010 +0200
Translation update done using Pootle.
commit 37dec40c527f88ca06c161d049ed81d3985fdbcb
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:26:11 2010 +0200
Translation update done using Pootle.
commit e775610205daadf61f1fe443d2b1dca1c3372291
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:25:20 2010 +0200
Translation update done using Pootle.
commit ca2b8520e52775f7e2515e5cf953de8d0a323834
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:24:34 2010 +0200
Translation update done using Pootle.
commit ec7f2ee94c824b2ec6dd6407aa008e698d75df81
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:24:08 2010 +0200
Translation update done using Pootle.
commit 46afd9d410cdaa3d471eaf40c308f12196840a76
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:23:56 2010 +0200
Translation update done using Pootle.
commit a7b4d9c4c051456b9fffce793ef9789611bd7cf5
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:23:51 2010 +0200
Translation update done using Pootle.
commit 252d7f92335dc57015a6adcf1eb7238b5a3afe4d
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:23:23 2010 +0200
Translation update done using Pootle.
commit b78fe06b38e6095cc3424fb7ef467b465c10ef3b
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:23:16 2010 +0200
Translation update done using Pootle.
commit 6a0ef059c675091b91e3340a2d98fd6b5aba7e15
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:22:45 2010 +0200
Translation update done using Pootle.
commit 1b691149825d2eb5e64e2932b58b3734ddbe3fe6
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:22:06 2010 +0200
Translation update done using Pootle.
commit 9fc19bc0568c53ee2a86cf433390dec209e1c84b
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:21:54 2010 +0200
Translation update done using Pootle.
commit 435931457115e5673b1c79d61e4a3de5a6af667c
Author: rebeluca <rebeluca(a)gmail.com>
Date: Mon Mar 29 00:21:28 2010 +0200
Translation update done using Pootle.
commit 5b7d44ca5472938101b8ffe0065adeca92b35bd6
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 13:56:28 2010 +0200
Translation update done using Pootle.
commit e7a1705b6df83d52c4e26a7f09cd8db367151b81
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 13:55:45 2010 +0200
Translation update done using Pootle.
commit b774459169467ca5c0980f308358330dac950ba4
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 13:54:34 2010 +0200
Translation update done using Pootle.
commit 3459098babee9b911107a6776e87cbdf569816ec
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 13:54:08 2010 +0200
Translation update done using Pootle.
commit d8765ad5fb3e773361a68b788c53a231790e84b2
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 07:24:32 2010 +0200
Translation update done using Pootle.
commit 031d315b3c1d7507a1f39e52bf93f7917dbe7eee
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 07:04:15 2010 +0200
Translation update done using Pootle.
commit 605727dd9857edafcea279e5f6384f75a145ac48
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 07:02:24 2010 +0200
Translation update done using Pootle.
commit f3286a0d214c0ed03e04350dbf17369686963b84
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 05:06:37 2010 +0200
Translation update done using Pootle.
commit e58626c1888f22027d26df749be475fc28800086
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 05:06:18 2010 +0200
Translation update done using Pootle.
commit a0fb4c04b96da4ca82968b355a271614d5e7bde5
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 05:04:19 2010 +0200
Translation update done using Pootle.
commit f7418693d783d1ae694cf392e19e0ff7dfe0d95d
Author: Azhari Harahap <azhari.harahap(a)yahoo.com>
Date: Sun Mar 28 05:03:57 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
js/main_custom_color.js | 28 +++++++++++++
libraries/config.default.php | 3 +-
main.php | 52 ++++++------------------
po/id.po | 24 +++++-----
po/it.po | 31 +++++++-------
themes/darkblue_orange/css/theme_right.css.php | 5 ++
themes/original/css/theme_right.css.php | 5 ++
7 files changed, 80 insertions(+), 68 deletions(-)
create mode 100644 js/main_custom_color.js
diff --git a/js/main_custom_color.js b/js/main_custom_color.js
new file mode 100644
index 0000000..eacc5b7
--- /dev/null
+++ b/js/main_custom_color.js
@@ -0,0 +1,28 @@
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * for main custom color
+ *
+ */
+$(document).ready(function() {
+ $('#li_custom_color').show();
+ // Choosing another id does not work!
+ $('#colorSelector').ColorPicker({
+ color: '#0000ff',
+ onShow: function (colpkr) {
+ $(colpkr).fadeIn(500);
+ return false;
+ },
+ onHide: function (colpkr) {
+ $(colpkr).fadeOut(500);
+ return false;
+ },
+ onChange: function(hsb, hex, rgb) {
+ top.frame_content.document.body.style.backgroundColor = '#' + hex;
+ top.frame_navigation.document.body.style.backgroundColor = '#' + hex;
+ },
+ onSubmit: function(hsb, hex, rgb) {
+ $('#custom_color').val('#' + hex);
+ $('#colorform').submit();
+ }
+ });
+});
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 653fc53..35f603d 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -578,7 +578,8 @@ $cfg['ShowSQL'] = true;
$cfg['AllowUserDropDatabase'] = false;
/**
- * confirm 'DROP TABLE' & 'DROP DATABASE'
+ * confirm some commands that can result in loss of data
+ * (see "need_confirm" in the parser)
*
* @global boolean $cfg['Confirm']
*/
diff --git a/main.php b/main.php
index 8c65bc5..f942b40 100644
--- a/main.php
+++ b/main.php
@@ -14,6 +14,7 @@ require_once './libraries/common.inc.php';
$GLOBALS['js_include'][] = 'jquery/jquery-1.4.2-min.js';
$GLOBALS['js_include'][] = 'colorpicker/js/colorpicker.js';
+$GLOBALS['js_include'][] = 'main_custom_color.js';
// Handles some variables that may have been sent by the calling script
$GLOBALS['db'] = '';
@@ -153,45 +154,18 @@ if ($GLOBALS['cfg']['ThemeManager']) {
echo '<li id="li_select_theme">';
echo $_SESSION['PMA_Theme_Manager']->getHtmlSelectBox();
echo '</li>';
-?>
- <script type="text/javascript">
- //<![CDATA[
- document.write('<li id="li_custom_color">');
- document.write('<?php echo PMA_escapeJsString($strCustomColor) . ': '; ?>');
- document.write('<form name="colorform" id="colorform" method="post" action="index.php" target="_parent">');
- document.write('<?php echo PMA_generate_common_hidden_inputs(); ?>');
- document.write('<input type="hidden" id="custom_color" name="custom_color" value="" />');
- document.write('<input type="submit" name="custom_color_reset" value="<?php echo $strReset; ?>" />');
- document.write('</form>');
- document.write('<div id="colorSelector">');
- document.write('</div>');
- document.write('</li>');
-
- $(document).ready(function() {
- // Choosing another id does not work!
- $('#colorSelector').ColorPicker({
- color: '#0000ff',
- onShow: function (colpkr) {
- $(colpkr).fadeIn(500);
- return false;
- },
- onHide: function (colpkr) {
- $(colpkr).fadeOut(500);
- return false;
- },
- onChange: function(hsb, hex, rgb) {
- top.frame_content.document.body.style.backgroundColor = '#' + hex;
- top.frame_navigation.document.body.style.backgroundColor = '#' + hex;
- },
- onSubmit: function(hsb, hex, rgb) {
- $('#custom_color').val('#' + hex);
- $('#colorform').submit();
- }
- });
- });
- //]]>
- </script>
- <?php
+
+ // see js/main_custom_color.js
+ echo '<li id="li_custom_color" class="hide">';
+ echo PMA_escapeJsString($strCustomColor) . ': ';
+ echo '<form name="colorform" id="colorform" method="post" action="index.php" target="_parent">';
+ echo PMA_generate_common_hidden_inputs();
+ echo '<input type="hidden" id="custom_color" name="custom_color" value="" />';
+ echo '<input type="submit" name="custom_color_reset" value="' . $strReset . '" />';
+ echo '</form>';
+ echo '<div id="colorSelector">';
+ echo '</div>';
+ echo '</li>';
}
echo '<li id="li_select_fontsize">';
echo PMA_Config::getFontsizeForm();
diff --git a/po/id.po b/po/id.po
index fa1e604..6fc979d 100644
--- a/po/id.po
+++ b/po/id.po
@@ -4,7 +4,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-24 04:59+0200\n"
+"PO-Revision-Date: 2010-03-28 13:56+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
"Language: id\n"
@@ -6520,7 +6520,7 @@ msgstr "Pemeliharaan tabel"
#: libraries/messages.inc.php:1455
msgid "Table name"
-msgstr ""
+msgstr "Nama tabel"
#: libraries/messages.inc.php:1456
msgid "Table of contents"
@@ -6674,16 +6674,16 @@ msgstr "Jumlah"
#: libraries/messages.inc.php:1490
#, php-format
msgid "Tracking of %s.%s is activated."
-msgstr ""
+msgstr "Pelacakan dari %s.%s diaktifkan"
#: libraries/messages.inc.php:1491
msgid "Activate now"
-msgstr ""
+msgstr "Aktifkan sekarang"
#: libraries/messages.inc.php:1492
#, php-format
msgid "Activate tracking for %s.%s"
-msgstr ""
+msgstr "Aktifkan pelacakan untuk %s.%s"
#: libraries/messages.inc.php:1493
msgid "Comment out these two lines if you do not need them."
@@ -6726,32 +6726,32 @@ msgstr "Nonaktifkan pelacakan untuk %s.%s"
#: libraries/messages.inc.php:1502
#, php-format
msgid "Export as %s"
-msgstr ""
+msgstr "Ekspor sebagai %s"
#: libraries/messages.inc.php:1503
msgid "Tracking is active."
-msgstr ""
+msgstr "Pelacakan aktif"
#: libraries/messages.inc.php:1504
msgid "Tracking is not active."
-msgstr ""
+msgstr "Pelacakan tidak aktif."
#: libraries/messages.inc.php:1505
msgid "Tracking Mechanism"
-msgstr ""
+msgstr "Mekanisme pelacakan"
#: libraries/messages.inc.php:1506
msgid "Close"
-msgstr ""
+msgstr "Tutup"
#: libraries/messages.inc.php:1507
#, php-format
msgid "Tracking report for table `%s`"
-msgstr ""
+msgstr "Laporan pelacakan untuk table '%s'"
#: libraries/messages.inc.php:1508
msgid "Tracking report"
-msgstr ""
+msgstr "Laporan pelacakan"
#: libraries/messages.inc.php:1509
#, php-format
diff --git a/po/it.po b/po/it.po
index 4d74005..36cf40a 100644
--- a/po/it.po
+++ b/po/it.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:16+0100\n"
-"Last-Translator: Automatically generated\n"
+"PO-Revision-Date: 2010-03-29 00:26+0200\n"
+"Last-Translator: <rebeluca(a)gmail.com>\n"
"Language-Team: italian <it(a)li.org>\n"
+"Language: it\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
@@ -35,10 +37,9 @@ 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 "Spediti"
+msgstr "en"
#. l10n: Language to use for MySQL 5.0 documentation
#: libraries/common.lib.php:415
@@ -347,7 +348,7 @@ msgstr "Qualsiasi utente"
#: libraries/messages.inc.php:68
msgid "Apply Selected Changes"
-msgstr ""
+msgstr "Applica i cambiamenti selezionati"
#: libraries/messages.inc.php:69
msgid ""
@@ -446,7 +447,7 @@ msgstr "ID del server"
#: libraries/messages.inc.php:93
msgid "BLOB Repository"
-msgstr ""
+msgstr "Repository BLOB"
#: libraries/messages.inc.php:94
msgid "Damaged"
@@ -456,9 +457,9 @@ msgstr "Danneggiato"
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
+"Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %s?"
#: libraries/messages.inc.php:96
-#, fuzzy
msgctxt "$strBLOBRepositoryDisabled"
msgid "Disabled"
msgstr "Disabilitato"
@@ -469,10 +470,9 @@ msgstr "Disabilita"
#: libraries/messages.inc.php:98
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr ""
+msgstr "Stai per DISABILITARE una repository BLOB!"
#: libraries/messages.inc.php:99
-#, fuzzy
msgctxt "$strBLOBRepositoryEnabled"
msgid "Enabled"
msgstr "Abilitato"
@@ -483,17 +483,16 @@ msgstr "Abilita"
#: libraries/messages.inc.php:101
msgid "Remove BLOB Repository Reference"
-msgstr ""
+msgstr "Rimuovi le referenze al REPOSITORY BLOB"
#: libraries/messages.inc.php:102
-#, fuzzy
msgctxt "$strBLOBRepositoryRepair"
msgid "Repair"
msgstr "Ripara"
#: libraries/messages.inc.php:103
msgid "Upload to BLOB repository"
-msgstr ""
+msgstr "Carica nella repository BLOB"
#: libraries/messages.inc.php:104
msgid "Let every user access this bookmark"
@@ -518,7 +517,7 @@ msgstr "Query SQL aggiunte ai preferiti"
#: libraries/messages.inc.php:109
msgid "Replace existing bookmark of same name"
-msgstr "Sostituzione dei segnalibri esistenti con lo stesso nome"
+msgstr "Sostituisci segnalibro esistente se con lo stesso nome"
#: libraries/messages.inc.php:110
msgid "Bookmark this SQL query"
@@ -538,7 +537,7 @@ msgstr "Naviga tra i valori DISTINCT"
#: libraries/messages.inc.php:114
msgid "Browse foreign values"
-msgstr "Sfoglia le opzioni straniere"
+msgstr "Naviga tra i valori esterni"
#: libraries/messages.inc.php:115
msgid "Buffer Pool Activity"
@@ -578,7 +577,7 @@ msgstr "Pagine occupate"
#: libraries/messages.inc.php:124
msgid "\"bzipped\""
-msgstr "\"compresso con bzip2\""
+msgstr "\"compresso con bzip\""
#: libraries/messages.inc.php:126
msgid "Calendar"
diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php
index b3641b3..7fafa15 100644
--- a/themes/darkblue_orange/css/theme_right.css.php
+++ b/themes/darkblue_orange/css/theme_right.css.php
@@ -1227,6 +1227,11 @@ code.sql {
margin-top: 0;
}
+/* for elements that should be revealed only via js */
+.hide {
+ display: none;
+}
+
#li_select_server {
padding-bottom: 0.3em;
border-bottom: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php
index 0a5ae35..b550fab 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -1178,6 +1178,11 @@ code.sql {
margin-top: 0;
}
+/* for elements that should be revealed only via js */
+.hide {
+ display: none;
+}
+
#li_select_server {
padding-bottom: 0.3em;
border-bottom: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-272-g775d2ce
by Marc Delisle 28 Mar '10
by Marc Delisle 28 Mar '10
28 Mar '10
The branch, master has been updated
via 775d2ce26417a2c52b42f719a0dbccc3e63e468b (commit)
from 6ff307b546471fd556cdfe3ac924a89217134e5d (commit)
- Log -----------------------------------------------------------------
commit 775d2ce26417a2c52b42f719a0dbccc3e63e468b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Mar 28 07:26:05 2010 -0400
clarify the effect of the Confirm directive
-----------------------------------------------------------------------
Summary of changes:
libraries/config.default.php | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 653fc53..35f603d 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -578,7 +578,8 @@ $cfg['ShowSQL'] = true;
$cfg['AllowUserDropDatabase'] = false;
/**
- * confirm 'DROP TABLE' & 'DROP DATABASE'
+ * confirm some commands that can result in loss of data
+ * (see "need_confirm" in the parser)
*
* @global boolean $cfg['Confirm']
*/
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-271-g6ff307b
by Marc Delisle 27 Mar '10
by Marc Delisle 27 Mar '10
27 Mar '10
The branch, master has been updated
via 6ff307b546471fd556cdfe3ac924a89217134e5d (commit)
from bbad02a5a1c78b56210c6f9cd85261106ff29aef (commit)
- Log -----------------------------------------------------------------
commit 6ff307b546471fd556cdfe3ac924a89217134e5d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Mar 27 15:01:13 2010 -0400
remove inline js from main.php
-----------------------------------------------------------------------
Summary of changes:
js/main_custom_color.js | 28 +++++++++++++
main.php | 52 ++++++------------------
themes/darkblue_orange/css/theme_right.css.php | 5 ++
themes/original/css/theme_right.css.php | 5 ++
4 files changed, 51 insertions(+), 39 deletions(-)
create mode 100644 js/main_custom_color.js
diff --git a/js/main_custom_color.js b/js/main_custom_color.js
new file mode 100644
index 0000000..eacc5b7
--- /dev/null
+++ b/js/main_custom_color.js
@@ -0,0 +1,28 @@
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * for main custom color
+ *
+ */
+$(document).ready(function() {
+ $('#li_custom_color').show();
+ // Choosing another id does not work!
+ $('#colorSelector').ColorPicker({
+ color: '#0000ff',
+ onShow: function (colpkr) {
+ $(colpkr).fadeIn(500);
+ return false;
+ },
+ onHide: function (colpkr) {
+ $(colpkr).fadeOut(500);
+ return false;
+ },
+ onChange: function(hsb, hex, rgb) {
+ top.frame_content.document.body.style.backgroundColor = '#' + hex;
+ top.frame_navigation.document.body.style.backgroundColor = '#' + hex;
+ },
+ onSubmit: function(hsb, hex, rgb) {
+ $('#custom_color').val('#' + hex);
+ $('#colorform').submit();
+ }
+ });
+});
diff --git a/main.php b/main.php
index 8c65bc5..f942b40 100644
--- a/main.php
+++ b/main.php
@@ -14,6 +14,7 @@ require_once './libraries/common.inc.php';
$GLOBALS['js_include'][] = 'jquery/jquery-1.4.2-min.js';
$GLOBALS['js_include'][] = 'colorpicker/js/colorpicker.js';
+$GLOBALS['js_include'][] = 'main_custom_color.js';
// Handles some variables that may have been sent by the calling script
$GLOBALS['db'] = '';
@@ -153,45 +154,18 @@ if ($GLOBALS['cfg']['ThemeManager']) {
echo '<li id="li_select_theme">';
echo $_SESSION['PMA_Theme_Manager']->getHtmlSelectBox();
echo '</li>';
-?>
- <script type="text/javascript">
- //<![CDATA[
- document.write('<li id="li_custom_color">');
- document.write('<?php echo PMA_escapeJsString($strCustomColor) . ': '; ?>');
- document.write('<form name="colorform" id="colorform" method="post" action="index.php" target="_parent">');
- document.write('<?php echo PMA_generate_common_hidden_inputs(); ?>');
- document.write('<input type="hidden" id="custom_color" name="custom_color" value="" />');
- document.write('<input type="submit" name="custom_color_reset" value="<?php echo $strReset; ?>" />');
- document.write('</form>');
- document.write('<div id="colorSelector">');
- document.write('</div>');
- document.write('</li>');
-
- $(document).ready(function() {
- // Choosing another id does not work!
- $('#colorSelector').ColorPicker({
- color: '#0000ff',
- onShow: function (colpkr) {
- $(colpkr).fadeIn(500);
- return false;
- },
- onHide: function (colpkr) {
- $(colpkr).fadeOut(500);
- return false;
- },
- onChange: function(hsb, hex, rgb) {
- top.frame_content.document.body.style.backgroundColor = '#' + hex;
- top.frame_navigation.document.body.style.backgroundColor = '#' + hex;
- },
- onSubmit: function(hsb, hex, rgb) {
- $('#custom_color').val('#' + hex);
- $('#colorform').submit();
- }
- });
- });
- //]]>
- </script>
- <?php
+
+ // see js/main_custom_color.js
+ echo '<li id="li_custom_color" class="hide">';
+ echo PMA_escapeJsString($strCustomColor) . ': ';
+ echo '<form name="colorform" id="colorform" method="post" action="index.php" target="_parent">';
+ echo PMA_generate_common_hidden_inputs();
+ echo '<input type="hidden" id="custom_color" name="custom_color" value="" />';
+ echo '<input type="submit" name="custom_color_reset" value="' . $strReset . '" />';
+ echo '</form>';
+ echo '<div id="colorSelector">';
+ echo '</div>';
+ echo '</li>';
}
echo '<li id="li_select_fontsize">';
echo PMA_Config::getFontsizeForm();
diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php
index b3641b3..7fafa15 100644
--- a/themes/darkblue_orange/css/theme_right.css.php
+++ b/themes/darkblue_orange/css/theme_right.css.php
@@ -1227,6 +1227,11 @@ code.sql {
margin-top: 0;
}
+/* for elements that should be revealed only via js */
+.hide {
+ display: none;
+}
+
#li_select_server {
padding-bottom: 0.3em;
border-bottom: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php
index 0a5ae35..b550fab 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -1178,6 +1178,11 @@ code.sql {
margin-top: 0;
}
+/* for elements that should be revealed only via js */
+.hide {
+ display: none;
+}
+
#li_select_server {
padding-bottom: 0.3em;
border-bottom: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
hooks/post-receive
--
phpMyAdmin
1
0