Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-266-geec80b2
by Marc Delisle
The branch, master has been updated
via eec80b2a1fd7ef5283b2e8ed4665d02d007b4414 (commit)
from fcaedaf75bf6560d2c899aafa912320c52ff4505 (commit)
- Log -----------------------------------------------------------------
commit eec80b2a1fd7ef5283b2e8ed4665d02d007b4414
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Apr 30 14:56:02 2011 -0400
Bug #3291923, Insert Ajax form does not generate default values - partial fix for text fields
-----------------------------------------------------------------------
Summary of changes:
js/tbl_change.js | 2 +-
tbl_change.php | 3 +++
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/js/tbl_change.js b/js/tbl_change.js
index 896700b..8fc7eca 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -387,7 +387,7 @@ $(document).ready(function() {
if ($this_element.is('.textfield')) {
// do not remove the 'value' attribute for ENUM columns
if ($this_element.closest('tr').find('span.column_type').html() != 'enum') {
- $this_element.attr('value', '');
+ $this_element.attr('value', $this_element.closest('tr').find('span.default_value').html());
}
$this_element
.unbind('change')
diff --git a/tbl_change.php b/tbl_change.php
index 1b6a2b6..22584db 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -694,6 +694,9 @@ foreach ($rows as $row_id => $vrow) {
// HTML attribute
echo ' <td>' . "\n";
+ // Will be used by js/tbl_change.js to set the default value
+ // for the "Continue insertion" feature
+ echo '<span class="default_value hide">' . $special_chars . '</span>';
if ($foreignData['foreign_link'] == true) {
echo $backup_field . "\n";
?>
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-265-gfcaedaf
by Marc Delisle
The branch, master has been updated
via fcaedaf75bf6560d2c899aafa912320c52ff4505 (commit)
from 70100c8044d719300a87ee76807bf4c19d8517f5 (commit)
- Log -----------------------------------------------------------------
commit fcaedaf75bf6560d2c899aafa912320c52ff4505
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Apr 30 11:05:47 2011 -0400
Invalid value class did not work on input fields for pmahomme
-----------------------------------------------------------------------
Summary of changes:
themes/pmahomme/css/theme_right.css.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index 4d18832..25692d2 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -1673,8 +1673,10 @@ table#serverconnection_trg_local {
/**
* Validation error message styles
*/
-.invalid_value
-{background:#F00;}
+input[type=text].invalid_value,
+.invalid_value {
+ background:#F00;
+}
/**
* Ajax notification styling
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-264-g70100c8
by Marc Delisle
The branch, master has been updated
via 70100c8044d719300a87ee76807bf4c19d8517f5 (commit)
from b27672866683d4a1b3f0d82278804165b0d63466 (commit)
- Log -----------------------------------------------------------------
commit 70100c8044d719300a87ee76807bf4c19d8517f5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Apr 30 10:57:30 2011 -0400
Remove invalid_value class before validation
-----------------------------------------------------------------------
Summary of changes:
js/tbl_change.js | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/js/tbl_change.js b/js/tbl_change.js
index a6d4be9..896700b 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -215,6 +215,7 @@ function verificationsAfterFieldChange(urlField, multi_edit, theType){
}
//validate for integer type
if(theType.substring(0,3) == "int"){
+ $this_input.removeClass("invalid_value");
if(isNaN($this_input.val())){
$this_input.addClass("invalid_value");
return false;
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-263-gb276728
by Marc Delisle
The branch, master has been updated
via b27672866683d4a1b3f0d82278804165b0d63466 (commit)
from 55693163892d4cbae2a7b8abb4c8445e0fb7b6b1 (commit)
- Log -----------------------------------------------------------------
commit b27672866683d4a1b3f0d82278804165b0d63466
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Apr 30 10:54:03 2011 -0400
Undefined variable
-----------------------------------------------------------------------
Summary of changes:
js/tbl_change.js | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/js/tbl_change.js b/js/tbl_change.js
index 2d33884..a6d4be9 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -165,7 +165,7 @@ function verificationsAfterFieldChange(urlField, multi_edit, theType){
// Unchecks the Ignore checkbox for the current row
$("input[name='insert_ignore_" + multi_edit + "']").attr({'checked': false});
- $this_input = $("input[name='fields[multi_edit][" + multi_edit + "][" + urlField + "]']");
+ var $this_input = $("input[name='fields[multi_edit][" + multi_edit + "][" + urlField + "]']");
// Does this field come from datepicker?
if ($this_input.data('comes_from') == 'datepicker') {
@@ -214,11 +214,10 @@ function verificationsAfterFieldChange(urlField, multi_edit, theType){
}
}
//validate for integer type
- if(theType.substring(0,3)=="int"){
-
- if(isNaN(dt.value)){
- dt.className="invalid_value";
- return false;
+ if(theType.substring(0,3) == "int"){
+ if(isNaN($this_input.val())){
+ $this_input.addClass("invalid_value");
+ return false;
}
}
}
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-262-g5569316
by Herman van Rink
The branch, master has been updated
via 55693163892d4cbae2a7b8abb4c8445e0fb7b6b1 (commit)
from 4cb7e7fd9197716a0a15ccab5f2fb6f5ab0611d0 (commit)
- Log -----------------------------------------------------------------
commit 55693163892d4cbae2a7b8abb4c8445e0fb7b6b1
Author: Herman van Rink <rink(a)initfour.nl>
Date: Fri Apr 29 22:06:48 2011 +0200
bug #3285929 [privileges] Don't fail silently on missing priviledge to execute REVOKE ALL PRIVILEGES
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
server_privileges.php | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 3261e05..5a15934 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -154,6 +154,7 @@
- bug #3134495 [synchronization] Data containing single quotes prevents sync,
thanks to jviewer
- Remove the custom color picker feature
+- bug #3285929 [privileges] Don't fail silently on missing priviledge to execute REVOKE ALL PRIVILEGES
3.3.11.0 (not yet released)
diff --git a/server_privileges.php b/server_privileges.php
index 09104e1..308739c 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1187,8 +1187,9 @@ if (!empty($update_privs)) {
}
$sql_query2 .= ';';
}
- if (! PMA_DBI_try_query($sql_query0)) {
- // this query may fail, but this does not matter :o)
+ if (! PMA_DBI_query($sql_query0)) {
+ // This might fail when the executing user does not have ALL PRIVILEGES himself.
+ // See https://sourceforge.net/tracker/index.php?func=detail&aid=3285929&group_id=…
$sql_query0 = '';
}
if (isset($sql_query1) && !PMA_DBI_try_query($sql_query1)) {
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-261-g4cb7e7f
by Michal Čihař
The branch, master has been updated
via 4cb7e7fd9197716a0a15ccab5f2fb6f5ab0611d0 (commit)
from 5f98fcf412c8e0eb7265d37158c698ed8e81876b (commit)
- Log -----------------------------------------------------------------
commit 4cb7e7fd9197716a0a15ccab5f2fb6f5ab0611d0
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:14:15 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ja.po | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/po/ja.po b/po/ja.po
index 54dd023..5b8d8f3 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2011-04-29 11:05+0200\n"
+"PO-Revision-Date: 2011-04-29 11:14+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
"Language: ja\n"
@@ -2241,7 +2241,7 @@ msgstr "最大 %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
-msgstr ""
+msgstr "この項目は無効になっています。これは設定に適用されていません。"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-260-g5f98fcf
by Michal Čihař
The branch, master has been updated
via 5f98fcf412c8e0eb7265d37158c698ed8e81876b (commit)
via 484f7e17ef177284b82cab2560e69b4357094db1 (commit)
via 31babfd63690d8aea049e72a12f3e66ab5d5ccd4 (commit)
via b6d170bf839e8f0778bf3ad37c7a5d6cc299c56e (commit)
via 7e43bb648af445278a93eb0d73eea176c5fa04f8 (commit)
via 49e2ef19a454a494bcf4eabb7040bc26b6aca212 (commit)
via 38df6071b56da75ce9d7e6650adfe9318fabef4a (commit)
via 7f4e5c5089266fdaea7c03953f2a3fdfa431aff7 (commit)
via 29fb6a9c3a76f6eb0b0ff46326a580a5801c67e3 (commit)
via 27be2ea5dab76d6cecca4731b58e2820a1e9d2f6 (commit)
via cd8c47862e8880f9cfa5e4308437ac7ba942391e (commit)
via a2ae26a13623db3f0964d97ee829f5b4aade2977 (commit)
via 926a76da0c96c20cdf9c9a19362f48e718d4a6db (commit)
from c44b2faaf42f0281b3fde0a813cc4c37ea945192 (commit)
- Log -----------------------------------------------------------------
commit 5f98fcf412c8e0eb7265d37158c698ed8e81876b
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:05:37 2011 +0200
Translation update done using Pootle.
commit 484f7e17ef177284b82cab2560e69b4357094db1
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:04:55 2011 +0200
Translation update done using Pootle.
commit 31babfd63690d8aea049e72a12f3e66ab5d5ccd4
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:02:50 2011 +0200
Translation update done using Pootle.
commit b6d170bf839e8f0778bf3ad37c7a5d6cc299c56e
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:02:07 2011 +0200
Translation update done using Pootle.
commit 7e43bb648af445278a93eb0d73eea176c5fa04f8
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:01:32 2011 +0200
Translation update done using Pootle.
commit 49e2ef19a454a494bcf4eabb7040bc26b6aca212
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 11:01:19 2011 +0200
Translation update done using Pootle.
commit 38df6071b56da75ce9d7e6650adfe9318fabef4a
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:58:32 2011 +0200
Translation update done using Pootle.
commit 7f4e5c5089266fdaea7c03953f2a3fdfa431aff7
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:57:44 2011 +0200
Translation update done using Pootle.
commit 29fb6a9c3a76f6eb0b0ff46326a580a5801c67e3
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:56:55 2011 +0200
Translation update done using Pootle.
commit 27be2ea5dab76d6cecca4731b58e2820a1e9d2f6
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:56:16 2011 +0200
Translation update done using Pootle.
commit cd8c47862e8880f9cfa5e4308437ac7ba942391e
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:53:12 2011 +0200
Translation update done using Pootle.
commit a2ae26a13623db3f0964d97ee829f5b4aade2977
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:52:33 2011 +0200
Translation update done using Pootle.
commit 926a76da0c96c20cdf9c9a19362f48e718d4a6db
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:42:02 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ja.po | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/po/ja.po b/po/ja.po
index 765a842..54dd023 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2011-04-29 10:36+0200\n"
+"PO-Revision-Date: 2011-04-29 11:05+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
"Language: ja\n"
@@ -1682,7 +1682,7 @@ msgstr "クッキーを有効にしてください"
#: libraries/auth/signon.auth.lib.php:206
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
-msgstr ""
+msgstr "パスワードなしログインは設定 (AllowNoPassword) によって禁止されています。"
#: libraries/auth/cookie.auth.lib.php:647
#: libraries/auth/signon.auth.lib.php:210
@@ -2174,29 +2174,29 @@ msgstr "上のどちらでもない"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
msgid "Not a positive number"
-msgstr ""
+msgstr "正の値ではありません"
#: libraries/config/FormDisplay.class.php:84
#: libraries/config/validate.lib.php:435
msgid "Not a non-negative number"
-msgstr ""
+msgstr "負の値ではありません"
#: libraries/config/FormDisplay.class.php:85
#: libraries/config/validate.lib.php:409
msgid "Not a valid port number"
-msgstr ""
+msgstr "有効なポート番号ではありません"
#: libraries/config/FormDisplay.class.php:86
#: libraries/config/FormDisplay.class.php:574
#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450
msgid "Incorrect value"
-msgstr ""
+msgstr "不正な値です"
#: libraries/config/FormDisplay.class.php:87
#: libraries/config/validate.lib.php:464
#, php-format
msgid "Value must be equal or lower than %s"
-msgstr ""
+msgstr "値は %s 以下でなければいけません"
#: libraries/config/FormDisplay.class.php:538
#, php-format
@@ -7131,11 +7131,11 @@ msgstr "ファイルから読み込む"
#: prefs_manage.php:245
msgid "Import from browser's storage"
-msgstr "ブラウザに保存されている設定を読み込む"
+msgstr "ブラウザ (Web Storage) から設定を読み込む"
#: prefs_manage.php:248
msgid "Settings will be imported from your browser's local storage."
-msgstr "設定をブラウザから読み込みます。ローカルの保存場所ですがクッキーではありません。"
+msgstr "設定をブラウザ (Web Storage) から読み込みます。ローカルの保存場所ですがクッキーではありません。"
#: prefs_manage.php:254
msgid "You have no saved settings!"
@@ -7143,7 +7143,7 @@ msgstr "保存されている設定はありません!"
#: prefs_manage.php:258 prefs_manage.php:312
msgid "This feature is not supported by your web browser"
-msgstr ""
+msgstr "この機能はブラウザよってサポートされていません。"
#: prefs_manage.php:263
msgid "Merge with current configuration"
@@ -7158,11 +7158,11 @@ msgstr "%sセットアップスクリプト%sを使用するなどして config.
#: prefs_manage.php:302
msgid "Save to browser's storage"
-msgstr "ブラウザに保存する(クッキーでない別の保存場所)"
+msgstr "ブラウザ (Web Storage) に保存する"
#: prefs_manage.php:306
msgid "Settings will be saved in your browser's local storage."
-msgstr "設定がブラウザに保存されます。ローカルの保存場所ですがクッキーではありません。"
+msgstr "設定がブラウザ (Web Storage) に保存されます。ローカルの保存場所ですがクッキーではありません。"
#: prefs_manage.php:308
msgid "Existing settings will be overwritten!"
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-247-gc44b2fa
by Michal Čihař
The branch, master has been updated
via c44b2faaf42f0281b3fde0a813cc4c37ea945192 (commit)
via 06698e02ec4e245d3929f97370bb3cb8cbf4a3c2 (commit)
via bea96cd9161e6d6c9e1976be0dc3b3af76add913 (commit)
via 48bd6c7de652bab5c9af4a5a100e0ecbbaa5aea7 (commit)
via 5d69b9d735cd1e0a1689b7e799bcd6c5b19f3386 (commit)
via 4226ff41c03411fe2eb174b65ca1c0620274879f (commit)
via ef529718fd6bece8cc97c3ed6c4005596def9d9e (commit)
via 3f7f261eeedd104c5d61b4992f4f9418f07e8cbf (commit)
via bfc9911e0b20f174755d013d6e7eb6e1efc2c579 (commit)
via bc4029b84fea3da7bbf888b5bc20a8bbb21b4bbb (commit)
via 20891da8e51b51c85339fc698e7e695e766112a4 (commit)
via 7de94e3099188ca9482222e0fde34e6da7c88e61 (commit)
via da014f5bd84164ffeb05b6d318dfdb008764e299 (commit)
via 676124662ddf668bc8b2c6be5511021e90055500 (commit)
via f024404e0b9d0b47633e949d76638963d417f84f (commit)
via 2c6728cb6bd2de730c0aa87a7e1335a19d32d3a9 (commit)
via 825f45111213fd5286c3c9643f145a2dc3aad4a2 (commit)
via 80210b4228268544c1cc85c869571cd16e84a877 (commit)
via da81027f012bee3e220d7725259956a008926764 (commit)
via bb6095d1155b92b521f7744d81b48f141bb8f3a7 (commit)
via 2e0c391c245dc1a81b0fcd84ae3d0a55308a77f3 (commit)
from 79934bb075aada44a1c976db479be613a6240803 (commit)
- Log -----------------------------------------------------------------
commit c44b2faaf42f0281b3fde0a813cc4c37ea945192
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:36:30 2011 +0200
Translation update done using Pootle.
commit 06698e02ec4e245d3929f97370bb3cb8cbf4a3c2
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:34:34 2011 +0200
Translation update done using Pootle.
commit bea96cd9161e6d6c9e1976be0dc3b3af76add913
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:34:18 2011 +0200
Translation update done using Pootle.
commit 48bd6c7de652bab5c9af4a5a100e0ecbbaa5aea7
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:33:50 2011 +0200
Translation update done using Pootle.
commit 5d69b9d735cd1e0a1689b7e799bcd6c5b19f3386
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:33:40 2011 +0200
Translation update done using Pootle.
commit 4226ff41c03411fe2eb174b65ca1c0620274879f
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:32:44 2011 +0200
Translation update done using Pootle.
commit ef529718fd6bece8cc97c3ed6c4005596def9d9e
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:32:29 2011 +0200
Translation update done using Pootle.
commit 3f7f261eeedd104c5d61b4992f4f9418f07e8cbf
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:32:08 2011 +0200
Translation update done using Pootle.
commit bfc9911e0b20f174755d013d6e7eb6e1efc2c579
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:31:48 2011 +0200
Translation update done using Pootle.
commit bc4029b84fea3da7bbf888b5bc20a8bbb21b4bbb
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:31:07 2011 +0200
Translation update done using Pootle.
commit 20891da8e51b51c85339fc698e7e695e766112a4
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:29:16 2011 +0200
Translation update done using Pootle.
commit 7de94e3099188ca9482222e0fde34e6da7c88e61
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:28:36 2011 +0200
Translation update done using Pootle.
commit da014f5bd84164ffeb05b6d318dfdb008764e299
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:27:13 2011 +0200
Translation update done using Pootle.
commit 676124662ddf668bc8b2c6be5511021e90055500
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:26:21 2011 +0200
Translation update done using Pootle.
commit f024404e0b9d0b47633e949d76638963d417f84f
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:26:08 2011 +0200
Translation update done using Pootle.
commit 2c6728cb6bd2de730c0aa87a7e1335a19d32d3a9
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:25:10 2011 +0200
Translation update done using Pootle.
commit 825f45111213fd5286c3c9643f145a2dc3aad4a2
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:24:47 2011 +0200
Translation update done using Pootle.
commit 80210b4228268544c1cc85c869571cd16e84a877
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:24:19 2011 +0200
Translation update done using Pootle.
commit da81027f012bee3e220d7725259956a008926764
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:23:53 2011 +0200
Translation update done using Pootle.
commit bb6095d1155b92b521f7744d81b48f141bb8f3a7
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:23:25 2011 +0200
Translation update done using Pootle.
commit 2e0c391c245dc1a81b0fcd84ae3d0a55308a77f3
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Fri Apr 29 10:22:52 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ja.po | 52 ++++++++++++++++++++++++++++------------------------
1 files changed, 28 insertions(+), 24 deletions(-)
diff --git a/po/ja.po b/po/ja.po
index 22a8896..765a842 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2011-04-28 12:14+0200\n"
+"PO-Revision-Date: 2011-04-29 10:36+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
"Language: ja\n"
@@ -660,7 +660,7 @@ msgstr "すべてのチェックを外す"
#: db_structure.php:495
msgid "Check tables having overhead"
-msgstr "オーバーヘッドのあるテーブルを確認してください"
+msgstr "オーバーヘッドのあるテーブルを確認する"
#: db_structure.php:503 libraries/config/messages.inc.php:161
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
@@ -3090,7 +3090,7 @@ msgstr "空の行はインポートしない"
#: libraries/config/messages.inc.php:253
msgid "Import currencies ($5.00 to 5.00)"
-msgstr "金額は単位を取り除く(例えば $5.00 を 5.00)"
+msgstr "金額は単位を取り除く(例えば、$5.00 を 5.00)"
#: libraries/config/messages.inc.php:254
msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -3107,7 +3107,7 @@ msgstr "部分インポート(クエリのスキップ)"
#: libraries/config/messages.inc.php:258
msgid "Do not use AUTO_INCREMENT for zero values"
-msgstr "値がゼロのものに対してAUTO_INCREMENTを使用しない"
+msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない"
#: libraries/config/messages.inc.php:261
msgid "Initial state for sliders"
@@ -3291,7 +3291,7 @@ msgstr "SQL クエリが表示されているときに使用される文字の
#: libraries/config/messages.inc.php:301
msgid "Maximum displayed SQL length"
-msgstr "表示できるSQL文の最大の長さ"
+msgstr "表示できる SQL 文の最大の長さ"
#: libraries/config/messages.inc.php:302 libraries/config/messages.inc.php:307
#: libraries/config/messages.inc.php:335
@@ -5497,8 +5497,8 @@ msgid ""
"Dump TIMESTAMP columns in UTC <i>(enables TIMESTAMP columns to be dumped and "
"reloaded between servers in different time zones)</i>"
msgstr ""
-"TIMESTAMP "
-"のカラムをUTC(協定世界時)でダンプする<i>(ダンプするサーバと読み込ませるサーバのタイムゾーンが異なる場合に有効です。)</i>"
+"TIMESTAMP のカラムを "
+"UTC(協定世界時)でダンプする<i>(ダンプするサーバと読み込ませるサーバのタイムゾーンが異なる場合に有効です。)</i>"
#: libraries/export/sql.php:209 libraries/export/xml.php:34
msgid "Procedures"
@@ -5672,7 +5672,7 @@ msgstr "パーセントは適切な小数に変換する<i>(例えば、12.00%
#: libraries/import/ods.php:29
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
-msgstr "金額は単位を取り除く<i>(例えば $5.00 を 5.00)</i>"
+msgstr "金額は単位を取り除く<i>(例えば、$5.00 を 5.00)</i>"
#: libraries/import/sql.php:32
msgid "SQL compatibility mode:"
@@ -5680,7 +5680,7 @@ msgstr "SQL互換モード:"
#: libraries/import/sql.php:42
msgid "Do not use <code>AUTO_INCREMENT</code> for zero values"
-msgstr "値がゼロのものに対して<code>AUTO_INCREMENT</code>を使用しない"
+msgstr "値がゼロのものに対して <code>AUTO_INCREMENT</code> を使用しない"
#: libraries/import/xml.php:74 libraries/import/xml.php:130
msgid ""
@@ -6296,7 +6296,7 @@ msgstr "リモートサーバ"
#: libraries/server_synchronize.lib.php:1344
msgid "Difference"
-msgstr ""
+msgstr "差分"
#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117
msgid "Target database"
@@ -8679,11 +8679,11 @@ msgstr "レプリケーションステータス"
#: server_synchronize.php:92
msgid "Could not connect to the source"
-msgstr ""
+msgstr "元のデータベースに接続できませんでした。"
#: server_synchronize.php:95
msgid "Could not connect to the target"
-msgstr ""
+msgstr "対象先のデータベースに接続できませんでした。"
#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76
#: tbl_get_field.php:19
@@ -8705,11 +8705,11 @@ msgstr ""
#: server_synchronize.php:423 server_synchronize.php:866
msgid "Structure Difference"
-msgstr ""
+msgstr "構造の差分"
#: server_synchronize.php:424 server_synchronize.php:867
msgid "Data Difference"
-msgstr ""
+msgstr "データの差分"
#: server_synchronize.php:429 server_synchronize.php:872
msgid "Add column(s)"
@@ -8753,19 +8753,19 @@ msgstr "データベースの同期"
#: server_synchronize.php:463
msgid "Selected target tables have been synchronized with source tables."
-msgstr ""
+msgstr "選択された対象先のテーブルは、元のテーブルと同期されています。"
#: server_synchronize.php:941
msgid "Target database has been synchronized with source database"
-msgstr ""
+msgstr "対象先のデータベースが、元のデータベースと同期されています。"
#: server_synchronize.php:1002
msgid "The following queries have been executed:"
-msgstr ""
+msgstr "次のクエリが実行されます:"
#: server_synchronize.php:1130
msgid "Enter manually"
-msgstr ""
+msgstr "手動で入力する"
#: server_synchronize.php:1138
#| msgid "max. concurrent connections"
@@ -8816,10 +8816,9 @@ msgid ""
"level directory as described in [a(a)Documentation.html#setup_script]"
"documentation[/a]. Otherwise you will be only able to download or display it."
msgstr ""
-"[a@../Documentation.html#setup_script]ドキュメント[/a]で説明されるように"
-"phpMyAdminのトップレベルディレクトリにウェブサーバで書き込める[em]config[/em]"
-"フォルダを作成してください。そうしない場合は、ダウンロードするか表示するかの"
-"みになります。"
+"[a@../Documentation.html#setup_script]ドキュメント[/a]で説明されるように phpMyAdmin "
+"のトップレベルディレクトリにウェブサーバで書き込める [em]config[/em] "
+"フォルダを作成してください。そうしない場合は、ダウンロードするか表示するかのみになります。"
#: setup/frames/index.inc.php:57
msgid ""
@@ -8864,7 +8863,7 @@ msgstr "デフォルト言語"
#: setup/frames/index.inc.php:183
msgid "let the user choose"
-msgstr ""
+msgstr "ユーザに選択させる"
#: setup/frames/index.inc.php:194
msgid "- none -"
@@ -8967,6 +8966,8 @@ msgid ""
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
+"blowfish 暗号のパスフレーズなしで cookie 認証が有効にされましたので、パスフレーズを自動的に生成しました。パスフレーズはクッキーを暗号化"
+"するために使用されますが、管理者がそれを覚えておく必要はありません。"
#: setup/lib/index.lib.php:253
#, php-format
@@ -9028,6 +9029,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
+"これが必要であると思われる場合、追加の保護設定(%sホスト認証%s設定および%s信頼されたプロキシのリスト%"
+"s)を使用してください。しかしながら、ユーザー数千人もいるような ISP に所属している、使用している、接続されている場合には、IP "
+"アドレスを基にした保護は信頼性が高いとはいえません。"
#: setup/lib/index.lib.php:268
#, php-format
@@ -9063,7 +9067,7 @@ msgstr "パフォーマンス上の理由から mysqli の使用する必要が
#: setup/lib/index.lib.php:331
msgid "You allow for connecting to the server without a password."
-msgstr ""
+msgstr "パスワードなしでサーバへの接続が許されています。"
#: setup/lib/index.lib.php:351
msgid "Key is too short, it should have at least 8 characters."
hooks/post-receive
--
phpMyAdmin
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. b98cdeab252d8bd471ed22cc557bbbe8ab5fdccc
by Michal Čihař
The branch, master has been updated
via b98cdeab252d8bd471ed22cc557bbbe8ab5fdccc (commit)
via 869e74bf63e3cdf305b9668c03632267ceecb1ba (commit)
via 981e86e4a807749718bdf8267bb9da9c9ef3518e (commit)
via d4a3d9572ee91b6b8f66be1a8b530f3068a6bcfe (commit)
via 97b9f1ce751466a6c78a367b58bfdeff563b2a70 (commit)
via 03092b60b83202debb29a3b6af0f7f772739da4a (commit)
via 0c5c1065ee28ba288f50f044a9b2b1793fa9707f (commit)
via f856dfa6d5020623d1814198ca8bcc481e686de1 (commit)
via 0717314dc07cff2de7641e0ac3d3fdcb84c32c5e (commit)
via eec8b032577c2646fd5aa9d883b765d9772ca64d (commit)
via de3ac65beaaa7a0043fd7f00301383a19c35cc74 (commit)
via f3360ac9c01e333d3797230020a65bb3d62182bf (commit)
via 243a9772e710fc3f6ff2f26e96a2f410ccc422a5 (commit)
from 1acbcb7edb2ff95eb103e4e562f28565e3762963 (commit)
- Log -----------------------------------------------------------------
commit b98cdeab252d8bd471ed22cc557bbbe8ab5fdccc
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 29 10:14:46 2011 +0200
Update to rc3
commit 869e74bf63e3cdf305b9668c03632267ceecb1ba
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 21:19:54 2011 +0200
Translation update done using Pootle.
commit 981e86e4a807749718bdf8267bb9da9c9ef3518e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 21:19:38 2011 +0200
Translation update done using Pootle.
commit d4a3d9572ee91b6b8f66be1a8b530f3068a6bcfe
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 21:06:47 2011 +0200
Translation update done using Pootle.
commit 97b9f1ce751466a6c78a367b58bfdeff563b2a70
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 21:06:38 2011 +0200
Translation update done using Pootle.
commit 03092b60b83202debb29a3b6af0f7f772739da4a
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 21:01:16 2011 +0200
Translation update done using Pootle.
commit 0c5c1065ee28ba288f50f044a9b2b1793fa9707f
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:38:33 2011 +0200
Translation update done using Pootle.
commit f856dfa6d5020623d1814198ca8bcc481e686de1
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:38:11 2011 +0200
Translation update done using Pootle.
commit 0717314dc07cff2de7641e0ac3d3fdcb84c32c5e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:37:16 2011 +0200
Translation update done using Pootle.
commit eec8b032577c2646fd5aa9d883b765d9772ca64d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:31:21 2011 +0200
Translation update done using Pootle.
commit de3ac65beaaa7a0043fd7f00301383a19c35cc74
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:30:43 2011 +0200
Translation update done using Pootle.
commit f3360ac9c01e333d3797230020a65bb3d62182bf
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:28:19 2011 +0200
Translation update done using Pootle.
commit 243a9772e710fc3f6ff2f26e96a2f410ccc422a5
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Apr 28 18:27:13 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 4 +-
output/cs/README | 2 +-
output/de/Documentation.html | 4 +-
output/el/Documentation.html | 4 +-
output/el/README | 2 +-
output/en_GB/Documentation.html | 4 +-
output/en_GB/README | 2 +-
output/es/Documentation.html | 4 +-
output/es/README | 2 +-
output/fr/Documentation.html | 4 +-
output/fr/README | 2 +-
output/it/Documentation.html | 4 +-
output/ja/Documentation.html | 4 +-
output/ja/README | 2 +-
output/nl/README | 2 +-
output/pl/Documentation.html | 4 +-
output/pt_BR/Documentation.html | 4 +-
output/pt_BR/README | 2 +-
output/sl/README | 2 +-
output/tr/Documentation.html | 41 ++++++++++++++++++++------------------
output/tr/README | 2 +-
output/zh_CN/Documentation.html | 4 +-
output/zh_CN/README | 2 +-
po/tr.po | 28 ++++++++++++++++++++------
pot/ca-full.pot | 14 +------------
pot/ca-html.pot | 2 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 14 +------------
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 14 +------------
pot/de-html.pot | 2 +-
pot/de-txt.pot | 2 +-
pot/el-full.pot | 14 +------------
pot/el-html.pot | 2 +-
pot/el-txt.pot | 2 +-
pot/en_GB-full.pot | 14 +------------
pot/en_GB-html.pot | 2 +-
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 14 +------------
pot/es-html.pot | 2 +-
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 14 +------------
pot/fi-html.pot | 2 +-
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 14 +------------
pot/fr-html.pot | 2 +-
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 14 +------------
pot/gl-html.pot | 2 +-
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 14 +------------
pot/hu-html.pot | 2 +-
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 14 +------------
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 14 +------------
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 14 +------------
pot/ja-html.pot | 2 +-
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 14 +------------
pot/ka-html.pot | 2 +-
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 14 +------------
pot/lt-html.pot | 2 +-
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 14 +------------
pot/mn-html.pot | 2 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 14 +------------
pot/nb-html.pot | 2 +-
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 14 +------------
pot/nl-html.pot | 2 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 14 +------------
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 14 +------------
pot/pt_BR-html.pot | 2 +-
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 14 +------------
pot/ro-html.pot | 2 +-
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 14 +------------
pot/sk-html.pot | 2 +-
pot/sk-txt.pot | 2 +-
pot/sl-full.pot | 14 +------------
pot/sl-html.pot | 2 +-
pot/sl-txt.pot | 2 +-
pot/sv-full.pot | 14 +------------
pot/sv-html.pot | 2 +-
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 14 +------------
pot/tr-html.pot | 2 +-
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 14 +------------
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 14 +------------
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
105 files changed, 157 insertions(+), 464 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index 8914775..2e15228 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -19,7 +19,7 @@ Nebo je také můžete upravit na https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Dokumentace</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Dokumentace</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Nebo je také můžete upravit na https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Dokumentace
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Dokumentace
</h1>
</div>
diff --git a/output/cs/README b/output/cs/README
index 3e2c6af..4f7b5e3 100644
--- a/output/cs/README
+++ b/output/cs/README
@@ -1,7 +1,7 @@
phpMyAdmina - čtěte mě
=========================
-Verze 3.4.0-rc2-dev
+Verze 3.4.0-rc3-dev
Sada PHP skriptů pro správu MySQL přes web.
diff --git a/output/de/Documentation.html b/output/de/Documentation.html
index d319452..3d8511d 100644
--- a/output/de/Documentation.html
+++ b/output/de/Documentation.html
@@ -20,7 +20,7 @@ https://l10n.cihar.com/projects/pmadoc/
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev-Dokumentation</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev-Dokumentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -28,7 +28,7 @@ https://l10n.cihar.com/projects/pmadoc/
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev-Dokumentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev-Dokumentation
</h1>
</div>
diff --git a/output/el/Documentation.html b/output/el/Documentation.html
index 3c77a73..ab43190 100644
--- a/output/el/Documentation.html
+++ b/output/el/Documentation.html
@@ -20,7 +20,7 @@ https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Τεκμηρίωση phpMyAdmin 3.4.0-rc2-dev</title>
+ <title>Τεκμηρίωση phpMyAdmin 3.4.0-rc3-dev</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -28,7 +28,7 @@ https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
Τεκμηρίωση <a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev
</h1>
</div>
diff --git a/output/el/README b/output/el/README
index 84f074b..13f28cf 100644
--- a/output/el/README
+++ b/output/el/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-rc2-dev
+Version 3.4.0-rc3-dev
Ένα σύνολο από κώδικες PHP για διαχείριση του MySQL μέσω διαδικτύου.
diff --git a/output/en_GB/Documentation.html b/output/en_GB/Documentation.html
index eebfafe..3a66ab3 100644
--- a/output/en_GB/Documentation.html
+++ b/output/en_GB/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Documentation
</h1>
</div>
diff --git a/output/en_GB/README b/output/en_GB/README
index 47a44e1..aad20fe 100644
--- a/output/en_GB/README
+++ b/output/en_GB/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-rc2-dev
+Version 3.4.0-rc3-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/es/Documentation.html b/output/es/Documentation.html
index 45c74a2..64b3194 100644
--- a/output/es/Documentation.html
+++ b/output/es/Documentation.html
@@ -19,7 +19,7 @@ O puedes editarlos en línea en https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Documentación de phpMyAdmin 3.4.0-rc2-dev</title>
+ <title>Documentación de phpMyAdmin 3.4.0-rc3-dev</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ O puedes editarlos en línea en https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentación
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Documentación
</h1>
</div>
diff --git a/output/es/README b/output/es/README
index c1ffad2..58f1c46 100644
--- a/output/es/README
+++ b/output/es/README
@@ -1,7 +1,7 @@
phpMyAdmin - Léame
===================
-Versión 3.4.0-rc2-dev
+Versión 3.4.0-rc3-dev
Un conjunto de scripts PHP para manejar MySQL sobre la web.
diff --git a/output/fr/Documentation.html b/output/fr/Documentation.html
index 8c1bc5a..e844b9d 100644
--- a/output/fr/Documentation.html
+++ b/output/fr/Documentation.html
@@ -20,7 +20,7 @@ https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -28,7 +28,7 @@ https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Documentation
</h1>
</div>
diff --git a/output/fr/README b/output/fr/README
index 989d31b..d45bd71 100644
--- a/output/fr/README
+++ b/output/fr/README
@@ -1,7 +1,7 @@
phpMyAdmin - LisezMoi
=====================
-Version 3.4.0-rc2-dev
+Version 3.4.0-rc3-dev
Un ensemble de scripts PHP pour administrer MySQL par Internet.
diff --git a/output/it/Documentation.html b/output/it/Documentation.html
index c595830..7426841 100644
--- a/output/it/Documentation.html
+++ b/output/it/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Documentation
</h1>
</div>
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index 0ed22f3..8b6efe6 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev ドキュメント</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev ドキュメント</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev ドキュメント
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev ドキュメント
</h1>
</div>
diff --git a/output/ja/README b/output/ja/README
index a0f22cc..cfd8341 100644
--- a/output/ja/README
+++ b/output/ja/README
@@ -1,7 +1,7 @@
phpMyAdmin - お読み下さい
===============================
-バージョン 3.4.0-rc2-dev
+バージョン 3.4.0-rc3-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/nl/README b/output/nl/README
index b2463bf..8613a1c 100644
--- a/output/nl/README
+++ b/output/nl/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-rc2-dev
+Version 3.4.0-rc3-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index 4aaa9b2..66d2b7d 100644
--- a/output/pl/Documentation.html
+++ b/output/pl/Documentation.html
@@ -19,7 +19,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Documentation
</h1>
</div>
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index beba3ec..75908df 100644
--- a/output/pt_BR/Documentation.html
+++ b/output/pt_BR/Documentation.html
@@ -19,7 +19,7 @@ Ou você pode editá-la online em https://l10n.cihar.com/projects/pmadoc/ .
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Documentação</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Documentação</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ Ou você pode editá-la online em https://l10n.cihar.com/projects/pmadoc/ .
<div id="header">
<h1>
Documentação do <a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev
</h1>
</div>
diff --git a/output/pt_BR/README b/output/pt_BR/README
index 4c4a99c..93353e6 100644
--- a/output/pt_BR/README
+++ b/output/pt_BR/README
@@ -1,7 +1,7 @@
phpMyAdmin - Leia-me
====================
-Versão 3.4.0-rc2-dev
+Versão 3.4.0-rc3-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/sl/README b/output/sl/README
index 4efa5f5..01e36e7 100644
--- a/output/sl/README
+++ b/output/sl/README
@@ -1,7 +1,7 @@
phpMyAdmin - Beri me
====================
-Različica 3.4.0-rc2-dev
+Različica 3.4.0-rc3-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index 1fb80db..b618c4f 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -20,7 +20,7 @@ düzenleyebilirisiniz.
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - Belgeler</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - Belgeler</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -28,7 +28,7 @@ düzenleyebilirisiniz.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Belgesi
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev Belgesi
</h1>
</div>
@@ -1826,28 +1826,31 @@ sadece Tükçe ve İngilizce istiyorsanız, süzgeci <code>'^(tr|en)'</code>
olarak ayarlamalısınız.</dd>
<dt id="cfg_RecodingEngine">$cfg['RecodingEngine'] dizgi</dt>
- <dd>You can select here which functions will be used for character set
-conversion. Possible values are:
- <ul><li>auto - automatically use available one (first is tested iconv, then recode)</li>
- <li>iconv - use iconv or libiconv functions</li>
- <li>recode - use recode_string function</li>
- <li>none - disable encoding conversion</li>
+ <dd>Karakter grubu dönüşümü için hangi işlevin kullanılacağını burada
+seçebilirsiniz. Olası değerler:
+ <ul><li>auto - otomatik olarak mevcut olanı kullanır (önce sınanmış iconv, sonra
+recode)</li>
+ <li>iconv - iconv veya libiconv işlevlerini kullanır</li>
+ <li>recode - recode_string işlevini kullanır</li>
+ <li>none - kodlama dönüşümünü etkisizleştirir</li>
</ul>
- Default is auto.</dd>
+ Varsayılan auto'dur.</dd>
<dd>
- Enabled charset conversion activates a pull-down menu in the Export and
-Import pages, to choose the character set when exporting a file. The default
-value in this menu comes from <tt>$cfg['Export']['charset']</tt> and
-<tt>$cfg['Import']['charset']</tt>.
+ Etkinleştirilmiş karakter grubu dönüşümü, bir dosyayı dışa aktarırken
+karakter grubunu seçmek için Dışa Aktar ve İçe Aktar sayfalarında aşağı
+çekilir menüyü aktif eder. Bu menüdeki varsayılan değer
+<tt>$cfg['Export']['charset']</tt> ve <tt>$cfg['Import']['charset']</tt>'den
+gelir.
</dd>
- <dt id="cfg_IconvExtraParams">$cfg['IconvExtraParams'] string</dt>
- <dd>Specify some parameters for iconv used in charset conversion. See <a
+ <dt id="cfg_IconvExtraParams">$cfg['IconvExtraParams'] dizgi</dt>
+ <dd>Karakter grubu dönüşümünde kullanılan iconv için bazı parametreleri
+belirler. Ayrıntılar için <a
href="http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.ht… ">iconv
-documentation</a> for details. By default <code>//TRANSLIT</code> is used,
-so that invalid characters will be transliterated.</dd>
+belgelerine</a> bakın. Varsayılan olarak <code>//TRANSLIT</code> kullanılır,
+onun için geçersiz karakterler dönüştürülecektir.</dd>
- <dt id="cfg_AvailableCharsets">$cfg['AvailableCharsets'] array</dt>
+ <dt id="cfg_AvailableCharsets">$cfg['AvailableCharsets'] dizilim</dt>
<dd>Available character sets for MySQL conversion. You can add your own (any of
supported by recode/iconv) or remove these which you don't use. Character
sets will be shown in same order as here listed, so if you frequently use
@@ -1880,7 +1883,7 @@ possibilities</li>
<li>yes - GD 2 functions can be used</li>
<li>no - GD 2 function cannot be used</li>
</ul>
- Default is auto.
+ Varsayılan auto'dur.
</dd>
<dt id="cfg_CheckConfigurationPermissions">$cfg['CheckConfigurationPermissions'] boolean</dt>
diff --git a/output/tr/README b/output/tr/README
index 4f28838..2dee606 100644
--- a/output/tr/README
+++ b/output/tr/README
@@ -1,7 +1,7 @@
phpMyAdmin - Benioku
====================
-Sürüm 3.4.0-rc2-dev
+Sürüm 3.4.0-rc3-dev
Web üzerinden MySQL'i yönetmek için bir dizi PHP betikleridir.
diff --git a/output/zh_CN/Documentation.html b/output/zh_CN/Documentation.html
index 93d7f4e..cd4c0f0 100644
--- a/output/zh_CN/Documentation.html
+++ b/output/zh_CN/Documentation.html
@@ -19,7 +19,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-rc2-dev - 文档</title>
+ <title>phpMyAdmin 3.4.0-rc3-dev - 文档</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/ ">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev 文档
+class="myadmin">MyAdmin</span></a> 3.4.0-rc3-dev 文档
</h1>
</div>
diff --git a/output/zh_CN/README b/output/zh_CN/README
index 41bff25..7a30cc4 100644
--- a/output/zh_CN/README
+++ b/output/zh_CN/README
@@ -1,7 +1,7 @@
phpMyAdmin - 读我
===================
-版本 3.4.0-rc2-dev
+版本 3.4.0-rc3-dev
使用 PHP 编写,通过 web 管理 MySQL 的工具。
diff --git a/po/tr.po b/po/tr.po
index e2cdcfe..d3f7d60 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: 2011-04-25 10:34+0200\n"
+"PO-Revision-Date: 2011-04-28 21:19+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -4829,32 +4829,36 @@ msgid ""
"You can select here which functions will be used for character set "
"conversion. Possible values are:"
msgstr ""
+"Karakter grubu dönüşümü için hangi işlevin kullanılacağını burada "
+"seçebilirsiniz. Olası değerler:"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1728
msgid ""
"auto - automatically use available one (first is tested iconv, then recode)"
msgstr ""
+"auto - otomatik olarak mevcut olanı kullanır (önce sınanmış iconv, sonra "
+"recode)"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1730
msgid "iconv - use iconv or libiconv functions"
-msgstr ""
+msgstr "iconv - iconv veya libiconv işlevlerini kullanır"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1731
msgid "recode - use recode_string function"
-msgstr ""
+msgstr "recode - recode_string işlevini kullanır"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1732
msgid "none - disable encoding conversion"
-msgstr ""
+msgstr "none - kodlama dönüşümünü etkisizleştirir"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1734 orig-docs/Documentation.html:1780
msgid "Default is auto."
-msgstr ""
+msgstr "Varsayılan auto'dur."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1736
@@ -4864,11 +4868,16 @@ msgid ""
"value in this menu comes from <tt>$cfg['Export']['charset']</tt> and <tt>$cfg"
"['Import']['charset']</tt>."
msgstr ""
+"Etkinleştirilmiş karakter grubu dönüşümü, bir dosyayı dışa aktarırken "
+"karakter grubunu seçmek için Dışa Aktar ve İçe Aktar sayfalarında aşağı "
+"çekilir menüyü aktif eder. Bu menüdeki varsayılan değer "
+"<tt>$cfg['Export']['charset']</tt> ve <tt>$cfg['Import']['charset']</tt>'den "
+"gelir."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1742
msgid "$cfg['IconvExtraParams'] string"
-msgstr ""
+msgstr "$cfg['IconvExtraParams'] dizgi"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1743
@@ -4878,11 +4887,16 @@ msgid ""
"html\">iconv documentation</a> for details. By default <code>//TRANSLIT</"
"code> is used, so that invalid characters will be transliterated."
msgstr ""
+"Karakter grubu dönüşümünde kullanılan iconv için bazı parametreleri "
+"belirler. Ayrıntılar için <a href=\"http://www.gnu.org/software/libiconv/docu "
+"mentation/libiconv/iconv_open.3.html\">iconv belgelerine</a> bakın. "
+"Varsayılan olarak <code>//TRANSLIT</code> kullanılır, onun için geçersiz "
+"karakterler dönüştürülecektir."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1748
msgid "$cfg['AvailableCharsets'] array"
-msgstr ""
+msgstr "$cfg['AvailableCharsets'] dizilim"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1749
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 6f42ca1..cd151ff 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ca-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ca-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 6db25a0..d18889d 100644
--- a/pot/ca-html.pot
+++ b/pot/ca-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index 2885add..255a736 100644
--- a/pot/ca-txt.pot
+++ b/pot/ca-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 95126f6..9322d7d 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# cs-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# cs-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 799726f..82100a4 100644
--- a/pot/cs-html.pot
+++ b/pot/cs-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2885add..255a736 100644
--- a/pot/cs-txt.pot
+++ b/pot/cs-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 cec4971..b8b2906 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# de-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# de-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-html.pot b/pot/de-html.pot
index 338a6d7..baa59e7 100644
--- a/pot/de-html.pot
+++ b/pot/de-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index 2885add..29717ae 100644
--- a/pot/de-txt.pot
+++ b/pot/de-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/el-full.pot b/pot/el-full.pot
index 73534de..b7cde01 100644
--- a/pot/el-full.pot
+++ b/pot/el-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# el-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# el-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/el-html.pot b/pot/el-html.pot
index e9e3145..46011fb 100644
--- a/pot/el-html.pot
+++ b/pot/el-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/el-txt.pot b/pot/el-txt.pot
index 2885add..29717ae 100644
--- a/pot/el-txt.pot
+++ b/pot/el-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 56e03c3..5201a9d 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# en_GB-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# en_GB-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 a91abfd..927e8b8 100644
--- a/pot/en_GB-html.pot
+++ b/pot/en_GB-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 2885add..29717ae 100644
--- a/pot/en_GB-txt.pot
+++ b/pot/en_GB-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 f10b05c..7ac5d05 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# es-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# es-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-html.pot b/pot/es-html.pot
index 1d59e1d..85fde3e 100644
--- a/pot/es-html.pot
+++ b/pot/es-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index 2885add..29717ae 100644
--- a/pot/es-txt.pot
+++ b/pot/es-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 e159938..205c371 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fi-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# fi-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index f5c4eeb..2ea0cbf 100644
--- a/pot/fi-html.pot
+++ b/pot/fi-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index 2885add..255a736 100644
--- a/pot/fi-txt.pot
+++ b/pot/fi-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 817dfe9..04b6f8c 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# fr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 132e07b..53a80ca 100644
--- a/pot/fr-html.pot
+++ b/pot/fr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2885add..255a736 100644
--- a/pot/fr-txt.pot
+++ b/pot/fr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 76baf85..61a47fb 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# gl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# gl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index cda0860..ff0f219 100644
--- a/pot/gl-html.pot
+++ b/pot/gl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index 2885add..255a736 100644
--- a/pot/gl-txt.pot
+++ b/pot/gl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 8c8dcab..2835aa3 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hu-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# hu-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index be25eb1..00e6982 100644
--- a/pot/hu-html.pot
+++ b/pot/hu-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index 2885add..255a736 100644
--- a/pot/hu-txt.pot
+++ b/pot/hu-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 5f44759..4738d9b 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hy-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# hy-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 6b5ce56..df0bf2b 100644
--- a/pot/hy-html.pot
+++ b/pot/hy-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 2885add..29717ae 100644
--- a/pot/hy-txt.pot
+++ b/pot/hy-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 9f19a1e..102cfc8 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# it-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# it-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 ba1566c..6c9de5c 100644
--- a/pot/it-html.pot
+++ b/pot/it-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2885add..255a736 100644
--- a/pot/it-txt.pot
+++ b/pot/it-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 f66614e..2b58904 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ja-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ja-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 c68eb9d..af3979a 100644
--- a/pot/ja-html.pot
+++ b/pot/ja-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2885add..255a736 100644
--- a/pot/ja-txt.pot
+++ b/pot/ja-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2a485bd..ca01fc4 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ka-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ka-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 8a8d139..de43f12 100644
--- a/pot/ka-html.pot
+++ b/pot/ka-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index 2885add..255a736 100644
--- a/pot/ka-txt.pot
+++ b/pot/ka-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 d1ed322..0e22dc8 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# lt-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# lt-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index 7090e3a..783806d 100644
--- a/pot/lt-html.pot
+++ b/pot/lt-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index 2885add..29717ae 100644
--- a/pot/lt-txt.pot
+++ b/pot/lt-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 d522ba2..04335e9 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# mn-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# mn-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index 8beba33..b67a8f5 100644
--- a/pot/mn-html.pot
+++ b/pot/mn-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index 2885add..29717ae 100644
--- a/pot/mn-txt.pot
+++ b/pot/mn-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 9a3408b..f064170 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nb-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# nb-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index 38f2007..4f1b484 100644
--- a/pot/nb-html.pot
+++ b/pot/nb-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index 2885add..255a736 100644
--- a/pot/nb-txt.pot
+++ b/pot/nb-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 179b32e..5c9f67b 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# nl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index d852d97..7e7992c 100644
--- a/pot/nl-html.pot
+++ b/pot/nl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index 2885add..255a736 100644
--- a/pot/nl-txt.pot
+++ b/pot/nl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 dd97521..5330612 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# pl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2d3dee3..0958ef0 100644
--- a/pot/pl-html.pot
+++ b/pot/pl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 2885add..255a736 100644
--- a/pot/pl-txt.pot
+++ b/pot/pl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:12+0300\n"
"PO-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 018cc2f..09d13eb 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pt_BR-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# pt_BR-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 9eb2f75..3be17c5 100644
--- a/pot/pt_BR-html.pot
+++ b/pot/pt_BR-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:32+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 2885add..29717ae 100644
--- a/pot/pt_BR-txt.pot
+++ b/pot/pt_BR-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 2011-04-29 09:13+0300\n"
"PO-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 2407037..3c27d34 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,21 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ro-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"#-#-#-#-# ro-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-22 08:10+0300\n"
+"POT-Creation-Date: 20 1-04-22 08:10+0300\n"