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
- 6 participants
- 38807 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-12160-g7180596
by Marc Delisle 30 Jul '11
by Marc Delisle 30 Jul '11
30 Jul '11
The branch, master has been updated
via 7180596152816cc411d943f484f579e67a814f83 (commit)
from 66c0be92d781cd9f2934de49d2e2bd2d76130eea (commit)
- Log -----------------------------------------------------------------
commit 7180596152816cc411d943f484f579e67a814f83
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jul 30 14:13:08 2011 -0400
Typo
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index 94abc30..357e745 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -145,7 +145,7 @@ $js_messages['strMoreCountColumnExplanation'] = __('Since grouping of INSERTs qu
$js_messages['strLogDataLoaded'] = __('Log data loaded. Queries executed in this time span:');
$js_messages['strJumpToTable'] = __('Jump to Log table');
-$js_messages['strNoDataFound'] = __('Log analysed, but not data found in this time span.');
+$js_messages['strNoDataFound'] = __('Log analysed, but no data found in this time span.');
/* l10n: A collection of available filters */
$js_messages['strFilters'] = __('Filters');
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-12159-g66c0be9
by Herman van Rink 30 Jul '11
by Herman van Rink 30 Jul '11
30 Jul '11
The branch, master has been updated
via 66c0be92d781cd9f2934de49d2e2bd2d76130eea (commit)
via 490d614825be48cca105a0fd70d59bf1085a6b0d (commit)
from bf9b723c2bee8fe2d2df523ecd298b94971356e8 (commit)
- Log -----------------------------------------------------------------
commit 66c0be92d781cd9f2934de49d2e2bd2d76130eea
Author: Herman van Rink <rink(a)initfour.nl>
Date: Sat Jul 30 16:24:26 2011 +0200
Possible XSS in chart page
commit 490d614825be48cca105a0fd70d59bf1085a6b0d
Author: Herman van Rink <rink(a)initfour.nl>
Date: Sat Jul 30 14:47:42 2011 +0200
code style cleanup
-----------------------------------------------------------------------
Summary of changes:
tbl_chart.php | 24 +++++++++++++-----------
1 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/tbl_chart.php b/tbl_chart.php
index ac4bed8..06b1e71 100644
--- a/tbl_chart.php
+++ b/tbl_chart.php
@@ -92,30 +92,31 @@ url_query = '<?php echo $url_query;?>';
</span>
<br>
<input type="text" name="chartTitle" value="<?php echo __('Chart title'); ?>">
- <?php $keys = array_keys($data[0]);
- $yaxis=-1;
- if (count($keys)>1) {
+ <?php
+ $keys = array_keys($data[0]);
+ $yaxis = -1;
+ if (count($keys) > 1) {
echo '<br>';
echo __('X-Axis:'); ?> <select name="chartXAxis">
<?php
- foreach ($keys as $idx=>$key) {
- if ($yaxis==-1 && ($idx==count($data[0])-1 || preg_match("/(date|time)/i",$key))) {
- echo '<option value="'.$idx.'" selected>'.$key.'</option>';
+ foreach ($keys as $idx => $key) {
+ if ($yaxis == -1 && (($idx == count($data[0]) - 1) || preg_match("/(date|time)/i", $key))) {
+ echo '<option value="' . htmlspecialchars($idx) . '" selected>' . htmlspecialchars($key) . '</option>';
$yaxis=$idx;
} else {
- echo '<option value="'.$idx.'">'.$key.'</option>';
+ echo '<option value="' . htmlspecialchars($idx) . '">' . htmlspecialchars($key) . '</option>';
}
}
?>
- </select><br>
+ </select><br />
<?php echo __('Series:'); ?>
<select name="chartSeries">
<option value="columns"><?php echo __('The remaining columns'); ?></option>
<?php
- foreach ($keys as $idx=>$key) {
- echo '<option>'.$key.'</option>';
+ foreach ($keys as $idx => $key) {
+ echo '<option>' . htmlspecialchars($key) . '</option>';
}
?>
</select>
@@ -125,7 +126,8 @@ url_query = '<?php echo $url_query;?>';
</div>
<div style="float:left; padding-left:40px;">
- <?php echo __('X-Axis label:'); ?> <input style="margin-top:0;" type="text" name="xaxis_label" value="<?php echo ($yaxis==-1)?__('X Values'):$keys[$yaxis]; ?>"><br>
+ <?php echo __('X-Axis label:'); ?> <input style="margin-top:0;" type="text" name="xaxis_label"
+ value="<?php echo ($yaxis == -1) ? __('X Values') : $keys[$yaxis]; ?>"><br />
<?php echo __('Y-Axis label:'); ?> <input type="text" name="yaxis_label" value="<?php echo __('Y Values'); ?>">
</div>
<p style="clear:both;"> </p>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-12157-gbf9b723
by Marc Delisle 30 Jul '11
by Marc Delisle 30 Jul '11
30 Jul '11
The branch, master has been updated
via bf9b723c2bee8fe2d2df523ecd298b94971356e8 (commit)
from 99b68dff9e6c2a6fb0eeb745095ac910b218eff1 (commit)
- Log -----------------------------------------------------------------
commit bf9b723c2bee8fe2d2df523ecd298b94971356e8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jul 30 07:37:58 2011 -0400
Refresh .po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 8 ++++----
po/ar.po | 8 ++++----
po/az.po | 8 ++++----
po/be.po | 8 ++++----
po/be(a)latin.po | 8 ++++----
po/bg.po | 8 ++++----
po/bn.po | 8 ++++----
po/br.po | 8 ++++----
po/bs.po | 8 ++++----
po/ca.po | 8 ++++----
po/cs.po | 8 ++++----
po/cy.po | 8 ++++----
po/da.po | 8 ++++----
po/de.po | 8 ++++----
po/el.po | 8 ++++----
po/en_GB.po | 8 ++++----
po/es.po | 8 ++++----
po/et.po | 8 ++++----
po/eu.po | 8 ++++----
po/fa.po | 8 ++++----
po/fi.po | 8 ++++----
po/fr.po | 8 ++++----
po/gl.po | 8 ++++----
po/he.po | 8 ++++----
po/hi.po | 8 ++++----
po/hr.po | 8 ++++----
po/hu.po | 8 ++++----
po/id.po | 8 ++++----
po/it.po | 8 ++++----
po/ja.po | 8 ++++----
po/ka.po | 8 ++++----
po/ko.po | 8 ++++----
po/lt.po | 8 ++++----
po/lv.po | 8 ++++----
po/mk.po | 8 ++++----
po/ml.po | 8 ++++----
po/mn.po | 8 ++++----
po/ms.po | 8 ++++----
po/nb.po | 8 ++++----
po/nl.po | 8 ++++----
po/phpmyadmin.pot | 8 ++++----
po/pl.po | 8 ++++----
po/pt.po | 8 ++++----
po/pt_BR.po | 8 ++++----
po/ro.po | 8 ++++----
po/ru.po | 8 ++++----
po/si.po | 8 ++++----
po/sk.po | 8 ++++----
po/sl.po | 8 ++++----
po/sq.po | 8 ++++----
po/sr.po | 8 ++++----
po/sr(a)latin.po | 8 ++++----
po/sv.po | 8 ++++----
po/ta.po | 8 ++++----
po/te.po | 8 ++++----
po/th.po | 8 ++++----
po/tr.po | 8 ++++----
po/tt.po | 8 ++++----
po/ug.po | 8 ++++----
po/uk.po | 8 ++++----
po/ur.po | 8 ++++----
po/uz.po | 8 ++++----
po/uz(a)latin.po | 8 ++++----
po/zh_CN.po | 8 ++++----
po/zh_TW.po | 8 ++++----
65 files changed, 260 insertions(+), 260 deletions(-)
diff --git a/po/af.po b/po/af.po
index 963f563..424a6dc 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -1350,9 +1350,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ar.po b/po/ar.po
index f4f4ffe..36d6a78 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-25 22:07+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10(a)windowslive.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -1323,9 +1323,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/az.po b/po/az.po
index f41f704..a8b28ff 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -1366,9 +1366,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/be.po b/po/be.po
index 2958859..353adb9 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -1389,9 +1389,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index b905275..8dba43b 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -1389,9 +1389,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/bg.po b/po/bg.po
index f429f05..59022ab 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
"Last-Translator: <stoyanster(a)gmail.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -1328,9 +1328,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/bn.po b/po/bn.po
index 23af9d5..c2268b9 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -1375,9 +1375,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/br.po b/po/br.po
index 319b442..da9217d 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-17 21:41+0200\n"
"Last-Translator: Fulup <fulup.jakez(a)ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -1329,9 +1329,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/bs.po b/po/bs.po
index db2e355..245c926 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -1360,9 +1360,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ca.po b/po/ca.po
index 529ad1d..28f3c59 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -1354,9 +1354,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/cs.po b/po/cs.po
index 0187be2..a599041 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-25 15:03+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -1316,9 +1316,9 @@ msgstr "Načítám a analyzuji záznamy. To může chvíli trvat."
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/cy.po b/po/cy.po
index 55c9b56..6ca7637 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies(a)tiscali.co.uk>\n"
"Language-Team: Welsh <cy(a)li.org>\n"
@@ -1355,9 +1355,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/da.po b/po/da.po
index a6d1624..ffd67af 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-23 21:27+0200\n"
"Last-Translator: Jørgen Thomsen <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -1327,9 +1327,9 @@ msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid."
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Denne kolonne viser mængden af identiske forspørgsler, som er grupperet "
"sammen. Dog kun SQL tekst sammenlignes, så de andre attributter af "
diff --git a/po/de.po b/po/de.po
index 3aaacff..f48caf6 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-25 14:55+0200\n"
"Last-Translator: Sven Strickroth <email(a)cs-ware.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -1334,9 +1334,9 @@ msgstr "Analysiere und Lade Protokolle. Dies kann eine Weile dauern."
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Diese Spalte zeigt die Anzahl der identischen Abfragen an, die gruppiert "
"wurden. Dennoch wird nur der SQL-Text verglichen, daher kann die Angabe von "
diff --git a/po/el.po b/po/el.po
index 37656eb..fbd98a5 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-26 18:41+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p(a)yahoo.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -1328,9 +1328,9 @@ msgstr "Ανάλυση & φόρτωση καταγραφών. Αυτό ίσως
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Αυτές οι στήλες δείχνουν τον αριθμό των μοναδικών ερωτημάτων που "
"ομαδοποιήθηκαν. Ωστόσο, μόνο το Κείμενο SQL συγκρίνεται έτσι οι ιδιότητες "
diff --git a/po/en_GB.po b/po/en_GB.po
index d2dc887..666cdcc 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-24 20:54+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -1313,9 +1313,9 @@ msgstr "Analysing & loading logs. This may take a while."
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/es.po b/po/es.po
index 2134518..babcd1c 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-27 16:54+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -1332,9 +1332,9 @@ msgstr "Analizando y cargando registros. Esto puede demorar."
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Esta columna muestra la cantidad de consultas idénticas que fueron "
"agrupadas. Sin embargo, sólo el texto SQL es comparado, por lo que los demás "
diff --git a/po/et.po b/po/et.po
index 912f2a1..aefefdd 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -1378,9 +1378,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/eu.po b/po/eu.po
index 8304dea..b79a46d 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -1364,9 +1364,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/fa.po b/po/fa.po
index a2a7c4e..8d8f767 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007(a)yahoo.com>\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -1330,9 +1330,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/fi.po b/po/fi.po
index fe50edc..dbd5740 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: <asdfsdf(a)asdfasdfasdf.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -1348,9 +1348,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/fr.po b/po/fr.po
index 9d0d01f..3230ab9 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-16 14:57+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -1338,9 +1338,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/gl.po b/po/gl.po
index 8ae35f0..3705693 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -1387,9 +1387,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/he.po b/po/he.po
index 957a266..b9555b8 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: <zippoxer(a)gmail.com>\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -1354,9 +1354,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/hi.po b/po/hi.po
index 3887841..68a642e 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-24 19:04+0200\n"
"Last-Translator: <deadefy(a)nepalimail.com>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -1331,9 +1331,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/hr.po b/po/hr.po
index 6f3f265..bfab151 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -1388,9 +1388,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/hu.po b/po/hu.po
index 9bab999..403e917 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: <slygyor(a)gmail.com>\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -1345,9 +1345,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/id.po b/po/id.po
index 9cf6258..d35b1fd 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: <udin.mx(a)gmail.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -1339,9 +1339,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/it.po b/po/it.po
index 5f08307..3351e92 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-22 19:13+0200\n"
"Last-Translator: Rouslan Placella <rouslan(a)placella.com>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -1334,9 +1334,9 @@ msgstr ""
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Questo campo mostra il numero di query identiche. Tuttavia solo il testo SQL "
"é confrontato, quindi gli altro attributi delle query, come lo 'start time' "
diff --git a/po/ja.po b/po/ja.po
index 850f969..996ef04 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-27 12:14+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -1315,9 +1315,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ka.po b/po/ka.po
index 37333e5..e5cdfdb 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -1384,9 +1384,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ko.po b/po/ko.po
index 51e3447..b32f28a 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: <cihar(a)nvyu.net>\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -1352,9 +1352,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/lt.po b/po/lt.po
index 503aa1e..42d81f2 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
"Last-Translator: Kęstutis <forkik(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -1354,9 +1354,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/lv.po b/po/lv.po
index a956d15..f281aa4 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -1363,9 +1363,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/mk.po b/po/mk.po
index f19c28c..b9b5fda 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: <sjanevski(a)gmail.com>\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -1357,9 +1357,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ml.po b/po/ml.po
index 888b3df..1b88e08 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: Malayalam <ml(a)li.org>\n"
@@ -1286,9 +1286,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/mn.po b/po/mn.po
index c1d214f..bb49901 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -1359,9 +1359,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ms.po b/po/ms.po
index 608068a..ff3ecf6 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -1354,9 +1354,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/nb.po b/po/nb.po
index 260430a..c44b39d 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -1350,9 +1350,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/nl.po b/po/nl.po
index d117510..8f49d56 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>\n"
"Language-Team: dutch <nl(a)li.org>\n"
@@ -1345,9 +1345,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 0ad8276..58def65 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -1288,9 +1288,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/pl.po b/po/pl.po
index f4ae849..13cedaa 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: polish <pl(a)li.org>\n"
@@ -1362,9 +1362,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/pt.po b/po/pt.po
index 8a20171..2394c45 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: <efgpinto(a)gmail.com>\n"
"Language-Team: portuguese <pt(a)li.org>\n"
@@ -1355,9 +1355,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/pt_BR.po b/po/pt_BR.po
index b819dae..a485b9f 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-21 16:15+0200\n"
"Last-Translator: <teunome(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
@@ -1343,9 +1343,9 @@ msgstr "Analisando e carregando logs. Isso pode demorar."
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ro.po b/po/ro.po
index a4dce31..94f8e1e 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: romanian <ro(a)li.org>\n"
@@ -1389,9 +1389,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ru.po b/po/ru.po
index 80020ec..f71a358 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-03 19:50+0200\n"
"Last-Translator: Victor Volkov <hanut(a)php-myadmin.ru>\n"
"Language-Team: russian <ru(a)li.org>\n"
@@ -1336,9 +1336,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/si.po b/po/si.po
index b273bae..81e3c10 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
@@ -1333,9 +1333,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/sk.po b/po/sk.po
index 58ae459..47922ce 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-27 15:32+0200\n"
"Last-Translator: Martin Lacina <martin(a)whistler.sk>\n"
"Language-Team: slovak <sk(a)li.org>\n"
@@ -1324,9 +1324,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/sl.po b/po/sl.po
index 813ab1b..94a5c2f 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-22 11:14+0200\n"
"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
@@ -1331,9 +1331,9 @@ msgstr "Analiziranje in nalaganje dnevnikov. To lahko traja nekaj časa."
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Stolpec prikazuje število identičnih poizvedb, ki so zbrane skupaj. "
"Primerjano je samo besedilo SQL, zato se lahko drugi atributi poizvedb, npr. "
diff --git a/po/sq.po b/po/sq.po
index 601ec05..6c2f578 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: albanian <sq(a)li.org>\n"
@@ -1365,9 +1365,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/sr.po b/po/sr.po
index 285698d..eae6eb7 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: <theranchcowboy(a)googlemail.com>\n"
"Language-Team: serbian_cyrillic <sr(a)li.org>\n"
@@ -1378,9 +1378,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 00d3633..dfab584 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic <sasha.kostic(a)gmail.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@@ -1372,9 +1372,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/sv.po b/po/sv.po
index bd132d7..807fe1d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-07 21:24+0200\n"
"Last-Translator: <stefan(a)inkopsforum.se>\n"
"Language-Team: swedish <sv(a)li.org>\n"
@@ -1324,9 +1324,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ta.po b/po/ta.po
index 9c5ac56..a5c78cf 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
@@ -1296,9 +1296,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/te.po b/po/te.po
index b275868..aab501a 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: <veeven(a)gmail.com>\n"
"Language-Team: Telugu <te(a)li.org>\n"
@@ -1332,9 +1332,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/th.po b/po/th.po
index bf91c85..601ceaf 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-24 11:50+0200\n"
"Last-Translator: Waitaya Krongapiradee <wyte_sk133(a)hotmail.com>\n"
"Language-Team: thai <th(a)li.org>\n"
@@ -1330,9 +1330,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/tr.po b/po/tr.po
index 763a879..389182d 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-25 19:31+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
@@ -1319,9 +1319,9 @@ msgstr "Günlükler çözümleniyor ve yükleniyor. Bu biraz zaman alabilir."
#| "together. However only the SQL Text is being compared, thus the queries "
#| "other attributes such as start time may differ."
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
"Bu sütunlar birlikte gruplanmış özdeş sorguların miktarını gösterir. Ancak "
"sadece SQL Metin karşılaştırılır, böylece başlama zamanı gibi sorgular diğer "
diff --git a/po/tt.po b/po/tt.po
index a18b9aa..0bda55b 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: tatarish <tt(a)li.org>\n"
@@ -1365,9 +1365,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ug.po b/po/ug.po
index 8e2221f..48e64fe 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: <gheni(a)yahoo.cn>\n"
"Language-Team: Uyghur <ug(a)li.org>\n"
@@ -1345,9 +1345,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/uk.po b/po/uk.po
index e36ee9b..db702d4 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-07-03 18:10+0200\n"
"Last-Translator: <vovka2008(a)gmail.com>\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
@@ -1327,9 +1327,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/ur.po b/po/ur.po
index ad01109..752ab91 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan <mehboobbugti(a)gmail.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -1351,9 +1351,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/uz.po b/po/uz.po
index b2452c6..5cc1013 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: uzbek_cyrillic <uz(a)li.org>\n"
@@ -1391,9 +1391,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 4cd4995..fb733cc 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -1396,9 +1396,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/zh_CN.po b/po/zh_CN.po
index b8f4f65..754f887 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-06-08 05:00+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
@@ -1320,9 +1320,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 7102bc4..528e07d 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 10:27-0400\n"
+"POT-Creation-Date: 2011-07-30 07:37-0400\n"
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
"Last-Translator: <star(a)origin.club.tw>\n"
"Language-Team: chinese_traditional <zh_TW(a)li.org>\n"
@@ -1315,9 +1315,9 @@ msgstr ""
#: js/messages.php:143
msgid ""
-"This columns shows the amount of identical queries that are grouped "
-"together. However only the SQL Text is being compared, thus the queries of "
-"other attributes such as start time may differ."
+"This column shows the amount of identical queries that are grouped together. "
+"However only the SQL query itself has been used as a grouping criteria, so "
+"the other attributes of queries, such as start time, may differ."
msgstr ""
#: js/messages.php:144
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-12156-g99b68df
by Marc Delisle 30 Jul '11
by Marc Delisle 30 Jul '11
30 Jul '11
The branch, master has been updated
via 99b68dff9e6c2a6fb0eeb745095ac910b218eff1 (commit)
from 018330f082945be0df555c9a917daa29fe24fd4c (commit)
- Log -----------------------------------------------------------------
commit 99b68dff9e6c2a6fb0eeb745095ac910b218eff1
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jul 30 07:36:14 2011 -0400
Better wording
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index 69d940c..94abc30 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -140,7 +140,7 @@ $js_messages['strDividedBy'] = __('Divided by %s:');
$js_messages['strFromSlowLog'] = __('From slow log');
$js_messages['strFromGeneralLog'] = __('From general log');
$js_messages['strAnalysingLogs'] = __('Analysing & loading logs. This may take a while.');
-$js_messages['strCountColumnExplanation'] = __('This columns shows the amount of identical queries that are grouped together. However only the SQL Text is being compared, thus the queries of other attributes such as start time may differ.');
+$js_messages['strCountColumnExplanation'] = __('This column shows the amount of identical queries that are grouped together. However only the SQL query itself has been used as a grouping criteria, so the other attributes of queries, such as start time, may differ.');
$js_messages['strMoreCountColumnExplanation'] = __('Since grouping of INSERTs queries has been selected, INSERT queries into the same table are also being grouped together, disregarding of the inserted data.');
$js_messages['strLogDataLoaded'] = __('Log data loaded. Queries executed in this time span:');
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-12155-g018330f
by Marc Delisle 29 Jul '11
by Marc Delisle 29 Jul '11
29 Jul '11
The branch, master has been updated
via 018330f082945be0df555c9a917daa29fe24fd4c (commit)
from d32011572cf1c953b0ce687f4507dbb518332021 (commit)
- Log -----------------------------------------------------------------
commit 018330f082945be0df555c9a917daa29fe24fd4c
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri Jul 29 10:29:16 2011 -0400
Refresh .po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 101 ++++++++++++++++++---------------------
po/ar.po | 101 ++++++++++++++++++---------------------
po/az.po | 101 ++++++++++++++++++---------------------
po/be.po | 101 ++++++++++++++++++---------------------
po/be(a)latin.po | 101 ++++++++++++++++++---------------------
po/bg.po | 101 ++++++++++++++++++---------------------
po/bn.po | 101 ++++++++++++++++++---------------------
po/br.po | 101 ++++++++++++++++++---------------------
po/bs.po | 101 ++++++++++++++++++---------------------
po/ca.po | 101 ++++++++++++++++++---------------------
po/cs.po | 103 +++++++++++++++++++---------------------
po/cy.po | 101 ++++++++++++++++++---------------------
po/da.po | 136 ++++++++++++++++++++++++++++++---------------------
po/de.po | 136 ++++++++++++++++++++++++++++++---------------------
po/el.po | 138 +++++++++++++++++++++++++++++++---------------------
po/en_GB.po | 101 ++++++++++++++++++---------------------
po/es.po | 138 +++++++++++++++++++++++++++++++---------------------
po/et.po | 101 ++++++++++++++++++---------------------
po/eu.po | 101 ++++++++++++++++++---------------------
po/fa.po | 101 ++++++++++++++++++---------------------
po/fi.po | 101 ++++++++++++++++++---------------------
po/fr.po | 101 ++++++++++++++++++---------------------
po/gl.po | 101 ++++++++++++++++++---------------------
po/he.po | 101 ++++++++++++++++++---------------------
po/hi.po | 101 ++++++++++++++++++---------------------
po/hr.po | 101 ++++++++++++++++++---------------------
po/hu.po | 101 ++++++++++++++++++---------------------
po/id.po | 101 ++++++++++++++++++---------------------
po/it.po | 101 ++++++++++++++++++---------------------
po/ja.po | 110 +++++++++++++++++++++---------------------
po/ka.po | 101 ++++++++++++++++++---------------------
po/ko.po | 101 ++++++++++++++++++---------------------
po/lt.po | 101 ++++++++++++++++++---------------------
po/lv.po | 101 ++++++++++++++++++---------------------
po/mk.po | 101 ++++++++++++++++++---------------------
po/ml.po | 101 ++++++++++++++++++---------------------
po/mn.po | 101 ++++++++++++++++++---------------------
po/ms.po | 101 ++++++++++++++++++---------------------
po/nb.po | 101 ++++++++++++++++++---------------------
po/nl.po | 101 ++++++++++++++++++---------------------
po/phpmyadmin.pot | 101 ++++++++++++++++++---------------------
po/pl.po | 101 ++++++++++++++++++---------------------
po/pt.po | 101 ++++++++++++++++++---------------------
po/pt_BR.po | 101 ++++++++++++++++++---------------------
po/ro.po | 101 ++++++++++++++++++---------------------
po/ru.po | 101 ++++++++++++++++++---------------------
po/si.po | 101 ++++++++++++++++++---------------------
po/sk.po | 101 ++++++++++++++++++---------------------
po/sl.po | 136 ++++++++++++++++++++++++++++++---------------------
po/sq.po | 101 ++++++++++++++++++---------------------
po/sr.po | 101 ++++++++++++++++++---------------------
po/sr(a)latin.po | 101 ++++++++++++++++++---------------------
po/sv.po | 101 ++++++++++++++++++---------------------
po/ta.po | 101 ++++++++++++++++++---------------------
po/te.po | 101 ++++++++++++++++++---------------------
po/th.po | 101 ++++++++++++++++++---------------------
po/tr.po | 127 +++++++++++++++++++++++++++---------------------
po/tt.po | 101 ++++++++++++++++++---------------------
po/ug.po | 101 ++++++++++++++++++---------------------
po/uk.po | 101 ++++++++++++++++++---------------------
po/ur.po | 101 ++++++++++++++++++---------------------
po/uz.po | 101 ++++++++++++++++++---------------------
po/uz(a)latin.po | 101 ++++++++++++++++++---------------------
po/zh_CN.po | 101 ++++++++++++++++++---------------------
po/zh_TW.po | 101 ++++++++++++++++++---------------------
65 files changed, 3260 insertions(+), 3521 deletions(-)
diff --git a/po/af.po b/po/af.po
index c799af4..963f563 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -1172,11 +1172,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "MB"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "KB"
@@ -1221,7 +1221,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "Geen"
@@ -1321,7 +1321,7 @@ msgstr "Algemene verwantskap funksies"
msgid "Current settings"
msgstr "Algemene verwantskap funksies"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
msgid "Chart Title"
msgstr "Geen tabelle"
@@ -1390,7 +1390,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -9707,137 +9707,130 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "Gebruik"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "Gebruik"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Kies Tabelle"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
msgid "Add this series"
msgstr "Voeg 'n nuwe gebruiker by"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-stelling"
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
msgid "Loading logs"
msgstr "Local"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
msgid "Log statistics"
msgstr "Ry Statistiek"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Kies Alles"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "Navraag dmv Voorbeeld"
-#: server_status.php:1512
+#: server_status.php:1501
#, fuzzy, php-format
#| msgid "Records"
msgid "%d second"
@@ -9845,7 +9838,7 @@ msgid_plural "%d seconds"
msgstr[0] "Rekords"
msgstr[1] "Rekords"
-#: server_status.php:1514
+#: server_status.php:1503
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
diff --git a/po/ar.po b/po/ar.po
index 1ed51e8..f4f4ffe 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2011-07-25 22:07+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10(a)windowslive.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -1146,11 +1146,11 @@ msgstr "ذاكرة النظام"
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "ميجابايت"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "كيلوبايت"
@@ -1191,7 +1191,7 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة"
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "لا شيء"
@@ -1291,7 +1291,7 @@ msgstr "المزايا العامّة للرابط"
msgid "Current settings"
msgstr "المزايا العامّة للرابط"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1364,7 +1364,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -9698,141 +9698,134 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "المساحة"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "المساحة"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "اختر الجداول"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "اسم الجدول غير صالح"
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "أضف مستخدم جديد"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "تحميل"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "إحصائيات"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "اختر الجداول"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "نوع الاستعلام"
-#: server_status.php:1512
+#: server_status.php:1501
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -9844,7 +9837,7 @@ msgstr[3] "الثانية"
msgstr[4] "الثانية"
msgstr[5] "الثانية"
-#: server_status.php:1514
+#: server_status.php:1503
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
diff --git a/po/az.po b/po/az.po
index 0acad1a..f41f704 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -1187,11 +1187,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "MB"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "KB"
@@ -1236,7 +1236,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "Heç biri"
@@ -1336,7 +1336,7 @@ msgstr "Ümumi elaqe variantları"
msgid "Current settings"
msgstr "Ümumi elaqe variantları"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1406,7 +1406,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -9896,137 +9896,130 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "Miqdar"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "Miqdar"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Select Tables"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
msgid "Add this series"
msgstr "Yeni İstifadeçi elave Et"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL sorğusu"
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
msgid "Loading logs"
msgstr "Yerli"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
msgid "Log statistics"
msgstr "Sıra Statistikası"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Hamısını Seç"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Sorğu tipi"
-#: server_status.php:1512
+#: server_status.php:1501
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10034,7 +10027,7 @@ msgid_plural "%d seconds"
msgstr[0] "saniyede"
msgstr[1] "saniyede"
-#: server_status.php:1514
+#: server_status.php:1503
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
diff --git a/po/be.po b/po/be.po
index 11ae827..2958859 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -1207,11 +1207,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "МіБ"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "КiБ"
@@ -1259,7 +1259,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "Няма"
@@ -1359,7 +1359,7 @@ msgstr "Магчымасьці асноўных сувязяў"
msgid "Current settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1431,7 +1431,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -10303,139 +10303,132 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "Выкарыстаньне"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "Выкарыстаньне"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Выберыце табліцу(ы)"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Некарэктнае імя табліцы"
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
msgid "Add this series"
msgstr "Дадаць новага карыстальніка"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-запыт"
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
msgid "Loading logs"
msgstr "Лякальны"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
msgid "Log statistics"
msgstr "Статыстыка радку"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Выбраць усё"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тып запыту"
-#: server_status.php:1512
+#: server_status.php:1501
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10443,7 +10436,7 @@ msgid_plural "%d seconds"
msgstr[0] "у сэкунду"
msgstr[1] "у сэкунду"
-#: server_status.php:1514
+#: server_status.php:1503
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 00fd13b..b905275 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -1206,11 +1206,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "MiB"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "KiB"
@@ -1259,7 +1259,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "Nijakaja"
@@ -1359,7 +1359,7 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ"
msgid "Current settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1430,7 +1430,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -10280,141 +10280,134 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "Vykarystańnie"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "Vykarystańnie"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Vybierycie tablicu(y)"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Niekarektnaje imia tablicy"
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "Dadać novaha karystalnika"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
#| msgid "Reload privileges"
msgid "Loading logs"
msgstr "Pierazahruzić pryvilei"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "Statystyka radku"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Vybrać usio"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Typ zapytu"
-#: server_status.php:1512
+#: server_status.php:1501
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10423,7 +10416,7 @@ msgstr[0] "u sekundu"
msgstr[1] "u sekundu"
msgstr[2] "u sekundu"
-#: server_status.php:1514
+#: server_status.php:1503
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
diff --git a/po/bg.po b/po/bg.po
index e5f6216..f429f05 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
"Last-Translator: <stoyanster(a)gmail.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -1147,11 +1147,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "МБ"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "КБ"
@@ -1196,7 +1196,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "Няма"
@@ -1296,7 +1296,7 @@ msgstr "Управление мои настройки"
msgid "Current settings"
msgstr "Още"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Chart title"
msgid "Chart Title"
@@ -1371,7 +1371,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -9428,150 +9428,143 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "Използвани"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "Използвани"
-#: server_status.php:1405
+#: server_status.php:1394
#, fuzzy
#| msgid "All status variables"
msgid "Status variable(s)"
msgstr "Всички променливи на състоянието"
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Избор на таблици"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
#, fuzzy
#| msgid "You must provide a valid table name"
msgid "or type variable name:"
msgstr "Трябва да дадете име на таблица на тригера"
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
#| msgid "Add trigger"
msgid "Add this series"
msgstr "Нов тригер"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Зареждане"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Показване статистика"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Избор на страница"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тип на заявката"
-#: server_status.php:1512
+#: server_status.php:1501
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d секунда"
msgstr[1] "%d секунди"
-#: server_status.php:1514
+#: server_status.php:1503
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
diff --git a/po/bn.po b/po/bn.po
index 12f1a69..23af9d5 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -1195,11 +1195,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "মেগাবাইট"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "কিলোবাইট"
@@ -1245,7 +1245,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "কোনটিই নয়"
@@ -1345,7 +1345,7 @@ msgstr "General relation features"
msgid "Current settings"
msgstr "General relation features"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1417,7 +1417,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -10168,139 +10168,132 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "ব্যাবহার"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "ব্যাবহার"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "টেবিল সিলেক্ট করুন"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Invalid table name"
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
msgid "Add this series"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL query"
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
msgid "Loading logs"
msgstr "লোকাল"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
msgid "Log statistics"
msgstr "Row Statistics"
-#: server_status.php:1460
+#: server_status.php:1449
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "সব সিলেক্ট করুন"
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Query type"
-#: server_status.php:1512
+#: server_status.php:1501
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10308,7 +10301,7 @@ msgid_plural "%d seconds"
msgstr[0] "per second"
msgstr[1] "per second"
-#: server_status.php:1514
+#: server_status.php:1503
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
diff --git a/po/br.po b/po/br.po
index 6a5c2db..319b442 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2011-07-17 21:41+0200\n"
"Last-Translator: Fulup <fulup.jakez(a)ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -1153,11 +1153,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "Mio"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "Kio"
@@ -1202,7 +1202,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr ""
@@ -1301,7 +1301,7 @@ msgstr "Heuliañ ar c'hemmoù"
msgid "Current settings"
msgstr "Arventennoù pouezus all"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
msgid "Chart Title"
msgstr ""
@@ -1370,7 +1370,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -9382,140 +9382,133 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
msgid "CPU Usage"
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
msgid "Swap Usage"
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Foreign Key"
msgid "Select series:"
msgstr "Diuzit an alc'hwez estren"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1413
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Anv taolenn direizh"
-#: server_status.php:1428
+#: server_status.php:1417
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1419
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1426
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1443
+#: server_status.php:1432
#, fuzzy
#| msgid "Add user"
msgid "Add this series"
msgstr "Ouzhpennañ un implijer"
-#: server_status.php:1445
+#: server_status.php:1434
msgid "Clear series"
msgstr ""
-#: server_status.php:1448
+#: server_status.php:1437
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1456
+#: server_status.php:1445
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "O kargañ"
-#: server_status.php:1459
+#: server_status.php:1448
#, fuzzy
#| msgid "Query statistics"
msgid "Log statistics"
msgstr "Stadegoù war ar rekedoù"
-#: server_status.php:1460
+#: server_status.php:1449
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1465
+#: server_status.php:1454
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1470
+#: server_status.php:1459
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1473
+#: server_status.php:1462
msgid ""
"<p>Choose from which log you want the statistics to be generated from.</p> "
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1476
+#: server_status.php:1465
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1501
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1514
+#: server_status.php:1503
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
diff --git a/po/bs.po b/po/bs.po
index 65d96c0..db2e355 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-29 09:55-0400\n"
+"POT-Creation-Date: 2011-07-29 10:27-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -1181,11 +1181,11 @@ msgstr ""
msgid "System swap"
msgstr ""
-#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:97 libraries/common.lib.php:1274 server_status.php:1422
msgid "MiB"
msgstr "MB"
-#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1433
+#: js/messages.php:98 libraries/common.lib.php:1274 server_status.php:1422
msgid "KiB"
msgstr "KB"
@@ -1230,7 +1230,7 @@ msgstr ""
#: js/messages.php:110 libraries/display_export.lib.php:306
#: libraries/display_tbl.lib.php:561 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:562 pmd_general.php:510
-#: server_privileges.php:2041 server_status.php:1054 server_status.php:1450
+#: server_privileges.php:2041 server_status.php:1054 server_status.php:1439
msgid "None"
msgstr "nema"
@@ -1330,7 +1330,7 @@ msgstr "Opšte osobine relacija"
msgid "Current settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:135 server_status.php:1393
+#: js/messages.php:135 server_status.php:1382
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1400,7 +1400,7 @@ msgid "Filter queries by word/regexp:"
msgstr ""
#: js/messages.php:155
-msgid "Group queries, ignoring variable data in WHERE statements"
+msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
#: js/messages.php:156
@@ -9879,137 +9879,130 @@ msgstr ""
#: server_status.php:1364
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
-"and track down time intensive\n"
-" queries. For the latter you will need to set log_output to 'TABLE' "
-"and have either the slow_query_log or general_log enabled. Note however, "
-"that the\n"
-" general_log produces a lot of data and increases server load by up "
-"to 15%"
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1373
+#: server_status.php:1371
msgid ""
-"<b>Using the monitor:</b><br/>\n"
-" Ok, you are good to go! Once you click 'Start monitor' your browser "
-"will refresh all displayed charts\n"
-" in a regular interval. You may add charts and change the refresh "
-"rate under 'Settings', or remove any chart\n"
-" using the cog icon on each respective chart.\n"
-" <p>When you get to see a sudden spike in activity, select the "
-"relevant time span on any chart by holding down the\n"
-" left mouse button and panning over the chart. This will load "
-"statistics from the logs helping you find what caused the\n"
-" activity spike.</p>"
+"<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click 'Start "
+"monitor' your browser will refresh all displayed charts in a regular "
+"interval. You may add charts and change the refresh rate under 'Settings', "
+"or remove any chart using the cog icon on each respective chart.<p>When you "
+"get to see a sudden spike in activity, select the relevant time span on any "
+"chart by holding down the left mouse button and panning over the chart. This "
+"will load statistics from the logs helping you find what caused the activity "
+"spike.</p>"
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1375
msgid ""
-"<b>Please note:</b>\n"
-" Enabling the general_log may increase the server load by 5-15%. Also "
-"be aware that generating statistics from the logs is a\n"
-" load intensive task, so it is advisable to select only a small time "
-"span and to disable the general_log and empty its table once monitoring is "
-"not required any more.\n"
-" "
+"<b>Please note:</b> Enabling the general_log may increase the server load by "
+"5-15%. Also be aware that generating statistics from the logs is a load "
+"intensive task, so it is advisable to select only a small time span and to "
+"disable the general_log and empty its table once monitoring is not required "
+"any more."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1385
#, fuzzy
#| msgid "Usage"
msgid "CPU Usage"
msgstr "Zauzeće"
-#: server_status.php:1399
+#: server_status.php:1388
msgid "Memory Usage"
msgstr ""
-#: server_status.php:1402
+#: server_status.php:1391
#, fuzzy
#| msgid "Usage"
msgid "Swap Usage"
msgstr "Zauzeće"
-#: server_status.php:1405
+#: server_status.php:1394
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1396
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Izaberi tabele"
-#: server_status.php:1409
+#: server_status.php:1398
msgid "Commonly monitored"
msgstr ""
-#: serv "