Git
Threads by month
- ----- 2026 -----
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 4 participants
- 38805 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC1-413-g7408db5
by Mike Homme 18 Apr '11
by Mike Homme 18 Apr '11
18 Apr '11
The branch, master has been updated
via 7408db5eef64cf463a66dc75f7255136e885ad7b (commit)
via 4520c809f39899415d4f6852b4fc652fae9ee793 (commit)
from 60e08fc20c3dc216a23c38089ec51a817760184d (commit)
- Log -----------------------------------------------------------------
commit 7408db5eef64cf463a66dc75f7255136e885ad7b
Merge: 4520c809f39899415d4f6852b4fc652fae9ee793 60e08fc20c3dc216a23c38089ec51a817760184d
Author: Mike Hommé <mike(a)globalcode.org>
Date: Mon Apr 18 23:35:56 2011 -0400
Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit 4520c809f39899415d4f6852b4fc652fae9ee793
Author: Mike Hommé <mike(a)globalcode.org>
Date: Mon Apr 18 22:56:33 2011 -0400
Moves colors around on "informational" messages such as warnings, info, successes, errors.
-----------------------------------------------------------------------
Summary of changes:
themes/pmahomme/css/theme_right.css.php | 28 +++++++++++++++++++++-------
1 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index eaf6095..a013337 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -88,6 +88,9 @@ a:hover {
-webkit-border-radius:5px;
border-radius:5px;
}
+
+#initials_table td{padding:8px !important}
+
#initials_table a {
border:1px solid #aaa;
background:#fff;
@@ -583,13 +586,22 @@ div.footnotes {
<?php } else { ?>
padding: 0.3em;
<?php } ?>
+
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
- -moz-box-shadow: 0px 1px 2px #fff inset;
- -webkit-box-shadow: 0px 1px 2px #fff inset;
+
+ -moz-box-shadow: 0 1px 1px #fff inset;
+ -webkit-box-shadow: 0 1px 1px #fff inset;
+ box-shadow: 0 1px 1px #fff inset;
}
+.success a{text-decoration:underline;}
+.notice a{text-decoration:underline;}
+.warning a{text-decoration:underline;}
+.error a{text-decoration:underline;}
+.footnotes a{text-decoration:underline;}
+
.success {
color: #000000;
background-color: #ebf8a4;
@@ -612,13 +624,13 @@ div.success {
}
.notice, .footnotes {
- color: #000000;
- background-color: #ffeda4;
+ color: #3a6c7e;
+ background-color: #e8eef1;
}
h1.notice,
div.notice,
div.footnotes {
- border-color: #eccf5b;
+ border-color: #3a6c7e;
<?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
background-repeat: no-repeat;
@@ -659,8 +671,8 @@ div.warning {
.error {
border:1px solid maroon !important;
- color: #fff;
- background:url(./themes/pmahomme/img/tab_warning_bg.png) 50% 0% #e97777;
+ color: #000;
+ background:pink;
}
h1.error,
@@ -680,6 +692,8 @@ div.error h1 {
border-color: #ff0000;
}
+
+
.confirmation {
color: #000000;
background-color: pink;
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC1-411-g60e08fc
by Madhura Jayaratne 18 Apr '11
by Madhura Jayaratne 18 Apr '11
18 Apr '11
The branch, master has been updated
via 60e08fc20c3dc216a23c38089ec51a817760184d (commit)
from 7554fc35708d629ea79a791ca2e80af950573b24 (commit)
- Log -----------------------------------------------------------------
commit 60e08fc20c3dc216a23c38089ec51a817760184d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue Apr 19 07:56:45 2011 +0530
Rows should not be marked in these tables. Added class="noclick"
-----------------------------------------------------------------------
Summary of changes:
browse_foreigners.php | 6 +++---
server_privileges.php | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/browse_foreigners.php b/browse_foreigners.php
index be68981..c8867af 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -85,7 +85,7 @@ if (is_array($foreignData['disp_row'])) {
<link rel="stylesheet" type="text/css"
href="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=right&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
<?php
-// includes everything asked for by libraries/common.inc.php
+// includes everything asked for by libraries/common.inc.php
require_once './libraries/header_scripts.inc.php';
?>
<script type="text/javascript">
@@ -95,7 +95,7 @@ require_once './libraries/header_scripts.inc.php';
var $inline = window.opener.jQuery('.browse_foreign_clicked');
if ($inline.length != 0) {
$inline.removeClass('browse_foreign_clicked')
- // puts new value in the previous element which is
+ // puts new value in the previous element which is
// a span with class curr_value
.prev().text(key);
self.close();
@@ -241,7 +241,7 @@ if (is_array($foreignData['disp_row'])) {
}
?>
- <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
+ <tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
<td nowrap="nowrap">
<?php
echo ($key_ordered_current_equals_data ? '<strong>' : '')
diff --git a/server_privileges.php b/server_privileges.php
index e436143..d497d71 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1287,7 +1287,7 @@ if (isset($_REQUEST['delete']) || (isset($_REQUEST['change_copy']) && $_REQUEST[
if (isset($_REQUEST['drop_users_db'])) {
$queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
$GLOBALS['reload'] = TRUE;
-
+
if($GLOBALS['is_ajax_request'] != true) {
PMA_reloadNavigation();
}
@@ -2127,7 +2127,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
}
}
} elseif (isset($_REQUEST['adduser'])) {
-
+
// Add a new user
$GLOBALS['url_query'] .= '&adduser=1';
echo '<h2>' . "\n"
@@ -2261,7 +2261,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
$current_privileges[] = $row;
$row = PMA_DBI_fetch_assoc($res);
}
- echo ' <tr class="' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
+ echo ' <tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
. ' <td';
if (count($current_privileges) > 1) {
echo ' rowspan="' . count($current_privileges) . '"';
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC1-410-g7554fc3
by Michal Čihař 18 Apr '11
by Michal Čihař 18 Apr '11
18 Apr '11
The branch, master has been updated
via 7554fc35708d629ea79a791ca2e80af950573b24 (commit)
via a1035b37cbb9b38710a02cf93c3d555df776bd5b (commit)
via 0e9ca0cd8c8499b837dc9f01d49cb3fdb1a24984 (commit)
via 04719bac260d28fd0ddda087a9870b4e9113c786 (commit)
via 71d0650185a65ee2fd57fd23ea66cb109b1f6bf6 (commit)
via 2d3115dc98c82a89523874404bfb535322520ec1 (commit)
via ab9658ef17f434482a4970f83fd2cfd8cfa62dda (commit)
via 997cf818d15aa539530d681cb5cb25d4e2e0845b (commit)
via 12dafe32ea55cf6d3210fe1c34a20adeb97562df (commit)
via 7ffbbe32b1966514ea80d7a8f2084aa1b1a966bc (commit)
via ee301908efd68105421b4fef522ca81e160508ac (commit)
via 93786ae233fe0359ba5965edf7cecc3222e63f6b (commit)
via 90f3612774bdf9355b5cba407377a1719d6b6970 (commit)
via 3439bfce3084420c8c796de1c27001e18f66bf2d (commit)
via f20d12470c90e85bca9d998377d4059ffd7aaa8d (commit)
via 8f7f80c65ccf1df6caf7b93db8075cde445e6143 (commit)
via 7b8c77bfd64169ef971ba1a94f2a3a88573a89df (commit)
via d629b99349a09bbf03563bdc8d2ad59424ef0dca (commit)
via 7525b69b8a6531332c03dbb7bb1e8d3f9c530501 (commit)
via ab6b8c5a9ea97f9d6b612843adcc36f581ae881f (commit)
via 88b1583b76df537d272a13891d9004ffd5c1abf0 (commit)
via a28c3a1ce49aa235fbbb11e677cbf910c412a797 (commit)
via 658bcfb1048c8c7ecec25da9872067ad7ccc8623 (commit)
via f325e13c8cafeb08cc54d525d08c0848610fa55f (commit)
via 140700fc8050a024fa23a1a26205ebe04fa6bc37 (commit)
via d0d56dc88f864629505a495280753ef62d3dc9c5 (commit)
via 83a8a55846db1ab76e23338b72ff2cf9905516fb (commit)
via 6b35c281f402f1c5f06a436d4cdeaa3a1eac9727 (commit)
via c773a0bcb7407e9dd0cedb0e4400955dd2a5e50d (commit)
via 7498463d236dbdbf7fddf0a12e7e4d5817a187f5 (commit)
via 62734587ffad9533b418a1fa673543156b66dd07 (commit)
via 16cdb1270beb66926983641e9e717b9b9ecbc7e8 (commit)
via 5fae2e966b194fadf715e42f90fd4b0b8ac89974 (commit)
via ba470a182c7d45a5bd0b56a68ebcb416ff73193a (commit)
via 04c71d25caf235ababb506bfebc9dcc0e6c7891a (commit)
via 3834b569c394bbe634b97b6c6f4f39fb96fc18df (commit)
via 5f1418c230f4d5ccac25a5ef1a587bfdddee3c93 (commit)
via dcb94633b058f4a2e3d98bbd2e28f360e227a6c7 (commit)
via cf7f2b23d439d728a20aac579e540b2b3b5c07da (commit)
via 59cf3707172105df13a6ff119c811497c360482a (commit)
via c9538f55ae1be674e7ed32f9ed5760e5aba015de (commit)
via 61e97d32429c331c38ed0b04107003d68567ca7b (commit)
via 16f2bcfe142b81350d6451902b9d4ee8ec3f2e0d (commit)
via 6f28ce44a40b0416c746080096c406909a3ad780 (commit)
from e55b92d35f07805a6473fb9677078edcc5108b9b (commit)
- Log -----------------------------------------------------------------
commit 7554fc35708d629ea79a791ca2e80af950573b24
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:31:13 2011 +0200
Translation update done using Pootle.
commit a1035b37cbb9b38710a02cf93c3d555df776bd5b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:27:58 2011 +0200
Translation update done using Pootle.
commit 0e9ca0cd8c8499b837dc9f01d49cb3fdb1a24984
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:27:31 2011 +0200
Translation update done using Pootle.
commit 04719bac260d28fd0ddda087a9870b4e9113c786
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:23:59 2011 +0200
Translation update done using Pootle.
commit 71d0650185a65ee2fd57fd23ea66cb109b1f6bf6
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:21:42 2011 +0200
Translation update done using Pootle.
commit 2d3115dc98c82a89523874404bfb535322520ec1
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:20:47 2011 +0200
Translation update done using Pootle.
commit ab9658ef17f434482a4970f83fd2cfd8cfa62dda
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:18:52 2011 +0200
Translation update done using Pootle.
commit 997cf818d15aa539530d681cb5cb25d4e2e0845b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:17:57 2011 +0200
Translation update done using Pootle.
commit 12dafe32ea55cf6d3210fe1c34a20adeb97562df
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:16:01 2011 +0200
Translation update done using Pootle.
commit 7ffbbe32b1966514ea80d7a8f2084aa1b1a966bc
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:14:20 2011 +0200
Translation update done using Pootle.
commit ee301908efd68105421b4fef522ca81e160508ac
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:12:54 2011 +0200
Translation update done using Pootle.
commit 93786ae233fe0359ba5965edf7cecc3222e63f6b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:12:23 2011 +0200
Translation update done using Pootle.
commit 90f3612774bdf9355b5cba407377a1719d6b6970
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:11:00 2011 +0200
Translation update done using Pootle.
commit 3439bfce3084420c8c796de1c27001e18f66bf2d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:09:49 2011 +0200
Translation update done using Pootle.
commit f20d12470c90e85bca9d998377d4059ffd7aaa8d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:08:13 2011 +0200
Translation update done using Pootle.
commit 8f7f80c65ccf1df6caf7b93db8075cde445e6143
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:07:29 2011 +0200
Translation update done using Pootle.
commit 7b8c77bfd64169ef971ba1a94f2a3a88573a89df
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:06:38 2011 +0200
Translation update done using Pootle.
commit d629b99349a09bbf03563bdc8d2ad59424ef0dca
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:05:52 2011 +0200
Translation update done using Pootle.
commit 7525b69b8a6531332c03dbb7bb1e8d3f9c530501
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:04:43 2011 +0200
Translation update done using Pootle.
commit ab6b8c5a9ea97f9d6b612843adcc36f581ae881f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:03:26 2011 +0200
Translation update done using Pootle.
commit 88b1583b76df537d272a13891d9004ffd5c1abf0
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:01:56 2011 +0200
Translation update done using Pootle.
commit a28c3a1ce49aa235fbbb11e677cbf910c412a797
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:01:52 2011 +0200
Translation update done using Pootle.
commit 658bcfb1048c8c7ecec25da9872067ad7ccc8623
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:01:39 2011 +0200
Translation update done using Pootle.
commit f325e13c8cafeb08cc54d525d08c0848610fa55f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:01:31 2011 +0200
Translation update done using Pootle.
commit 140700fc8050a024fa23a1a26205ebe04fa6bc37
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:01:10 2011 +0200
Translation update done using Pootle.
commit d0d56dc88f864629505a495280753ef62d3dc9c5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 21:00:18 2011 +0200
Translation update done using Pootle.
commit 83a8a55846db1ab76e23338b72ff2cf9905516fb
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:58:22 2011 +0200
Translation update done using Pootle.
commit 6b35c281f402f1c5f06a436d4cdeaa3a1eac9727
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:55:22 2011 +0200
Translation update done using Pootle.
commit c773a0bcb7407e9dd0cedb0e4400955dd2a5e50d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:50:24 2011 +0200
Translation update done using Pootle.
commit 7498463d236dbdbf7fddf0a12e7e4d5817a187f5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:47:07 2011 +0200
Translation update done using Pootle.
commit 62734587ffad9533b418a1fa673543156b66dd07
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:43:46 2011 +0200
Translation update done using Pootle.
commit 16cdb1270beb66926983641e9e717b9b9ecbc7e8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:41:08 2011 +0200
Translation update done using Pootle.
commit 5fae2e966b194fadf715e42f90fd4b0b8ac89974
Merge: ba470a182c7d45a5bd0b56a68ebcb416ff73193a e55b92d35f07805a6473fb9677078edcc5108b9b
Author: Pootle server <pootle(a)cihar.com>
Date: Mon Apr 18 20:40:07 2011 +0200
Merge remote-tracking branch 'origin/master'
commit ba470a182c7d45a5bd0b56a68ebcb416ff73193a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:39:27 2011 +0200
Translation update done using Pootle.
commit 04c71d25caf235ababb506bfebc9dcc0e6c7891a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:38:34 2011 +0200
Translation update done using Pootle.
commit 3834b569c394bbe634b97b6c6f4f39fb96fc18df
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:37:21 2011 +0200
Translation update done using Pootle.
commit 5f1418c230f4d5ccac25a5ef1a587bfdddee3c93
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:35:56 2011 +0200
Translation update done using Pootle.
commit dcb94633b058f4a2e3d98bbd2e28f360e227a6c7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:34:24 2011 +0200
Translation update done using Pootle.
commit cf7f2b23d439d728a20aac579e540b2b3b5c07da
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:32:00 2011 +0200
Translation update done using Pootle.
commit 59cf3707172105df13a6ff119c811497c360482a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:31:43 2011 +0200
Translation update done using Pootle.
commit c9538f55ae1be674e7ed32f9ed5760e5aba015de
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:19:45 2011 +0200
Translation update done using Pootle.
commit 61e97d32429c331c38ed0b04107003d68567ca7b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:18:38 2011 +0200
Translation update done using Pootle.
commit 16f2bcfe142b81350d6451902b9d4ee8ec3f2e0d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:15:06 2011 +0200
Translation update done using Pootle.
commit 6f28ce44a40b0416c746080096c406909a3ad780
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Mon Apr 18 20:09:49 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/si.po | 101 +++++++++++++++++++++++++++----------------------------------
1 files changed, 45 insertions(+), 56 deletions(-)
diff --git a/po/si.po b/po/si.po
index fa3bf66..c20bb75 100644
--- a/po/si.po
+++ b/po/si.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-15 08:56+0200\n"
-"PO-Revision-Date: 2011-04-17 05:54+0200\n"
+"PO-Revision-Date: 2011-04-18 21:31+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
"Language: si\n"
@@ -757,7 +757,7 @@ msgstr "ක්රියාව"
#: db_tracking.php:101 js/messages.php:34
msgid "Delete tracking data for this table"
-msgstr ""
+msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න"
#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
msgid "active"
@@ -956,14 +956,13 @@ msgid "Dropping Procedure"
msgstr "ක්රියාපටිපාටිය"
#: js/messages.php:35
-#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
-msgstr "Allows inserting and replacing data."
+msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්"
#: js/messages.php:36
msgid "Dropping Primary Key/Index"
-msgstr ""
+msgstr "ප්රාථමික මූලය/සුචිය ඉවත් කෙරෙමින්"
#: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?"
@@ -1011,10 +1010,9 @@ msgid "Create User"
msgstr "භාවිතා කරන්නෙක් සාදන්න"
#: js/messages.php:54
-#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
-msgstr "Reloading the privileges"
+msgstr "වරප්රසාද පූරණය කෙරෙමින්"
#: js/messages.php:55
msgid "Removing Selected Users"
@@ -1032,23 +1030,21 @@ msgid "Cancel"
msgstr "අවලංගු කරන්න"
#: js/messages.php:63
-#, fuzzy
msgid "Loading"
-msgstr "ස්වදේශී"
+msgstr "පූරණය කෙරෙමින්"
#: js/messages.php:64
-#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
-msgstr "ක්රියාවලිය"
+msgstr "ඉල්ලීම පිරිසැකසෙමින්"
#: js/messages.php:65 libraries/import/ods.php:80
msgid "Error in Processing Request"
-msgstr ""
+msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
#: js/messages.php:66
msgid "Dropping Column"
-msgstr ""
+msgstr "තීරුව හලමින්"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
@@ -1067,10 +1063,9 @@ msgid "Renaming Databases"
msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
#: js/messages.php:72
-#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
-msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න"
+msgstr "දත්තගබඩාව පූරණය"
#: js/messages.php:73
msgid "Copying Database"
@@ -1117,7 +1112,7 @@ msgstr "සුරකින්න"
#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
-msgstr ""
+msgstr "සඟවන්න"
#: js/messages.php:93
#, fuzzy
@@ -1132,7 +1127,7 @@ msgstr "SQL විමසුම"
#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
-msgstr "අත්හැර දමන්න"
+msgstr "නොසලකන්න"
#: js/messages.php:100
msgid "Select referenced key"
@@ -1187,9 +1182,8 @@ msgstr ", නවතම ස්ථායි අනුවාදය:"
#. l10n: Display text for calendar close link
#: js/messages.php:137
-#, fuzzy
msgid "Done"
-msgstr "දත්ත"
+msgstr "තෝරන්න"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:139
@@ -1511,7 +1505,7 @@ msgstr "සංස්කරණය කරන්න"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
+msgstr "ප්රාථමික මූලය හලන ලදි"
#: libraries/Index.class.php:475
#, php-format
@@ -1542,8 +1536,8 @@ msgstr "දෝෂය"
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "පේළියකට බලපෑවේය"
+msgstr[1] "පේළි %1$dකට බලපෑවේය"
#: libraries/Message.class.php:300
#, php-format
@@ -1837,7 +1831,7 @@ msgstr "විමසුම් සංඛ්යානය"
#: libraries/chart.lib.php:63
msgid "Query execution time comparison (in microseconds)"
-msgstr ""
+msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්රෝ තත්පර)"
#: libraries/chart.lib.php:83
msgid "Query results"
@@ -1991,7 +1985,7 @@ msgstr "Validate SQL"
#: libraries/common.lib.php:1264
msgid "Inline edit of this query"
-msgstr ""
+msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය"
#: libraries/common.lib.php:1266
msgid "Inline"
@@ -2136,23 +2130,21 @@ msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50
msgid "Both"
-msgstr ""
+msgstr "දෙකම"
#: libraries/config.values.php:74
msgid "Open"
-msgstr ""
+msgstr "විවෘත"
#: libraries/config.values.php:74
-#, fuzzy
#| msgid "Unclosed quote"
msgid "Closed"
-msgstr "නොවසන ලද උද්ධරනය"
+msgstr "වසන ලද"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
#: libraries/import.lib.php:1172
-#, fuzzy
msgid "structure"
msgstr "සැකිල්ල"
@@ -2160,12 +2152,11 @@ msgstr "සැකිල්ල"
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
msgid "data"
-msgstr ""
+msgstr "දත්ත"
#: libraries/config.values.php:97 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
-#, fuzzy
#| msgid "Structure and data"
msgid "structure and data"
msgstr "සැකිල්ල සහ දත්ත"
@@ -2183,34 +2174,32 @@ msgid "Custom - like above, but without the quick/custom choice"
msgstr ""
#: libraries/config.values.php:119
-#, fuzzy
#| msgid "Complete inserts"
msgid "complete inserts"
-msgstr "Complete inserts"
+msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
#: libraries/config.values.php:120
-#, fuzzy
#| msgid "Extended inserts"
msgid "extended inserts"
-msgstr "Extended inserts"
+msgstr "විස්තෘත ඇතුළු කිරීම්"
#: libraries/config.values.php:121
msgid "both of the above"
-msgstr ""
+msgstr "ඉහත ද්විත්වයම"
#: libraries/config.values.php:122
msgid "neither of the above"
-msgstr ""
+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
@@ -2232,14 +2221,13 @@ msgstr "අගය %s ට සමාන හෝ අඩු විය යුතුය
#: libraries/config/FormDisplay.class.php:538
#, php-format
msgid "Missing data for %s"
-msgstr ""
+msgstr "%s සඳහා දත්ත නොමැත"
#: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740
-#, fuzzy
#| msgid "Variable"
msgid "unavailable"
-msgstr "Variable"
+msgstr "නොතිබෙන"
#: libraries/config/FormDisplay.class.php:737
#: libraries/config/FormDisplay.class.php:741
@@ -2269,7 +2257,7 @@ msgstr "PHP සංස්කරණය"
#: libraries/config/FormDisplay.class.php:781
#, php-format
msgid "maximum %s"
-msgstr ""
+msgstr "උපරිම %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
@@ -2278,12 +2266,12 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
msgid "Disabled"
-msgstr "අක්රිය කරන ලද"
+msgstr "අක්රිය"
#: libraries/config/FormDisplay.tpl.php:248
#, php-format
msgid "Set value: %s"
-msgstr ""
+msgstr "%s අගය පිහිටුවන්න"
#: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:350
@@ -2305,9 +2293,8 @@ msgid "Improves efficiency of screen refresh"
msgstr ""
#: libraries/config/messages.inc.php:18
-#, fuzzy
msgid "Enable Ajax"
-msgstr "සක්රිය කරන් ලද"
+msgstr "Ajax සක්රිය කරන්න"
#: libraries/config/messages.inc.php:19
msgid ""
@@ -2315,9 +2302,8 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:20
-#, fuzzy
msgid "Allow login to any MySQL server"
-msgstr "MySQL සර්වරයට ලොග් විය නොහැක"
+msgstr "MySQL සේවාදායකයට ලොග්වීමට ඉඩ දෙන්න "
#: libraries/config/messages.inc.php:21
msgid ""
@@ -2342,11 +2328,11 @@ msgstr ""
#: libraries/config/messages.inc.php:25
msgid "Blowfish secret"
-msgstr ""
+msgstr "Blowfish රහස"
#: libraries/config/messages.inc.php:26
msgid "Highlight selected rows"
-msgstr ""
+msgstr "තෝරාගත් පේළි ඉස්මතු කරන්න"
#: libraries/config/messages.inc.php:27
msgid "Row marker"
@@ -2368,7 +2354,7 @@ msgstr ""
#: libraries/config/messages.inc.php:31
msgid "Bzip2"
-msgstr ""
+msgstr "Bzip2"
#: libraries/config/messages.inc.php:32
msgid ""
@@ -2379,7 +2365,7 @@ msgstr ""
#: libraries/config/messages.inc.php:33
msgid "CHAR columns editing"
-msgstr ""
+msgstr "CHAR තීරු සංස්කරණය"
#: libraries/config/messages.inc.php:34
msgid "Number of columns for CHAR/VARCHAR textareas"
@@ -2424,11 +2410,11 @@ msgstr ""
#: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries"
-msgstr ""
+msgstr "DROP විමසුම් තහවුරු කරන්න"
#: libraries/config/messages.inc.php:44
msgid "Debug SQL"
-msgstr ""
+msgstr "SQL නිදොසන්න"
#: libraries/config/messages.inc.php:45
#, fuzzy
@@ -2486,7 +2472,7 @@ msgstr ""
#: libraries/config/messages.inc.php:57
msgid "Display databases as a list"
-msgstr ""
+msgstr "දත්තගබඩා ලැයිස්තුවක් ලෙස පෙන්වන්න"
#: libraries/config/messages.inc.php:58
msgid "Show server listing as a list instead of a drop down"
@@ -9404,6 +9390,9 @@ msgid ""
"Note that not every result table can be put to the chart. See <a href=\"./"
"Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a>"
msgstr ""
+"සෑම ප්රතිඑලයක්ම ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. <a "
+"href=\"./Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a> "
+"බලන්න."
#: tbl_chart.php:181
msgid "Redraw"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC1-366-ge55b92d
by Marc Delisle 18 Apr '11
by Marc Delisle 18 Apr '11
18 Apr '11
The branch, master has been updated
via e55b92d35f07805a6473fb9677078edcc5108b9b (commit)
from 932b5c2c36ae62d8b65c283d7da88c6b0c151bf2 (commit)
- Log -----------------------------------------------------------------
commit e55b92d35f07805a6473fb9677078edcc5108b9b
Author: aris_feryanto <aris_feryanto(a)yahoo.com>
Date: Mon Apr 18 12:51:29 2011 -0400
Patch #3288496 Remove underline when hovering "Create table" button
-----------------------------------------------------------------------
Summary of changes:
themes/pmahomme/css/theme_left.css.php | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php
index 4b24605..cd37a5a 100644
--- a/themes/pmahomme/css/theme_left.css.php
+++ b/themes/pmahomme/css/theme_left.css.php
@@ -220,6 +220,10 @@ div#left_tableList li {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd') !important;
}
+#newtable li a:hover {
+ text-decoration: none;
+}
+
select{
-moz-border-radius:2px 2px 2px 2px;
-moz-box-shadow:0 1px 2px #DDDDDD;
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC1-365-g932b5c2
by Marc Delisle 18 Apr '11
by Marc Delisle 18 Apr '11
18 Apr '11
The branch, master has been updated
via 932b5c2c36ae62d8b65c283d7da88c6b0c151bf2 (commit)
via 14395afa8d5a1a9b34387698c5801ad5cac0ae98 (commit)
from b47903e03fc2f103b10b59e9b988a4ced72e00f6 (commit)
- Log -----------------------------------------------------------------
commit 932b5c2c36ae62d8b65c283d7da88c6b0c151bf2
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Apr 18 12:30:59 2011 -0400
Improve variable name and formatting
commit 14395afa8d5a1a9b34387698c5801ad5cac0ae98
Author: onebighack <onebighack(a)users.sourceforge.net>
Date: Mon Apr 18 12:27:37 2011 -0400
Patch #3276121 Inline link goes missing after table sort
-----------------------------------------------------------------------
Summary of changes:
js/functions.js | 2 +-
libraries/common.lib.php | 9 +++++----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index 502bf39..1016b2f 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1114,7 +1114,7 @@ function changeMIMEType(db, table, reference, mime_type)
$(document).ready(function(){
var oldText,db,table,token,sql_query;
oldText=$(".inner_sql").html();
- $("#inline_edit").click(function(){
+ $("#inline_edit").live('click',function(){
db=$("input[name='db']").val();
table=$("input[name='table']").val();
token=$("input[name='token']").val();
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index ef8c637..8be5c0e 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1133,10 +1133,11 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
if (! empty($GLOBALS['validatequery'])) {
$explain_params['validatequery'] = 1;
}
-
+ $is_select = false;
if (preg_match('@^SELECT[[:space:]]+@i', $sql_query)) {
$explain_params['sql_query'] = 'EXPLAIN ' . $sql_query;
$_message = __('Explain SQL');
+ $is_select = true;
} elseif (preg_match('@^EXPLAIN[[:space:]]+SELECT[[:space:]]+@i', $sql_query)) {
$explain_params['sql_query'] = substr($sql_query, 8);
$_message = __('Skip Explain SQL');
@@ -1254,13 +1255,13 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
// in the tools div, only display the Inline link when not in ajax
// mode because 1) it currently does not work and 2) we would
- // have two similar mechanisms on the page for the same goal
- if ($GLOBALS['is_ajax_request'] === false) {
+ // have two similar mechanisms on the page for the same goal
+ if ($is_select || $GLOBALS['is_ajax_request'] === false) {
// see in js/functions.js the jQuery code attached to id inline_edit
// document.write conflicts with jQuery, hence used $().append()
echo "<script type=\"text/javascript\">\n" .
"//<![CDATA[\n" .
- "$('.tools').append('[<a href=\"#\" title=\"" .
+ "$('.tools form').after('[<a href=\"#\" title=\"" .
PMA_escapeJsString(__('Inline edit of this query')) .
"\" id=\"inline_edit\">" .
PMA_escapeJsString(__('Inline')) .
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. ebed611484517936760194b16598a4838064dd19
by Michal Čihař 18 Apr '11
by Michal Čihař 18 Apr '11
18 Apr '11
The branch, master has been updated
via ebed611484517936760194b16598a4838064dd19 (commit)
via d020c05da90fcf16f1a9284329fde80349406e3c (commit)
via ee589f56efffe93e729fe79acc26396f81970c89 (commit)
via 77e0639c2d8cff37e69a15ca3ee0e4c78409a868 (commit)
via 25870dd5ad91b4bec73dda04d46b2583d6f6a059 (commit)
via fb048853e0b9b426dba99d0edcbddba704c8529b (commit)
from 6509ec400a67874d916ce0249d01aad9c1b3058d (commit)
- Log -----------------------------------------------------------------
commit ebed611484517936760194b16598a4838064dd19
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 18 17:11:47 2011 +0200
Update pot files
commit d020c05da90fcf16f1a9284329fde80349406e3c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 18 17:11:30 2011 +0200
Update generated docs
commit ee589f56efffe93e729fe79acc26396f81970c89
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Apr 18 14:39:34 2011 +0200
Translation update done using Pootle.
commit 77e0639c2d8cff37e69a15ca3ee0e4c78409a868
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Apr 18 14:37:31 2011 +0200
Translation update done using Pootle.
commit 25870dd5ad91b4bec73dda04d46b2583d6f6a059
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Apr 18 14:36:05 2011 +0200
Translation update done using Pootle.
commit fb048853e0b9b426dba99d0edcbddba704c8529b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Apr 18 14:36:01 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 4 +-
output/cs/README | 2 +-
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/pl/Documentation.html | 4 +-
output/pt_BR/Documentation.html | 62 ++++++++++++++-------------
output/pt_BR/README | 2 +-
output/sl/README | 2 +-
output/tr/Documentation.html | 91 ++++++++++++++++++++-------------------
output/tr/README | 2 +-
output/zh_CN/Documentation.html | 4 +-
output/zh_CN/README | 2 +-
po/tr.po | 12 ++++-
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 +-
102 files changed, 196 insertions(+), 509 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index 94f8419..671c28a 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-rc1-dev - Dokumentace</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Dokumentace
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Dokumentace
</h1>
</div>
diff --git a/output/cs/README b/output/cs/README
index 44d8bcd..3e2c6af 100644
--- a/output/cs/README
+++ b/output/cs/README
@@ -1,7 +1,7 @@
phpMyAdmina - čtěte mě
=========================
-Verze 3.4.0-rc1-dev
+Verze 3.4.0-rc2-dev
Sada PHP skriptů pro správu MySQL přes web.
diff --git a/output/el/Documentation.html b/output/el/Documentation.html
index a6a063e..5bfde83 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-rc1-dev</title>
+ <title>Τεκμηρίωση phpMyAdmin 3.4.0-rc2-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-rc1-dev
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev
</h1>
</div>
diff --git a/output/el/README b/output/el/README
index 542ebeb..84f074b 100644
--- a/output/el/README
+++ b/output/el/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-rc1-dev
+Version 3.4.0-rc2-dev
Ένα σύνολο από κώδικες PHP για διαχείριση του MySQL μέσω διαδικτύου.
diff --git a/output/en_GB/Documentation.html b/output/en_GB/Documentation.html
index 3fde174..b1ea483 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-rc1-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
</h1>
</div>
diff --git a/output/en_GB/README b/output/en_GB/README
index 8f7385f..4170848 100644
--- a/output/en_GB/README
+++ b/output/en_GB/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.0-rc1-dev
+Version 3.4.0-rc2-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 771fb60..2019ae7 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-rc1-dev</title>
+ <title>Documentación de phpMyAdmin 3.4.0-rc2-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-rc1-dev Documentación
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentación
</h1>
</div>
diff --git a/output/es/README b/output/es/README
index 8134197..c1ffad2 100644
--- a/output/es/README
+++ b/output/es/README
@@ -1,7 +1,7 @@
phpMyAdmin - Léame
===================
-Versión 3.4.0-rc1-dev
+Versión 3.4.0-rc2-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 2a9ebf9..9a70a17 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-rc1-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
</h1>
</div>
diff --git a/output/fr/README b/output/fr/README
index 6ddbaaf..989d31b 100644
--- a/output/fr/README
+++ b/output/fr/README
@@ -1,7 +1,7 @@
phpMyAdmin - LisezMoi
=====================
-Version 3.4.0-rc1-dev
+Version 3.4.0-rc2-dev
Un ensemble de scripts PHP pour administrer MySQL par Internet.
diff --git a/output/it/Documentation.html b/output/it/Documentation.html
index 6ccd540..66b973e 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-rc1-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
</h1>
</div>
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index 7e5e1e6..bf9782d 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-rc1-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
</h1>
</div>
diff --git a/output/pl/Documentation.html b/output/pl/Documentation.html
index b9cacae..3a9f9e9 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-rc1-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Documentation
</h1>
</div>
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index b71b995..cdfba09 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-rc1-dev - Documentação</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev
</h1>
</div>
@@ -945,42 +945,44 @@ string
<dd>A partir da versão 2.2.4 você pode anotar, em um tabela especial de
'relacionamento', quais columnas representam a chave na outra tabela (uma
chave estrangeira ou foreign key). O phpMyAdmin atualmente utiliza esta para
- <ul><li>tornar 'clicável', quando você pesquisar a tabela mestre (pai), os valores
+ <ul><li>torna 'clicável', quando você pesquisar a tabela mestre (pai), os valores
que referenciam a tabela estrangeira (foreign table);</li>
- <li>display in an optional tool-tip the "display column" when browsing
-the master table, if you move the mouse to a column containing a foreign key
-(use also the 'table_info' table);<br />
+ <li>exibe um tool-tip opcional do "label da coluna" quando procurando
+a tabela mestre(pai), se você mover o mouse para a coluna que contém a chave
+estrangeira(usa também a tabela 'table_info');<br />
(veja <a href="#faqdisplay"><abbr title="Perguntas Frequentes"> FAQ</abbr>
6.7</a>)</li>
- <li>in edit/insert mode, display a drop-down list of possible foreign keys (key
-value and "display column" are shown)<br />
+ <li>no modo editar/inserir, exibe uma lista expandida com as possíveis chaves
+estrangeiras (valor da chave e "label da coluna" são apresentados)<br />
(veja <a href="#faq6_21"><abbr title="Perguntas Frequentes"> FAQ</abbr>
6.21</a>)</li>
- <li>display links on the table properties page, to check referential integrity
-(display missing foreign keys) for each described key;
+ <li>exibe os links na página de propriedades da tabela, para verificar a
+integridade referencial (exibe chave estrangeiras perdidas) para cada chave
+descrita;
</li>
- <li>in query-by-example, create automatic joins (see <a href="#faq6_6"> <abbr
-title="Frequently Asked Questions">FAQ</abbr> 6.6</a>)</li>
- <li>enable you to get a <abbr title="Portable Document Format">PDF</abbr> schema
-of your database (also uses the table_coords table).</li>
+ <li>em consulta-por-exemplo, cria automaticamente os "joins" (veja <a
+href="#faq6_6"> <abbr title="Frequently Asked Questions">FAQ</abbr> 6.6</a>)</li>
+ <li>permite a você gerar um esquema <abbr title="Portable Document
+Format">PDF</abbr> do seu banco de dados (usa também a tabela table_coords).</li>
</ul>
- The keys can be numeric or character.<br /><br />
+ As chaves podem ser numéricas ou caracteres.<br /><br />
Para permtir o uso desta funcionalidade:
<ul><li>configure o banco de dados <a href="#pmadb">pmadb</a> e as configurações de
armazenagem do phpMyAdmin.</li>
- <li>put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt></li>
- <li>now as normal user open phpMyAdmin and for each one of your tables where you
-want to use this feature, click "Structure/Relation view/" and
-choose foreign columns.
+ <li>insira o nome da tabela relacionada em
+<tt>$cfg['Servers'][$i]['relation']</tt></li>
+ <li>agora como um usuário comum abra o phpMyAdmin e para cada uma de suas
+tabelas onde você queira utilizar este recurso, clique em "visão
+Estrutura/Relacionamento/" e escolha as colunas estrangeiras.
</li>
</ul>
- Please note that in the current version, <tt>master_db</tt> must be the same
-as <tt>foreign_db</tt>. Those columns have been put in future development of
-the cross-db relations.
+ Por favor opbserve que na versão atual, <tt>master_db</tt> deve ser o mesmo
+que <tt>foreign_db</tt>. Estas colunas foram colocadas para desenvolvimento
+futuro para relacionamento multi-banco.
</dd>
<dt id="table_info">
@@ -988,18 +990,18 @@ the cross-db relations.
string
</dt>
<dd>
- Since release 2.3.0 you can describe, in a special 'table_info' table, which
-column is to be displayed as a tool-tip when moving the cursor over the
-corresponding key.<br />
- This configuration variable will hold the name of this special table. To
-allow the usage of this functionality:
+ A partir da versão 2.3.0 você pode descrever, em uma tabela 'table_info'
+especial, qual a coluna que que é para ser exibida como um
+"tool-tip" quando mover o cursor sobre a chave correspondente.<br />
+ Esta variável de configuração irá conter o nome desta tabela especial. Para
+permitir o uso desta funcionalidade:
<ul><li>configure o banco de dados <a href="#pmadb">pmadb</a> e as configurações de
armazenagem do phpMyAdmin.</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['table_info']</tt> (e.g.
'pma_table_info')</li>
- <li>then for each table where you want to use this feature, click
-"Structure/Relation view/Choose column to display" to choose the
-column.</li>
+ <li>então, para cada tabela onde você quiser utilizar este recurso, clique
+"Estutura/Relacionamento informa/seleciona a coluna para exibição
+" para que possa selecionar a coluna.</li>
</ul>
Usage tip: <a href="#faqdisplay">Display column</a>.
</dd>
diff --git a/output/pt_BR/README b/output/pt_BR/README
index b00edfc..4c4a99c 100644
--- a/output/pt_BR/README
+++ b/output/pt_BR/README
@@ -1,7 +1,7 @@
phpMyAdmin - Leia-me
====================
-Versão 3.4.0-rc1-dev
+Versão 3.4.0-rc2-dev
A set of PHP-scripts to manage MySQL over the web.
diff --git a/output/sl/README b/output/sl/README
index c5a63c4..4efa5f5 100644
--- a/output/sl/README
+++ b/output/sl/README
@@ -1,7 +1,7 @@
phpMyAdmin - Beri me
====================
-Različica 3.4.0-rc1-dev
+Različica 3.4.0-rc2-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 eabe069..e67c094 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-rc1-dev - Belgeler</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev Belgesi
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev Belgesi
</h1>
</div>
@@ -586,7 +586,7 @@ bağlantısını ziyaret edin.
<p> <span class="important"><acronym title="Apple Macintosh">Mac</acronym>
kullanıcıları için uyarı:</span> PHP <acronym title="Apple
-Macintosh">Mac</acronym> satır sonu karakterinden ("<tt>\r</tt>")
+Macintosh">Mac</acronym> satır sonu karakterinden ("<tt>
</tt>")
hoşlanmıyor gibi görünür. Bu yüzden değiştirdiğiniz betiğinizi kaydetmeden
önce metin düzenleyicinizde *nix satır sonu karakterini
("<tt>\n</tt>") kullanmanıza izin veren seçeneği seçtiğinizden
@@ -1402,8 +1402,8 @@ veritabanı adı sayısı.</dd>
<dt id="cfg_MaxTableList">$cfg['MaxTableList'] tam sayı</dt>
<dd>Ana panelin listesinde (Dışa Aktar sayfasındaki hariç) görüntülenmesi için
-en fazla tablo adı sayısı. Bu sınır aynı zamanda Light kipinde rehber
-panelde zorunludur.</dd>
+en fazla tablo adı sayısı. Bu sınır aynı zamanda Sade kipinde rehber panelde
+zorunludur.</dd>
<dt id="cfg_MaxCharactersInDisplayedSQL">$cfg['MaxCharactersInDisplayedSQL'] tam sayı</dt>
<dd>SQL sorgusu görüntülendiğindeki en fazla karakter sayısı. Varsayılan sınır
@@ -1536,13 +1536,13 @@ verebilir.
<dt id="cfg_LeftFrameLight">$cfg['LeftFrameLight'] boolean</dt>
<dd>Seçim tabanlı menü kullanıp kullanmamayı ve sol çerçevede (daha küçük olan
sayfa) sadece şu anki tabloları görüntüleyip görüntülememeyi
-tanımlar. Sadece Light Olmayan kipte <a href="#cfg_LeftFrameTableSeparator"
+tanımlar. Sadece Sade Olmayan kipte <a href="#cfg_LeftFrameTableSeparator"
class="configrule">$cfg['LeftFrameTableSeparator']</a> kullanarak içiçe
klasörleri görüntülemek için özelliği kullanabilirsiniz.
</dd>
<dt id="cfg_LeftFrameDBTree">$cfg['LeftFrameDBTree'] boolean</dt>
- <dd>Light kipte ağaç görünümü kullanarak veritabanları adlarının (seçicide)
+ <dd>Sade kipte ağaç görünümü kullanarak veritabanları adlarının (seçicide)
görüntülenip görüntülenmemesini tanımlar, aynı zamanda <a
href="#cfg_LeftFrameDBSeparator"
class="configrule">$cfg['LeftFrameDBSeparator']</a>'e bakın.
@@ -1577,54 +1577,55 @@ görüntülenmeyeceğini tanımlar.</dd>
'BenimAdım' adını göreceksiniz ve araç ipucu VT'nin gerçek adını gösterecek.</dd>
<dt id="cfg_ShowTooltipAliasTB">$cfg['ShowTooltipAliasTB'] boolean/dizgisi</dt>
- <dd>Same as <a href="#cfg_ShowTooltipAliasDB"
-class="configrule">$cfg['ShowTooltipAliasDB']</a>, except this works for
-table names. When setting this to 'nested', the Alias of the Tablename is
-only used to split/nest the tables according to the <a
+ <dd>Tablo adlarında işe yaraması hariç, <a href="#cfg_ShowTooltipAliasDB"
+class="configrule">$cfg['ShowTooltipAliasDB']</a> ile aynıdır. Bu 'nested'
+olarak ayarlandığında, Tablo Adı Kod Adı sadece <a
href="#cfg_LeftFrameTableSeparator"
-class="configrule">$cfg['LeftFrameTableSeparator']</a> directive. So only
-the folder is called like the Alias, the tablename itself stays the real
-tablename.</dd>
+class="configrule">$cfg['LeftFrameTableSeparator']</a> yönergesine göre
+tablolaro ayırmak/iç içe koymak için kullanılır. Bu yüzden klasör sadece Kod
+Adı gibi çağırılır, tablo adı kendi gerçek tablo adında kalır.</dd>
<dt id="cfg_LeftDisplayLogo">$cfg['LeftDisplayLogo'] boolean</dt>
- <dd>Defines whether or not to display the phpMyAdmin logo at the top of the left
-frame. Defaults to <tt>TRUE</tt>.</dd>
- <dt id="cfg_LeftLogoLink">$cfg['LeftLogoLink'] string</dt>
- <dd>Enter URL where logo in the navigation frame will point to. For use
-especially with self made theme which changes this. The default value for
-this is <tt>main.php</tt>.</dd>
-
- <dt id="cfg_LeftLogoLinkWindow">$cfg['LeftLogoLinkWindow'] string</dt>
- <dd>Whether to open the linked page in the main window (<tt>main</tt>) or in a
-new one (<tt>new</tt>). Note: use <tt>new</tt> if you are linking to
-<tt>phpmyadmin.net</tt>.</dd>
-
- <dt id="cfg_LeftDisplayTableFilterMinimum">$cfg['LeftDisplayTableFilterMinimum'] integer</dt>
- <dd>Defines the minimum number of tables to display a JavaScript filter box
-above the list of tables in the left frame. Defaults to <tt>30</tt>. To
-disable the filter completely some high number can he used (e.g. 9999)</dd>
+ <dd>Sol çerçevenin en üstünde phpMyAdmin logosunun görüntülenip
+görüntülenmeyeceğini tanımlar. Varsayılanı <tt>TRUE</tt>.</dd>
+ <dt id="cfg_LeftLogoLink">$cfg['LeftLogoLink'] dizgisi</dt>
+ <dd>Rehber çerçevedeki logoyu işaret edecek URL'yi girin. Özellikle bunu
+değiştirecek el yapımı temalarla kullanmak için. Bunun için varsayılan değer
+<tt>main.php</tt>.</dd>
+
+ <dt id="cfg_LeftLogoLinkWindow">$cfg['LeftLogoLinkWindow'] dizgisi</dt>
+ <dd>Bağlantılı sayfayı ana pencerede (<tt>main</tt>) ya da yeni bir pencerede
+(<tt>new</tt>) açıp açmaması. Not: eğer <tt>phpmyadmin.net</tt>'e
+bağlıyorsanız, <tt>new</tt> kullanın.</dd>
+
+ <dt id="cfg_LeftDisplayTableFilterMinimum">$cfg['LeftDisplayTableFilterMinimum'] tam sayı</dt>
+ <dd>Sol çerçeve içinde tablo listesinin altında JavaScript süzgeç kutusunu
+görüntülemek için en az tablo sayısını tanımlar. Varsayılanı
+<tt>30</tt>. Süzgeçi tamamen görüntülemek için bazı yüksek sayılar
+kullanılabilir (örn. 9999)</dd>
<dt id="cfg_LeftDisplayServers">$cfg['LeftDisplayServers'] boolean</dt>
- <dd>Defines whether or not to display a server choice at the top of the left
-frame. Defaults to FALSE.</dd>
+ <dd>Sol çerçevenin en üstünde sunucu seçiminin görüntülenip görüntülenmeyeceğini
+tanımlar. Varsayılanı FALSE.</dd>
<dt id="cfg_DisplayServersList">$cfg['DisplayServersList'] boolean</dt>
- <dd>Defines whether to display this server choice as links instead of in a
-drop-down. Defaults to FALSE (drop-down).</dd>
- <dt id="cfg_DisplayDatabasesList">$cfg['DisplayDatabasesList'] boolean or text</dt>
- <dd>Defines whether to display database choice in light navigation frame as
-links instead of in a drop-down. Defaults to 'auto' - on main page list is
-shown, when database is selected, only drop down is displayed.</dd>
-
- <dt id="cfg_LeftDefaultTabTable">$cfg['LeftDefaultTabTable'] string</dt>
- <dd>Defines the tab displayed by default when clicking the small icon next to
-each table name in the navigation panel. Possible values:
+ <dd>Bu sunucu seçimini aşağı açılır menü yerine bağlantı olarak görüntülenip
+görüntülenmeyeceğini tanımlar. Varsayılanı FALSE (aşağı açılır menü).</dd>
+ <dt id="cfg_DisplayDatabasesList">$cfg['DisplayDatabasesList'] boolean veya metin</dt>
+ <dd>Sade rehber çerçevesi içinde veritabanı seçiminin aşağı açılır menü yerine
+bağlantı olarak görüntülenip görüntülenmeyeceğini tanımlar. Varsayılanı
+'auto' - ana sayfa listesinde gösterilir, veritabanı seçildiğinde sadece
+aşağı açılır menü görüntülenir.</dd>
+
+ <dt id="cfg_LeftDefaultTabTable">$cfg['LeftDefaultTabTable'] dizgi</dt>
+ <dd>Rehber panelde her tablo adının yanındaki küçük simgeye tıklandığında
+varsayılan olarak sekme görüntülenmesini tanımlar. Olası değerler:
"tbl_structure.php", "tbl_sql.php",
-"tbl_select.php", "tbl_change.php" or
+"tbl_select.php", "tbl_change.php" veya
"sql.php".</dd>
<dt id="cfg_ShowStats">$cfg['ShowStats'] boolean</dt>
- <dd>Defines whether or not to display space usage and statistics about databases
-and tables.<br />
+ <dd>Veritabanları ve tablolarla ilgili alan kullanımının ve istatistiklerin
+görüntülenip görüntülenmeyeceğini tanımlar.<br />
Note that statistics requires at least MySQL 3.23.3 and that, at this date,
MySQL doesn't return such information for Berkeley DB tables.</dd>
diff --git a/output/tr/README b/output/tr/README
index af0c33d..4f28838 100644
--- a/output/tr/README
+++ b/output/tr/README
@@ -1,7 +1,7 @@
phpMyAdmin - Benioku
====================
-Sürüm 3.4.0-rc1-dev
+Sürüm 3.4.0-rc2-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 61c552a..0c45abb 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-rc1-dev - 文档</title>
+ <title>phpMyAdmin 3.4.0-rc2-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-rc1-dev 文档
+class="myadmin">MyAdmin</span></a> 3.4.0-rc2-dev 文档
</h1>
</div>
diff --git a/output/zh_CN/README b/output/zh_CN/README
index c1a4530..41bff25 100644
--- a/output/zh_CN/README
+++ b/output/zh_CN/README
@@ -1,7 +1,7 @@
phpMyAdmin - 读我
===================
-版本 3.4.0-rc1-dev
+版本 3.4.0-rc2-dev
使用 PHP 编写,通过 web 管理 MySQL 的工具。
diff --git a/po/tr.po b/po/tr.po
index 2cca184..2c87d37 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-06 10:04+0300\n"
-"PO-Revision-Date: 2011-04-17 11:32+0200\n"
+"PO-Revision-Date: 2011-04-18 14:39+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -4187,11 +4187,16 @@ msgid ""
"tbl_structure.php", "tbl_sql.php", "tbl_select."
"php", "tbl_change.php" or "sql.php"."
msgstr ""
+"Rehber panelde her tablo adının yanındaki küçük simgeye tıklandığında "
+"varsayılan olarak sekme görüntülenmesini tanımlar. Olası değerler: "
+""tbl_structure.php", "tbl_sql.php", "
+""tbl_select.php", "tbl_change.php" veya "
+""sql.php"."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1528
msgid "$cfg['ShowStats'] boolean"
-msgstr ""
+msgstr "$cfg['ShowStats'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1529
@@ -4199,7 +4204,10 @@ msgid ""
"Defines whether or not to display space usage and statistics about databases "
"and tables."
msgstr ""
+"Veritabanları ve tablolarla ilgili alan kullanımının ve istatistiklerin "
+"görüntülenip görüntülenmeyeceğini tanımlar."
+# Unutmayın istatistikler en az MySQL 3.23.3 gerektirir ve
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1531
msgid ""
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 813c495..172d077 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 69ddb7a..d114171 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-full.pot b/pot/cs-full.pot
index eb7bedf..3bd76c4 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-06 10:04+0300\n"
-"PO-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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index 8945df3..f434189 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-06 10:04+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index a12db1f..77723c5 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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-full.pot b/pot/de-full.pot
index 3d33e96..5d6ac15 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-html.pot b/pot/de-html.pot
index 81d4fd3..c5488f5 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/el-full.pot b/pot/el-full.pot
index c523924..fc874f6 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/el-html.pot b/pot/el-html.pot
index 7583cb6..64278ca 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/el-txt.pot b/pot/el-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-full.pot b/pot/en_GB-full.pot
index cf99355..672da1b 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 62999c8..a89c415 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-full.pot b/pot/es-full.pot
index 0a2d836..d932f2c 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-html.pot b/pot/es-html.pot
index f5fadb4..261e2f3 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-full.pot b/pot/fi-full.pot
index d229443..6e93340 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index 9b3dc73..cad5ab7 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-full.pot b/pot/fr-full.pot
index ba921ee..3fd58d2 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-06 10:04+0300\n"
-"PO-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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index 650f517..371e7b9 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-06 10:04+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index a12db1f..77723c5 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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-full.pot b/pot/gl-full.pot
index f0636f7..0f1a93c 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-06 10:04+0300\n"
-"PO-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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index ed687ae..2d9dd71 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-06 10:04+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index a12db1f..77723c5 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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-full.pot b/pot/hu-full.pot
index 35d2718..e4f6b65 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index 44a93ce..ab7c2b4 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-full.pot b/pot/hy-full.pot
index 26c163e..d065f79 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index 58159ed..0e61156 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-full.pot b/pot/it-full.pot
index 405d531..9e8ea5c 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-06 10:04+0300\n"
-"PO-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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-html.pot b/pot/it-html.pot
index c3acdf2..f10ff66 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-06 10:04+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index a12db1f..77723c5 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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-full.pot b/pot/ja-full.pot
index 29d796f..4c0c1f5 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-06 10:04+0300\n"
-"PO-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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index 63fb1d0..09c4472 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-06 10:04+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index a12db1f..77723c5 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-03-13 19:58+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-full.pot b/pot/ka-full.pot
index bba0206..761e2ab 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-06 10:04+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index bc2eda1..2778c02 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-06 10:04+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-full.pot b/pot/lt-full.pot
index 18606bf..83b927d 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index 657a508..6755c13 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-full.pot b/pot/mn-full.pot
index dd771ef..ca44b4c 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index 23ca8fb..e8ffcd1 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-full.pot b/pot/nb-full.pot
index fc14b88..2eb62f8 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-06 10:05+0300\n"
-"PO-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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index 32fba9f..b0b9b93 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-06 10:05+0300\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index b383e34..77723c5 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-03-13 19:59+0100\n"
+"POT-Creation-Date: 2011-04-18 17:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-full.pot b/pot/nl-full.pot
index 4712d3a..eab228c 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-06 10:04+0300\n"
-"PO-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 n VERSION) #-#-#-#-#\n"