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

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA2-1967-g07ff694
by Marc Delisle 09 Dec '10
by Marc Delisle 09 Dec '10
09 Dec '10
The branch, master has been updated
via 07ff69495bbb23dae1213b3b301da25ea7e9b851 (commit)
from b924bc7c112f5ed6f80da7f195687ce632feacf9 (commit)
- Log -----------------------------------------------------------------
commit 07ff69495bbb23dae1213b3b301da25ea7e9b851
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Dec 9 13:26:05 2010 -0500
bug #3125624 Inline editing fails when just one row (fixed for LTR languages in horizontal and vertical modes)
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index 57cb761..97cc42f 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -28,15 +28,23 @@ function getFieldName($this_field, disp_mode) {
if(disp_mode == 'vertical') {
var field_name = $this_field.siblings('th').find('a').text();
+ // happens when just one row (headings contain no a)
+ if ("" == field_name) {
+ field_name = $this_field.siblings('th').text();
+ }
}
else {
var this_field_index = $this_field.index();
if(window.parent.text_dir == 'ltr') {
// 4 columns to account for the checkbox, edit, delete and appended inline edit anchors but index is zero-based so substract 3
- var field_name = $this_field.parents('table').find('thead').find('th:nth('+ (this_field_index-3 )+') a').text();
+ var field_name = $('#table_results').find('thead').find('th:nth('+ (this_field_index-3 )+') a').text();
+ // happens when just one row (headings contain no a)
+ if ("" == field_name) {
+ field_name = $('#table_results').find('thead').find('th:nth('+ (this_field_index-3 )+')').text();
+ }
}
else {
- var field_name = $this_field.parents('table').find('thead').find('th:nth('+ this_field_index+') a').text();
+ var field_name = $('#table_results').find('thead').find('th:nth('+ this_field_index+') a').text();
}
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA2-1966-gb924bc7
by Michal Čihař 09 Dec '10
by Michal Čihař 09 Dec '10
09 Dec '10
The branch, master has been updated
via b924bc7c112f5ed6f80da7f195687ce632feacf9 (commit)
via 2ba852dc5ca3dc9d2697ee29bd11ad61ab987553 (commit)
via bc0b9fa744bd1b1a7ff460f728248e581ee106f0 (commit)
via b1103e2db99405d032a230ed50f0b88b799605a3 (commit)
via f805097b86fabd3d4c8dff1f2324efdae1ca0d70 (commit)
from c8711412367d492e94d6c2de1ff3b6b716198005 (commit)
- Log -----------------------------------------------------------------
commit b924bc7c112f5ed6f80da7f195687ce632feacf9
Merge: c8711412367d492e94d6c2de1ff3b6b716198005 2ba852dc5ca3dc9d2697ee29bd11ad61ab987553
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Dec 9 14:19:35 2010 +0100
Merge branch 'QA_3_3'
Conflicts:
pdf_pages.php
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA2-1961-gc871141
by Marc Delisle 09 Dec '10
by Marc Delisle 09 Dec '10
09 Dec '10
The branch, master has been updated
via c8711412367d492e94d6c2de1ff3b6b716198005 (commit)
from ec9af602896171c65bc48ebe7fffef8592ccdaf5 (commit)
- Log -----------------------------------------------------------------
commit c8711412367d492e94d6c2de1ff3b6b716198005
Author: Adnan <hiddenpearls(a)gmail.com>
Date: Thu Dec 9 08:03:59 2010 -0500
bug #3112614 [pdf schema] Scratchboard for PDF pages not working
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 9d4692b..c21fe3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -136,6 +136,7 @@
- bug #1762306 [core] Copy database with view of a view
- patch #3117535 [replication] Add quotes to database in initial statement,
thanks to Craig Duncan - duncan3dc
+- bug #3112614 [pdf schema] Scratchboard for PDF pages not working
3.3.8.1 (2010-11-29)
- bug #3115519 (private) [security] XSS on db search, see PMASA-2010-8
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_8-21-g2ba852d
by Marc Delisle 09 Dec '10
by Marc Delisle 09 Dec '10
09 Dec '10
The branch, QA_3_3 has been updated
via 2ba852dc5ca3dc9d2697ee29bd11ad61ab987553 (commit)
from bc0b9fa744bd1b1a7ff460f728248e581ee106f0 (commit)
- Log -----------------------------------------------------------------
commit 2ba852dc5ca3dc9d2697ee29bd11ad61ab987553
Author: Adnan <hiddenpearls(a)gmail.com>
Date: Thu Dec 9 08:01:51 2010 -0500
bug #3112614 [pdf schema] Scratchboard for PDF pages not working
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
pdf_pages.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f25d225..dca7d9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #1762306 [core] Copy database with view of a view
- patch #3117535 [replication] Add quotes to database in initial statement,
thanks to Craig Duncan - duncan3dc
+- bug #3112614 [pdf schema] Scratchboard for PDF pages not working
3.3.8.1 (2010-11-29)
- bug #3115519 (private) [security] XSS on db search, see PMASA-2010-8
diff --git a/pdf_pages.php b/pdf_pages.php
index 4ec0601..a196b9b 100644
--- a/pdf_pages.php
+++ b/pdf_pages.php
@@ -351,7 +351,7 @@ foreach ($array_sh_page AS $key => $temp_sh_page) {
$drag_y = $temp_sh_page['y'];
$draginit2 .= ' Drag.init(getElement("table_' . $i . '"), null, 0, parseInt(myid.style.width)-2, 0, parseInt(myid.style.height)-5);' . "\n";
- $draginit .= ' getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
+ $draginit2 .= ' getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
$draginit .= ' getElement("table_' . $i . '").style.left = "' . $drag_x . 'px";' . "\n";
$draginit .= ' getElement("table_' . $i . '").style.top = "' . $drag_y . 'px";' . "\n";
$reset_draginit .= ' getElement("table_' . $i . '").style.left = "2px";' . "\n";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. c3cc729c0f41ece08527a2bdaf7a4bf99fad021e
by Michal Čihař 09 Dec '10
by Michal Čihař 09 Dec '10
09 Dec '10
The branch, master has been updated
via c3cc729c0f41ece08527a2bdaf7a4bf99fad021e (commit)
via 031cb5f6778e1bbf31a646e739242160d723a02e (commit)
via 180eb2b8dfc03a9e8386e7d5c900735809181f86 (commit)
via f171f75ce3eb9769c496e95fe6251983565788c6 (commit)
via b6e3589709548a9704689112218f8a9208129e70 (commit)
via 0934b4883d3191063fcf3e29eb3c6132cd599b55 (commit)
via 00aff39e7d0a367824085dcb2db64762d3a48af9 (commit)
via 68993df44f8c0024e1fdec244dc44b3779b1895e (commit)
via 0c2dd56040da788fa70f3f232c206a075635b7cc (commit)
via 788a857e9d855dc7a3f7ef4b87056170ec126e68 (commit)
from 82de744d367dce27ca701b0df66ef64318dd548d (commit)
- Log -----------------------------------------------------------------
commit c3cc729c0f41ece08527a2bdaf7a4bf99fad021e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Dec 9 09:45:06 2010 +0100
Generate translated docs
commit 031cb5f6778e1bbf31a646e739242160d723a02e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:40:57 2010 +0200
Translation update done using Pootle.
commit 180eb2b8dfc03a9e8386e7d5c900735809181f86
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:38:37 2010 +0200
Translation update done using Pootle.
commit f171f75ce3eb9769c496e95fe6251983565788c6
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:36:19 2010 +0200
Translation update done using Pootle.
commit b6e3589709548a9704689112218f8a9208129e70
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:35:08 2010 +0200
Translation update done using Pootle.
commit 0934b4883d3191063fcf3e29eb3c6132cd599b55
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:34:50 2010 +0200
Translation update done using Pootle.
commit 00aff39e7d0a367824085dcb2db64762d3a48af9
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:34:44 2010 +0200
Translation update done using Pootle.
commit 68993df44f8c0024e1fdec244dc44b3779b1895e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:34:38 2010 +0200
Translation update done using Pootle.
commit 0c2dd56040da788fa70f3f232c206a075635b7cc
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:34:23 2010 +0200
Translation update done using Pootle.
commit 788a857e9d855dc7a3f7ef4b87056170ec126e68
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:33:58 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/tr/README | 7 +++----
output/tr/translators.html | 7 +++----
po/tr.po | 31 +++++++++++++------------------
3 files changed, 19 insertions(+), 26 deletions(-)
diff --git a/output/tr/README b/output/tr/README
index 5316e34..a8662c4 100644
--- a/output/tr/README
+++ b/output/tr/README
@@ -3,8 +3,8 @@ phpMyAdmin - Benioku
A set of PHP-scripts to manage MySQL over the web.
-Version 3.4.0-alpha3-dev
-------------------------
+Sürüm 3.4.0-dev
+-----------------
http://www.phpmyadmin.net/
@@ -60,8 +60,7 @@ Lütfen Documentation.txt/.html dosyasını okuyun.
Destek
~~~~~~
-http://www.phpmyadmin.net/ adresindeki destek forumlarındaki referansa
-bakınız.
+http://www.phpmyadmin.net/ adresindeki destek forumlarında referansa bakınız
Keyfini Çıkarın!
diff --git a/output/tr/translators.html b/output/tr/translators.html
index 877411e..715e0d6 100644
--- a/output/tr/translators.html
+++ b/output/tr/translators.html
@@ -21,7 +21,7 @@ düzenleyebilirisiniz.
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-alpha3-dev - Official translators</title>
+ <title>phpMyAdmin 3.4.0-dev - Resmi çevirmenleri</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -29,8 +29,7 @@ düzenleyebilirisiniz.
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-alpha3-dev official translators
-list
+class="myadmin">MyAdmin</span></a> 3.4.0-dev resmi çevirmenler listesi
</h1>
</div>
@@ -139,7 +138,7 @@ provide e-mail support.</span></p>
</tr>
<tr id="brazilian_portuguese">
- <td>Portekizce (Brezilya)</td>
+ <td>Brezilya Portekizcesi</td>
<td>
Airon Luis Pereira (thedarkness(a)users.sourceforge.net)
</td>
diff --git a/po/tr.po b/po/tr.po
index b6675a8..9a6c4d5 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-03 13:31+0100\n"
-"PO-Revision-Date: 2010-12-01 19:14+0200\n"
+"PO-Revision-Date: 2010-12-09 00:40+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -20,19 +20,17 @@ msgstr ""
#. type: Content of: <html><head><title>
#: ../phpmyadmin/Documentation.html:12
-#, fuzzy
msgid "phpMyAdmin 3.4.0-alpha3-dev - Documentation"
-msgstr "phpMyAdmin 3.5.0-dev - Belgesi"
+msgstr "phpMyAdmin 3.4.0-dev - Belgesi"
#. type: Content of: <html><body><div><h1>
#: ../phpmyadmin/Documentation.html:19
-#, fuzzy
msgid ""
"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
"span></a> 3.4.0-alpha3-dev Documentation"
msgstr ""
-"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
-"span></a> 3.5.0-dev Belgesi"
+"<a href=\"http://www.phpmyadmin.net/\">php<span "
+"class=\"myadmin\">MyAdmin</span></a> 3.4.0-dev Belgesi"
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:27 ../phpmyadmin/translators.html:28
@@ -207,8 +205,8 @@ msgid ""
"To support upload progress bars, see <a href=\"#faq2_9\"> <abbr title="
"\"Frequently Asked Questions\">FAQ</abbr> 2.9</a>."
msgstr ""
-"Gönderme ilerleme çubukları desteği için <a href=\"#faq2_9\"> <abbr title="
-"\"Sıkça Sorulan Sorular\">FAQ</abbr> 2.9</a>'a bakın."
+"Gönderme ilerleme çubukları desteği için <a href=\"#faq2_9\"> <abbr "
+"title=\"Sıkça Sorulan Sorular\">SSS</abbr> 2.9</a>'a bakın."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: ../phpmyadmin/Documentation.html:83
@@ -11015,19 +11013,17 @@ msgstr ""
#. type: Content of: <html><head><title>
#: ../phpmyadmin/translators.html:13
-#, fuzzy
msgid "phpMyAdmin 3.4.0-alpha3-dev - Official translators"
-msgstr "phpMyAdmin 3.5.0-dev - Resmi çevirmenleri"
+msgstr "phpMyAdmin 3.4.0-dev - Resmi çevirmenleri"
#. type: Content of: <html><body><div><h1>
#: ../phpmyadmin/translators.html:20
-#, fuzzy
msgid ""
"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
"span></a> 3.4.0-alpha3-dev official translators list"
msgstr ""
-"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
-"span></a> 3.5.0-dev resmi çevirmenler listesi"
+"<a href=\"http://www.phpmyadmin.net/\">php<span "
+"class=\"myadmin\">MyAdmin</span></a> 3.4.0-dev resmi çevirmenler listesi"
#. type: Content of: <html><body><div><p>
#: ../phpmyadmin/translators.html:45
@@ -11140,7 +11136,7 @@ msgstr "Boşnakça"
#. type: Content of: <html><body><div><table><tr><td>
#: ../phpmyadmin/translators.html:123
msgid "Brazilian Portuguese"
-msgstr "Portekizce (Brezilya)"
+msgstr "Brezilya Portekizcesi"
#. type: Content of: <html><body><div><table><tr><td>
#: ../phpmyadmin/translators.html:125
@@ -11682,9 +11678,9 @@ msgstr ""
#. type: Title -
#: ../phpmyadmin/README:7
-#, fuzzy, no-wrap
+#, no-wrap
msgid "Version 3.4.0-alpha3-dev\n"
-msgstr "Sürüm 3.5.0-dev\n"
+msgstr "Sürüm 3.4.0-dev\n"
#. type: Plain text
#: ../phpmyadmin/README:10
@@ -11775,8 +11771,7 @@ msgstr "Destek\n"
#: ../phpmyadmin/README:64
msgid "See reference about support forums under http://www.phpmyadmin.net/"
msgstr ""
-"http://www.phpmyadmin.net/ adresindeki destek forumlarındaki referansa "
-"bakınız."
+"http://www.phpmyadmin.net/ adresindeki destek forumlarında referansa bakınız"
#. type: Title ~
#: ../phpmyadmin/README:67
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA2-1960-gec9af60
by Michal Čihař 09 Dec '10
by Michal Čihař 09 Dec '10
09 Dec '10
The branch, master has been updated
via ec9af602896171c65bc48ebe7fffef8592ccdaf5 (commit)
via f88189366dc90991079f48460452e0321c41980f (commit)
from 4bd0abf150be3c8079c535a8ac97beea2bb2345e (commit)
- Log -----------------------------------------------------------------
commit ec9af602896171c65bc48ebe7fffef8592ccdaf5
Merge: 4bd0abf150be3c8079c535a8ac97beea2bb2345e f88189366dc90991079f48460452e0321c41980f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Dec 9 13:42:20 2010 +0100
Merge remote branch 'adnan/export_branch'
commit f88189366dc90991079f48460452e0321c41980f
Author: Adnan <hiddenpearls(a)gmail.com>
Date: Thu Dec 9 16:53:38 2010 +0500
fixed: bugID = 3112614
-----------------------------------------------------------------------
Summary of changes:
libraries/schema/User_Schema.class.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php
index 1511158..e69daa0 100644
--- a/libraries/schema/User_Schema.class.php
+++ b/libraries/schema/User_Schema.class.php
@@ -480,7 +480,7 @@ class PMA_User_Schema
$drag_y = $temp_sh_page['y'];
$draginit2 .= ' Drag.init(getElement("table_' . $i . '"), null, 0, parseInt(myid.style.width)-2, 0, parseInt(myid.style.height)-5);' . "\n";
- $draginit .= ' getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
+ $draginit2 .= ' getElement("table_' . $i . '").onDrag = function (x, y) { document.edcoord.elements["c_table_' . $i . '[x]"].value = parseInt(x); document.edcoord.elements["c_table_' . $i . '[y]"].value = parseInt(y) }' . "\n";
$draginit .= ' getElement("table_' . $i . '").style.left = "' . $drag_x . 'px";' . "\n";
$draginit .= ' getElement("table_' . $i . '").style.top = "' . $drag_y . 'px";' . "\n";
$reset_draginit .= ' getElement("table_' . $i . '").style.left = "2px";' . "\n";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA2-1958-g4bd0abf
by Michal Čihař 09 Dec '10
by Michal Čihař 09 Dec '10
09 Dec '10
The branch, master has been updated
via 4bd0abf150be3c8079c535a8ac97beea2bb2345e (commit)
via ab7a590edf3cdc24a1d397e5134fe58971a4199f (commit)
via eca3c8ee41c13fef20def455d0e70d5780269c39 (commit)
via f958254349ba653aaac2a160c580501120f5aecf (commit)
via b1ea5ac7149b785089a8b6ec72639702dc2ab69f (commit)
via d66b3d514565c07c87cb59443bbf109553727436 (commit)
via 6c1ef0ab59f5eb8fffb0b5a1e9f6db4cade544e4 (commit)
via 12347f75b5eb2dec324b61d9f44657dad46f4f98 (commit)
via 293398431114e899a9763847b67eabdb280b622b (commit)
via 87a2c38264c0fed4bd1d20aadc510d957037a77c (commit)
via 6abfac42b55890ccb480dae8cbf88ba41844ecc8 (commit)
via ee4efccf9153d80fe05488079a0d809df4da8335 (commit)
via 2f1a407a0b86b3adc33c562792978396e2ba8e7d (commit)
via 9806f9bd2cda050a7161aca8436c0d6b3eb7cb87 (commit)
via 05663ff3d213962823b2475e750ff3e1a133e8ba (commit)
via 7743b0af998578510a4e4dfd72e40249da6a1221 (commit)
via 5770a7182a2f75c22b42cdfc7c7c7e44bbf12c67 (commit)
via faa913fd5c10959dd56d7833ec18f00e11d192b8 (commit)
via 7cec8472b8d0ea64599af9db81de6cc07c82c0ea (commit)
via 2bd1a78b5687e101637bcdf8f20d527e4b2e641c (commit)
from 92eb8d0ea217b8a4294d18bc0919923ca585ba56 (commit)
- Log -----------------------------------------------------------------
commit 4bd0abf150be3c8079c535a8ac97beea2bb2345e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:49:51 2010 +0200
Translation update done using Pootle.
commit ab7a590edf3cdc24a1d397e5134fe58971a4199f
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:49:32 2010 +0200
Translation update done using Pootle.
commit eca3c8ee41c13fef20def455d0e70d5780269c39
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:46:06 2010 +0200
Translation update done using Pootle.
commit f958254349ba653aaac2a160c580501120f5aecf
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:45:31 2010 +0200
Translation update done using Pootle.
commit b1ea5ac7149b785089a8b6ec72639702dc2ab69f
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:43:50 2010 +0200
Translation update done using Pootle.
commit d66b3d514565c07c87cb59443bbf109553727436
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:32:09 2010 +0200
Translation update done using Pootle.
commit 6c1ef0ab59f5eb8fffb0b5a1e9f6db4cade544e4
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:32:03 2010 +0200
Translation update done using Pootle.
commit 12347f75b5eb2dec324b61d9f44657dad46f4f98
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:31:42 2010 +0200
Translation update done using Pootle.
commit 293398431114e899a9763847b67eabdb280b622b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:30:38 2010 +0200
Translation update done using Pootle.
commit 87a2c38264c0fed4bd1d20aadc510d957037a77c
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:30:31 2010 +0200
Translation update done using Pootle.
commit 6abfac42b55890ccb480dae8cbf88ba41844ecc8
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:30:18 2010 +0200
Translation update done using Pootle.
commit ee4efccf9153d80fe05488079a0d809df4da8335
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:30:06 2010 +0200
Translation update done using Pootle.
commit 2f1a407a0b86b3adc33c562792978396e2ba8e7d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:29:21 2010 +0200
Translation update done using Pootle.
commit 9806f9bd2cda050a7161aca8436c0d6b3eb7cb87
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:28:46 2010 +0200
Translation update done using Pootle.
commit 05663ff3d213962823b2475e750ff3e1a133e8ba
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:28:36 2010 +0200
Translation update done using Pootle.
commit 7743b0af998578510a4e4dfd72e40249da6a1221
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:28:02 2010 +0200
Translation update done using Pootle.
commit 5770a7182a2f75c22b42cdfc7c7c7e44bbf12c67
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:27:52 2010 +0200
Translation update done using Pootle.
commit faa913fd5c10959dd56d7833ec18f00e11d192b8
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:27:32 2010 +0200
Translation update done using Pootle.
commit 7cec8472b8d0ea64599af9db81de6cc07c82c0ea
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:26:45 2010 +0200
Translation update done using Pootle.
commit 2bd1a78b5687e101637bcdf8f20d527e4b2e641c
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Thu Dec 9 00:25:04 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/tr.po | 160 ++++++-------------------------------------------------------
1 files changed, 16 insertions(+), 144 deletions(-)
diff --git a/po/tr.po b/po/tr.po
index b18ad5f..9a8c302 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-12-08 14:29-0500\n"
-"PO-Revision-Date: 2010-12-01 19:12+0200\n"
+"PO-Revision-Date: 2010-12-09 00:49+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -3097,10 +3097,9 @@ msgid "Display servers selection"
msgstr "Sunucu seçimlerini görüntüle"
#: libraries/config/messages.inc.php:267
-#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of tables to display the table filter box"
-msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır"
+msgstr "Tablo süzgeci kutusunu görüntülemek için en az tablo sayısıdır"
#: libraries/config/messages.inc.php:268
msgid "String that separates databases into different tree levels"
@@ -4458,19 +4457,18 @@ msgstr ""
"Dışa aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
#: libraries/display_export.lib.php:87
-#, fuzzy
#| msgid "Exporting databases in the current server"
msgid "Exporting databases from the current server"
-msgstr "Veritabanları şu anki sunucu içinde dışa aktarılıyor"
+msgstr "Şu anki sunucudan veritabanları dışa aktarılıyor"
#: libraries/display_export.lib.php:89
-#, fuzzy, php-format
+#, php-format
#| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "\"%s\" veritabanında tablolar dışa aktarılıyor"
#: libraries/display_export.lib.php:91
-#, fuzzy, php-format
+#, php-format
#| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "\"%s\" tablosunda satırlar dışa aktarılıyor"
@@ -4480,16 +4478,14 @@ msgid "Export Method:"
msgstr "Dışa Aktarma Yöntemi:"
#: libraries/display_export.lib.php:113
-#, fuzzy
#| msgid "Quick - display only the minimal options to configure"
msgid "Quick - display only the minimal options"
-msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
+msgstr "Hızlı - sadece en az seçenekleri göster"
#: libraries/display_export.lib.php:129
-#, fuzzy
#| msgid "Custom - display all possible options to configure"
msgid "Custom - display all possible options"
-msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
+msgstr "Özel - tüm olası seçenekleri göster"
#: libraries/display_export.lib.php:137
msgid "Database(s):"
@@ -4597,10 +4593,9 @@ msgid "Format:"
msgstr "Biçim:"
#: libraries/display_export.lib.php:336
-#, fuzzy
#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
-msgstr "Biçim-Belirli Seçenekler:"
+msgstr "Biçim-belli seçenekler:"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:"
@@ -5872,7 +5867,7 @@ msgstr "Ukraynaca"
#: libraries/mysql_charsets.lib.php:318 libraries/mysql_charsets.lib.php:327
msgid "Unicode"
-msgstr "Unicode"
+msgstr "Evrensel Kod"
#: libraries/mysql_charsets.lib.php:318 libraries/mysql_charsets.lib.php:327
#: libraries/mysql_charsets.lib.php:336 libraries/mysql_charsets.lib.php:343
@@ -7849,28 +7844,24 @@ msgid "Reset slave"
msgstr "Slave'i sıfırla"
#: server_replication.php:326
-#, fuzzy
#| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
-msgstr "Sadece SQL İşlemi %s"
+msgstr "Sadece SQL İşlemini başlat"
#: server_replication.php:328
-#, fuzzy
#| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
-msgstr "Sadece SQL İşlemi %s"
+msgstr "Sadece SQL İşlemini durdur"
#: server_replication.php:331
-#, fuzzy
#| msgid "IO Thread %s only"
msgid "Start IO Thread only"
-msgstr "Sadece G/Ç İşlemi %s"
+msgstr "Sadece G/Ç İşlemini başlat"
#: server_replication.php:333
-#, fuzzy
#| msgid "IO Thread %s only"
msgid "Stop IO Thread only"
-msgstr "Sadece G/Ç İşlemi %s"
+msgstr "Sadece G/Ç İşlemini durdur"
#: server_replication.php:338
msgid "Error management:"
@@ -8714,14 +8705,13 @@ msgid "Query type"
msgstr "Sorgu türü"
#: server_status.php:710 server_status.php:711
-#, fuzzy
#| msgid "Show query box"
msgid "Show query chart"
-msgstr "Sorgu kutusunu göster"
+msgstr "Sorgu çizelgesini göster"
#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
-msgstr ""
+msgstr "Not: Sorgu çizelgesi meydana getirmek uzun zaman alabilir."
#: server_status.php:853
msgid "Replication status"
@@ -9873,121 +9863,3 @@ msgstr "Görünümü yeniden şuna adlandır"
#~ msgid "Disable Statistics"
#~ msgstr "İstatistikler etkisiz"
-
-#, fuzzy
-#~| msgid "Hide query box"
-#~ msgid "Hide query chart"
-#~ msgstr "Sorgu kutusunu gizle"
-
-#~ msgid "Start"
-#~ msgstr "Başlat"
-
-#~ msgid "Stop"
-#~ msgstr "Durdur"
-
-#~ msgid "Display table filter"
-#~ msgstr "Tablo süzgeci göster"
-
-#~ msgid ""
-#~ "The additional features for working with linked tables have been "
-#~ "deactivated. To find out why click %shere%s."
-#~ msgstr ""
-#~ "Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini "
-#~ "öğrenmek için %sburaya%s tıklayın."
-
-#~ msgid "Ignore duplicate rows"
-#~ msgstr "Kopya satırları yoksay"
-
-#~ msgid "Execute bookmarked query"
-#~ msgstr "İşaretlenmiş sorguyu çalıştır"
-
-#~ msgid "No tables"
-#~ msgstr "Tablolar yok"
-
-#~ msgid "Field navigation using Ctrl+Arrows"
-#~ msgstr "Ctrl+Okları kullanarak alan rehberliği"
-
-#~ msgid "Toggle Query Box Visibility"
-#~ msgstr "Sorgu Kutusu Görünürlüğünü Değiştir"
-
-#~ msgid "SVG"
-#~ msgstr "SVG"
-
-#~ msgid "DIA"
-#~ msgstr "DIA"
-
-#~ msgid "VISIO"
-#~ msgstr "VISIO"
-
-#~ msgid "EPS"
-#~ msgstr "EPS"
-
-#~ msgid ""
-#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be "
-#~ "enabled if your web server supports it"
-#~ msgstr ""
-#~ "Eğer web sunucunuz destekliyorsa, bu [a@?page=form&"
-#~ "formset=features#tab_Security]seçenek[/a] etkinleştirilmelidir"
-
-#~ msgid ""
-#~ "Enter each value in a separate field, enclosed in single quotes. If you "
-#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst "
-#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
-#~ "\\'b')."
-#~ msgstr ""
-#~ "Her bir değeri ayrı alana girin, tek tırnakla kapatın. Eğer bu değerler "
-#~ "arasına hep ters eğik çizgi (\"\\\") veya tek tırnak (\"'\") koymanız "
-#~ "gerekirse, önlerine ters eğik çizgi koyun (örneğin '\\\\xyz' veya 'a"
-#~ "\\'b')."
-
-#~ msgid ""
-#~ "Enter each value in a separate field. If you ever need to put a backslash "
-#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
-#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
-#~ msgstr ""
-#~ "Her bir değeri ayrı alana girin. Eğer bu değerler arasına hep ters eğik "
-#~ "çizgi (\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters "
-#~ "eğik çizgi koyun (örneğin '\\\\xyz' veya 'a\\'b')."
-
-#~ msgid "Debug PHP"
-#~ msgstr "PHP Hata Ayıklama"
-
-#~ msgid "New table"
-#~ msgstr "Yeni tablo"
-
-#~ msgid "server name"
-#~ msgstr "sunucu adı"
-
-#~ msgid "database name"
-#~ msgstr "veritabanı adı"
-
-#~ msgid "Edit PDF Pages"
-#~ msgstr "PDF Sayfalarını düzenle"
-
-#~ msgid "Data Dictionary Format"
-#~ msgstr "Veri Sözlüğü Biçimi"
-
-#~ msgid "Method"
-#~ msgstr "Yöntem"
-
-#~ msgid "no"
-#~ msgstr "hayır"
-
-#~ msgid "Enter login options for signon authentication"
-#~ msgstr "Oturum açma kimlik denetimi için oturum açma seçeneklerini girin"
-
-#~ msgid "Signon login options"
-#~ msgstr "Oturum açma seçenekleri"
-
-#~ msgid "PMA database"
-#~ msgstr "PMA veritabanı"
-
-#~ msgid ""
-#~ "SQL queries settings, for SQL Query box options see [a@?page=form&"
-#~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
-#~ msgstr ""
-#~ "SQL sorgusu ayarları, SQL Sorgu kutusu seçenekleri için [a@?page=form&"
-#~ "formset=main_frame#tab_Sql_box]Rehber çerçevesi[/a] ayarlarına bakın"
-
-#~ msgid "yes"
-#~ msgstr "evet"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0ALPHA2-1938-g92eb8d0
by Marc Delisle 08 Dec '10
by Marc Delisle 08 Dec '10
08 Dec '10
The branch, master has been updated
via 92eb8d0ea217b8a4294d18bc0919923ca585ba56 (commit)
from e69bbb4ec119c507ac737b1047d9acaccf0ee41a (commit)
- Log -----------------------------------------------------------------
commit 92eb8d0ea217b8a4294d18bc0919923ca585ba56
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 8 14:29:49 2010 -0500
Regenerate po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 38 ++++++++++-----------
po/ar.po | 38 ++++++++++-----------
po/az.po | 36 ++++++++++-----------
po/be.po | 36 ++++++++++-----------
po/be(a)latin.po | 38 ++++++++++-----------
po/bg.po | 36 ++++++++++-----------
po/bn.po | 36 ++++++++++-----------
po/bs.po | 36 ++++++++++-----------
po/ca.po | 38 ++++++++++-----------
po/cs.po | 80 ++++++++++++++++++++-------------------------
po/cy.po | 38 ++++++++++-----------
po/da.po | 38 ++++++++++-----------
po/de.po | 38 ++++++++++-----------
po/el.po | 38 ++++++++++-----------
po/en_GB.po | 50 ++++++++++------------------
po/es.po | 38 ++++++++++-----------
po/et.po | 36 ++++++++++-----------
po/eu.po | 36 ++++++++++-----------
po/fa.po | 38 ++++++++++-----------
po/fi.po | 38 ++++++++++-----------
po/fr.po | 43 ++++++++++---------------
po/gl.po | 38 ++++++++++-----------
po/he.po | 36 ++++++++++-----------
po/hi.po | 31 +++++++----------
po/hr.po | 36 ++++++++++-----------
po/hu.po | 38 ++++++++++-----------
po/id.po | 36 ++++++++++-----------
po/it.po | 36 ++++++++++-----------
po/ja.po | 38 ++++++++++-----------
po/ka.po | 38 ++++++++++-----------
po/ko.po | 36 ++++++++++-----------
po/lt.po | 38 ++++++++++-----------
po/lv.po | 36 ++++++++++-----------
po/mk.po | 36 ++++++++++-----------
po/mn.po | 38 ++++++++++-----------
po/ms.po | 38 ++++++++++-----------
po/nb.po | 38 ++++++++++-----------
po/nl.po | 93 +++++++++++------------------------------------------
po/phpmyadmin.pot | 28 ++++++----------
po/pl.po | 38 ++++++++++-----------
po/pt.po | 36 ++++++++++-----------
po/pt_BR.po | 36 ++++++++++-----------
po/ro.po | 36 ++++++++++-----------
po/ru.po | 38 ++++++++++-----------
po/si.po | 36 ++++++++++-----------
po/sk.po | 36 ++++++++++-----------
po/sl.po | 38 ++++++++++-----------
po/sq.po | 36 ++++++++++-----------
po/sr.po | 36 ++++++++++-----------
po/sr(a)latin.po | 36 ++++++++++-----------
po/sv.po | 38 ++++++++++-----------
po/ta.po | 28 ++++++----------
po/te.po | 31 +++++++----------
po/th.po | 36 ++++++++++-----------
po/tr.po | 38 ++++++++++-----------
po/tt.po | 36 ++++++++++-----------
po/ug.po | 28 ++++++----------
po/uk.po | 38 ++++++++++-----------
po/ur.po | 28 ++++++----------
po/uz.po | 38 ++++++++++-----------
po/uz(a)latin.po | 38 ++++++++++-----------
po/zh_CN.po | 71 +++++++++++-----------------------------
po/zh_TW.po | 36 ++++++++++-----------
63 files changed, 1087 insertions(+), 1350 deletions(-)
diff --git a/po/af.po b/po/af.po
index 840a451..5a9c6db 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\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"
@@ -81,7 +81,7 @@ msgstr "Sleutelnaam"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
#, fuzzy
msgid "Description"
msgstr "geen Beskrywing"
@@ -2065,7 +2065,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Begin"
@@ -5941,13 +5941,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Waarde"
@@ -6751,7 +6751,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Geen databasisse"
@@ -7121,12 +7121,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Databasis statistieke"
-#: server_databases.php:261 server_databases.php:262
-#, fuzzy
-msgid "Disable Statistics"
-msgstr "Databasis statistieke"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8441,21 +8436,16 @@ msgstr ""
msgid "Query type"
msgstr ""
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
msgid "Show query chart"
msgstr "SQL-stelling"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-msgid "Hide query chart"
-msgstr "SQL-stelling"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -9567,6 +9557,14 @@ msgid "Rename view to"
msgstr "Hernoem tabel na"
#, fuzzy
+#~ msgid "Disable Statistics"
+#~ msgstr "Databasis statistieke"
+
+#, fuzzy
+#~ msgid "Hide query chart"
+#~ msgstr "SQL-stelling"
+
+#, fuzzy
#~ msgid "Start"
#~ msgstr "Sa"
diff --git a/po/ar.po b/po/ar.po
index c776428..7a0240d 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed <aa.mahdawy.10(a)gmail.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "اسم المفتاح"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "الوصف"
@@ -2077,7 +2077,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "بداية"
@@ -5979,13 +5979,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "متغير"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "القيمة"
@@ -6838,7 +6838,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "لايوجد قواعد بيانات"
@@ -7206,11 +7206,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "مكن الإحصائيات"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "أوقف الإحصائيات"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8521,23 +8517,17 @@ msgstr "لكل ثانية"
msgid "Query type"
msgstr "نوع الاستعلام"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "SQL query"
msgid "Show query chart"
msgstr "استعلام-SQL"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query chart"
-msgstr "في الاستعلام"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -9643,6 +9633,14 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#~ msgid "Disable Statistics"
+#~ msgstr "أوقف الإحصائيات"
+
+#, fuzzy
+#~| msgid "in query"
+#~ msgid "Hide query chart"
+#~ msgstr "في الاستعلام"
+
#~ msgid "Start"
#~ msgstr "ابدأ"
diff --git a/po/az.po b/po/az.po
index a761b82..395ae02 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -80,7 +80,7 @@ msgstr "Açar söz"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Haqqında"
@@ -2082,7 +2082,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s deqiqe ve %s saniye"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Başla"
@@ -6019,13 +6019,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Deyişen"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Deyer"
@@ -6892,7 +6892,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
@@ -7266,11 +7266,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Statistikaları Aktivleşdir"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Statistikaları Söndür"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8601,21 +8597,16 @@ msgstr "saniyede"
msgid "Query type"
msgstr "Sorğu tipi"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
msgid "Show query chart"
msgstr "SQL sorğusu"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-msgid "Hide query chart"
-msgstr "SQL sorğusu"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -9730,6 +9721,13 @@ msgstr ""
msgid "Rename view to"
msgstr "Cedveli yeniden adlandır"
+#~ msgid "Disable Statistics"
+#~ msgstr "Statistikaları Söndür"
+
+#, fuzzy
+#~ msgid "Hide query chart"
+#~ msgstr "SQL sorğusu"
+
#, fuzzy
#~ msgid "Start"
#~ msgstr "Şen"
diff --git a/po/be.po b/po/be.po
index 0ed23fe..08ea070 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\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"
@@ -83,7 +83,7 @@ msgstr "Імя ключа"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Апісаньне"
@@ -2130,7 +2130,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Першая старонка"
@@ -6192,13 +6192,13 @@ msgid "Slave status"
msgstr "Паказаць стан залежных сэрвэраў"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Зьменная"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Значэньне"
@@ -7115,7 +7115,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Базы дадзеных адсутнічаюць"
@@ -7496,11 +7496,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Уключыць статыстыку"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Адключыць статыстыку"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8964,21 +8960,16 @@ msgstr "у сэкунду"
msgid "Query type"
msgstr "Тып запыту"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
msgid "Show query chart"
msgstr "SQL-запыт"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-msgid "Hide query chart"
-msgstr "SQL-запыт"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
#, fuzzy
msgid "Replication status"
msgstr "Рэплікацыя"
@@ -10111,6 +10102,13 @@ msgstr "Назва прагляду"
msgid "Rename view to"
msgstr "Перайменаваць табліцу ў"
+#~ msgid "Disable Statistics"
+#~ msgstr "Адключыць статыстыку"
+
+#, fuzzy
+#~ msgid "Hide query chart"
+#~ msgstr "SQL-запыт"
+
#, fuzzy
#~ msgid "Start"
#~ msgstr "Суб"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 4c2e339..6ba4f22 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\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"
@@ -85,7 +85,7 @@ msgstr "Imia kluča"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Apisańnie"
@@ -2133,7 +2133,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Pieršaja staronka"
@@ -6158,13 +6158,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Źmiennaja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Značeńnie"
@@ -7082,7 +7082,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Bazy dadzienych adsutničajuć"
@@ -7461,11 +7461,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Uklučyć statystyku"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Adklučyć statystyku"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8928,23 +8924,17 @@ msgstr "u sekundu"
msgid "Query type"
msgstr "Typ zapytu"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query chart"
msgstr "U vyhladzie SQL-zapytu"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query chart"
-msgstr "pa zapytu"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -10063,6 +10053,14 @@ msgstr "Nazva prahladu"
msgid "Rename view to"
msgstr ""
+#~ msgid "Disable Statistics"
+#~ msgstr "Adklučyć statystyku"
+
+#, fuzzy
+#~| msgid "in query"
+#~ msgid "Hide query chart"
+#~ msgstr "pa zapytu"
+
#, fuzzy
#~| msgid "Displaying Column Comments"
#~ msgid "Display table filter"
diff --git a/po/bg.po b/po/bg.po
index b9fc55e..4656ac1 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: <stanprog(a)stanprog.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "Име на ключа"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Описание"
@@ -2099,7 +2099,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дена, %s часа, %s минути и %s секунди"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Начало"
@@ -6062,13 +6062,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Стойност"
@@ -6951,7 +6951,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Няма бази от данни"
@@ -7327,11 +7327,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Разрешаване на статистика"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Забрани статистика"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8681,21 +8677,16 @@ msgstr "на секунда"
msgid "Query type"
msgstr "Тип на заявката"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
msgid "Show query chart"
msgstr "SQL заявка"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-msgid "Hide query chart"
-msgstr "SQL заявка"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
#, fuzzy
msgid "Replication status"
msgstr "Репликация"
@@ -9822,6 +9813,13 @@ msgstr "Име на ИЗГЛЕД-а"
msgid "Rename view to"
msgstr "Преименуване на изгледа на"
+#~ msgid "Disable Statistics"
+#~ msgstr "Забрани статистика"
+
+#, fuzzy
+#~ msgid "Hide query chart"
+#~ msgstr "SQL заявка"
+
#, fuzzy
#~ msgid "Start"
#~ msgstr "сб"
diff --git a/po/bn.po b/po/bn.po
index b3ee6b3..d1777bb 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\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"
@@ -84,7 +84,7 @@ msgstr "Keyname"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "বর্ণনা"
@@ -2108,7 +2108,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "শুরু"
@@ -6119,13 +6119,13 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "চলক"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "মান"
@@ -7030,7 +7030,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "কোন ডাটাবেজ নাই"
@@ -7407,11 +7407,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "পরিসংখ্যান চালু কর"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "পরিসংখ্যান বন্ধ কর"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8850,21 +8846,16 @@ msgstr "per second"
msgid "Query type"
msgstr "Query type"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
msgid "Show query chart"
msgstr "SQL query"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-msgid "Hide query chart"
-msgstr "SQL query"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
#, fuzzy
msgid "Replication status"
msgstr "Replication"
@@ -9992,6 +9983,13 @@ msgstr ""
msgid "Rename view to"
msgstr "টেবিল রিনেম করুন"
+#~ msgid "Disable Statistics"
+#~ msgstr "পরিসংখ্যান বন্ধ কর"
+
+#, fuzzy
+#~ msgid "Hide query chart"
+#~ msgstr "SQL query"
+
#, fuzzy
#~ msgid "Start"
#~ msgstr "শনিবার"
diff --git a/po/bs.po b/po/bs.po
index 369efbd..3ffe07e 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -83,7 +83,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Opis"
@@ -2081,7 +2081,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Početak"
@@ -6006,13 +6006,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Promjenljiva"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Vrijednost"
@@ -6877,7 +6877,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Baza ne postoji"
@@ -7251,11 +7251,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Uključi statistike"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Isključi statistike"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8585,21 +8581,16 @@ msgstr "u sekundi"
msgid "Query type"
msgstr "Vrsta upita"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
msgid "Show query chart"
msgstr "SQL upit"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-msgid "Hide query chart"
-msgstr "SQL upit"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -9715,6 +9706,13 @@ msgstr ""
msgid "Rename view to"
msgstr "Promjeni ime tabele u "
+#~ msgid "Disable Statistics"
+#~ msgstr "Isključi statistike"
+
+#, fuzzy
+#~ msgid "Hide query chart"
+#~ msgstr "SQL upit"
+
#, fuzzy
#~ msgid "Start"
#~ msgstr "Sub"
diff --git a/po/ca.po b/po/ca.po
index b81b9e7..039e1e0 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-11-29 10:20+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "Nom Clau"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Descripció"
@@ -2046,7 +2046,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dies, %s hores, %s minuts i %s segons"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Inici"
@@ -6289,13 +6289,13 @@ msgid "Slave status"
msgstr "Estat de l'esclau"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Valor"
@@ -7213,7 +7213,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr "Configurar marc de navegació"
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "No hi ha Bases de Dades"
@@ -7597,11 +7597,7 @@ msgstr "Replicació de l'esclau"
msgid "Enable Statistics"
msgstr "Activa Estadístiques"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Desactiva Estadístiques"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -9088,23 +9084,17 @@ msgstr "per segon"
msgid "Query type"
msgstr "Tipus de consulta"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "Show query box"
msgid "Show query chart"
msgstr "Mostrar quadre de consultes SQL"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "Hide query box"
-msgid "Hide query chart"
-msgstr "Amagar quadre de consultes SQL"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr "Estat de la replicació"
@@ -10348,6 +10338,14 @@ msgstr "Nom de VISTA"
msgid "Rename view to"
msgstr "Reanomena les taules a"
+#~ msgid "Disable Statistics"
+#~ msgstr "Desactiva Estadístiques"
+
+#, fuzzy
+#~| msgid "Hide query box"
+#~ msgid "Hide query chart"
+#~ msgstr "Amagar quadre de consultes SQL"
+
#~ msgid "Start"
#~ msgstr "Inicia"
diff --git a/po/cs.po b/po/cs.po
index a1f8376..dbfda8a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-12-07 15:56+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -87,7 +87,7 @@ msgstr "Klíčový název"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Popis"
@@ -617,8 +617,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:372 libraries/display_tbl.lib.php:1940
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -840,8 +840,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -1598,8 +1598,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -1996,7 +1996,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dnů, %s hodin, %s minut a %s sekund"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Začátek"
@@ -4438,19 +4438,16 @@ msgstr ""
"Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!"
#: libraries/display_export.lib.php:87
-#| msgid "Exporting databases in the current server"
msgid "Exporting databases from the current server"
msgstr "Exportuji databáze z aktuálního serveru"
#: libraries/display_export.lib.php:89
#, php-format
-#| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "Exportuji tabulky z databáze „%s“"
#: libraries/display_export.lib.php:91
#, php-format
-#| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "Exportuji řádky z tabulky „%s“"
@@ -4459,12 +4456,10 @@ msgid "Export Method:"
msgstr "Způsob exportu:"
#: libraries/display_export.lib.php:113
-#| msgid "Quick - display only the minimal options to configure"
msgid "Quick - display only the minimal options"
msgstr "Rychlý - zobrazí jen minimum nastavení"
#: libraries/display_export.lib.php:129
-#| msgid "Custom - display all possible options to configure"
msgid "Custom - display all possible options"
msgstr "Vlastní - zobrazí všechna nastavení"
@@ -4529,8 +4524,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -4574,7 +4569,6 @@ msgid "Format:"
msgstr "Formát:"
#: libraries/display_export.lib.php:336
-#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Parametry pro výstupní formát:"
@@ -6012,13 +6006,13 @@ msgid "Slave status"
msgstr "Stav podřízeného"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Proměnná"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Hodnota"
@@ -6454,8 +6448,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
-"%spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
+"spopisy transformací%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -6496,8 +6490,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
-"%s dělá."
+"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %"
+"s dělá."
#: libraries/tbl_properties.inc.php:725 server_engines.php:56
#: tbl_operations.php:352
@@ -6860,7 +6854,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr "Znovu nahrát navigační rám"
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Žádné databáze"
@@ -7104,8 +7098,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
-"%sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
+"sNastavovacího skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -7208,11 +7202,7 @@ msgstr "Replikace podřízeného"
msgid "Enable Statistics"
msgstr "Zobrazit podrobnosti"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Skrýt podrobnosti"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -7557,8 +7547,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -8639,19 +8629,15 @@ msgstr "za sekundu"
msgid "Query type"
msgstr "Typ dotazu"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
msgid "Show query chart"
msgstr "Zobrazit graf dotazu"
-#: server_status.php:714 server_status.php:715
-msgid "Hide query chart"
-msgstr "Skrýt graf dotazu"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr "Poznámka: Generování dotazu může trvat dlouho."
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr "Stav replikace"
@@ -9033,8 +9019,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
-"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
+"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@@ -9045,8 +9031,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
-"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
+"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
@@ -9795,6 +9781,12 @@ msgstr "Jméno pohledu"
msgid "Rename view to"
msgstr "Přejmenovat pohled na"
+#~ msgid "Disable Statistics"
+#~ msgstr "Skrýt podrobnosti"
+
+#~ msgid "Hide query chart"
+#~ msgstr "Skrýt graf dotazu"
+
#~ msgid "Start"
#~ msgstr "Spustit"
diff --git a/po/cy.po b/po/cy.po
index 7a25a7a..9b6d946 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
"Last-Translator: <ardavies(a)tiscali.co.uk>\n"
"Language-Team: Welsh <cy(a)li.org>\n"
@@ -87,7 +87,7 @@ msgstr "Enw allweddol"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Disgrifiad"
@@ -2044,7 +2044,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s diwrnod, %s awr, %s munud a %s eiliad"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Dechrau"
@@ -5951,13 +5951,13 @@ msgid "Slave status"
msgstr "Statws y caeth"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Newidyn"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Gwerth"
@@ -6721,7 +6721,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Dim cronfeydd data"
@@ -7085,11 +7085,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Galluogi Ystadegau"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Analluogi Ystadegau"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8380,23 +8376,17 @@ msgstr ""
msgid "Query type"
msgstr ""
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "Show insert query"
msgid "Show query chart"
msgstr "Dangos ymholiad mewnosod"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query chart"
-msgstr "mewn ymholiad"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -9485,6 +9475,14 @@ msgstr "Enw VIEW"
msgid "Rename view to"
msgstr "Ailenwch golwg i"
+#~ msgid "Disable Statistics"
+#~ msgstr "Analluogi Ystadegau"
+
+#, fuzzy
+#~| msgid "in query"
+#~ msgid "Hide query chart"
+#~ msgstr "mewn ymholiad"
+
#, fuzzy
#~| msgid "Display databases as a list"
#~ msgid "Display table filter"
diff --git a/po/da.po b/po/da.po
index 71ba78a..dab2c44 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-07-21 14:55+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "Nøglenavn"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Beskrivelse"
@@ -2115,7 +2115,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dage, %s timer, %s minutter og %s sekunder"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Start"
@@ -6072,13 +6072,13 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Værdi"
@@ -6984,7 +6984,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Ingen databaser"
@@ -7362,11 +7362,7 @@ msgstr ""
msgid "Enable Statistics"
msgstr "Slå Statistikker til"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Slå Statistikker fra"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8808,23 +8804,17 @@ msgstr "pr. sekund"
msgid "Query type"
msgstr "Forespørgselstype"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query chart"
msgstr "Viser SQL-forespørgsel"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query chart"
-msgstr "i forespørgsel"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr ""
@@ -9939,6 +9929,14 @@ msgstr "VIEW navn"
msgid "Rename view to"
msgstr ""
+#~ msgid "Disable Statistics"
+#~ msgstr "Slå Statistikker fra"
+
+#, fuzzy
+#~| msgid "in query"
+#~ msgid "Hide query chart"
+#~ msgstr "i forespørgsel"
+
#, fuzzy
#~| msgid "Displaying Column Comments"
#~ msgid "Display table filter"
diff --git a/po/de.po b/po/de.po
index a71822b..868c13e 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-09-16 12:10+0200\n"
"Last-Translator: <sven-cihar.com(a)incase.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "Name"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Beschreibung"
@@ -2056,7 +2056,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Anfang"
@@ -6306,13 +6306,13 @@ msgid "Slave status"
msgstr "Slave-Status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Wert"
@@ -7261,7 +7261,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr "Navigations-Frame aktualisieren"
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Keine Datenbanken"
@@ -7645,11 +7645,7 @@ msgstr "Slave Replikation"
msgid "Enable Statistics"
msgstr "Datenbankstatistiken aktivieren"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Datenbankstatistiken deaktivieren"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -9140,23 +9136,17 @@ msgstr "pro Sekunde"
msgid "Query type"
msgstr "Abfrageart"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query chart"
msgstr "SQL-Querybox"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide query chart"
-msgstr "SQL-Querybox"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr "Replikations-Status"
@@ -10385,6 +10375,14 @@ msgstr "VIEW Name"
msgid "Rename view to"
msgstr "View umbenennen in"
+#~ msgid "Disable Statistics"
+#~ msgstr "Datenbankstatistiken deaktivieren"
+
+#, fuzzy
+#~| msgid "SQL Query box"
+#~ msgid "Hide query chart"
+#~ msgstr "SQL-Querybox"
+
#~ msgid "Start"
#~ msgstr "Start"
diff --git a/po/el.po b/po/el.po
index bd25ee5..31de920 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-12-04 17:14+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p(a)yahoo.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "Όνομα κλειδιού"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Περιγραφή"
@@ -2002,7 +2002,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Κορυφή"
@@ -6097,13 +6097,13 @@ msgid "Slave status"
msgstr "Κατάσταση δευτερεύοντος"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Μεταβλητή"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Τιμή"
@@ -6961,7 +6961,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr "Επαναφόρτωση πλαισίου πλοήγησης"
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Δεν υπάρχουν βάσεις δεδομένων"
@@ -7314,11 +7314,7 @@ msgstr "Δευτερεύουσα αναπαραγωγή"
msgid "Enable Statistics"
msgstr "Ενεργοποίηση Στατιστικών"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Απενεργοποίηση Στατιστικών"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -8830,23 +8826,17 @@ msgstr "ανά δευτερόλεπτο"
msgid "Query type"
msgstr "Τύπος ερωτήματος"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "Show query box"
msgid "Show query chart"
msgstr "Προβολή παραθύρου ερωτήματος SQL"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "Hide query box"
-msgid "Hide query chart"
-msgstr "Απόκρυψη παραθύρου ερωτήματος SQL"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr "Κατάσταση αναπαραγωγής"
@@ -10012,6 +10002,14 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος"
msgid "Rename view to"
msgstr "Μετονομασία πίνακα σε"
+#~ msgid "Disable Statistics"
+#~ msgstr "Απενεργοποίηση Στατιστικών"
+
+#, fuzzy
+#~| msgid "Hide query box"
+#~ msgid "Hide query chart"
+#~ msgstr "Απόκρυψη παραθύρου ερωτήματος SQL"
+
#~ msgid "Start"
#~ msgstr "Εκκίνηση"
diff --git a/po/en_GB.po b/po/en_GB.po
index 8e15b5f..8b868de 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-12-08 12:48+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
-"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -84,7 +84,7 @@ msgstr "Keyname"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Description"
@@ -1985,7 +1985,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Begin"
@@ -3091,7 +3091,6 @@ msgid "Display servers selection"
msgstr "Display servers selection"
#: libraries/config/messages.inc.php:267
-#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of tables to display the table filter box"
msgstr "Minimum number of tables to display the table filter box"
@@ -4425,19 +4424,16 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "Could not load export plug-ins, please check your installation!"
#: libraries/display_export.lib.php:87
-#| msgid "Exporting databases in the current server"
msgid "Exporting databases from the current server"
msgstr "Exporting databases from the current server"
#: libraries/display_export.lib.php:89
#, php-format
-#| msgid "Exporting tables in the database \"%s\""
msgid "Exporting tables from \"%s\" database"
msgstr "Exporting tables from \"%s\" database"
#: libraries/display_export.lib.php:91
#, php-format
-#| msgid "Exporting rows in the table \"%s\""
msgid "Exporting rows from \"%s\" table"
msgstr "Exporting rows from \"%s\" table"
@@ -4446,12 +4442,10 @@ msgid "Export Method:"
msgstr "Export Method:"
#: libraries/display_export.lib.php:113
-#| msgid "Quick - display only the minimal options to configure"
msgid "Quick - display only the minimal options"
msgstr "Quick - display only the minimal options"
#: libraries/display_export.lib.php:129
-#| msgid "Custom - display all possible options to configure"
msgid "Custom - display all possible options"
msgstr "Custom - display all possible options"
@@ -4560,7 +4554,6 @@ msgid "Format:"
msgstr "Format:"
#: libraries/display_export.lib.php:336
-#| msgid "Format-Specific Options:"
msgid "Format-specific options:"
msgstr "Format-specific options:"
@@ -6000,13 +5993,13 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Value"
@@ -6852,7 +6845,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr "Reload navigation frame"
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "No databases"
@@ -7201,11 +7194,7 @@ msgstr "Slave replication"
msgid "Enable Statistics"
msgstr "Enable Statistics"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Disable Statistics"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -7792,22 +7781,18 @@ msgid "Reset slave"
msgstr "Reset slave"
#: server_replication.php:326
-#| msgid "SQL Thread %s only"
msgid "Start SQL Thread only"
msgstr "Start SQL Thread only"
#: server_replication.php:328
-#| msgid "SQL Thread %s only"
msgid "Stop SQL Thread only"
msgstr "Stop SQL Thread only"
#: server_replication.php:331
-#| msgid "IO Thread %s only"
msgid "Start IO Thread only"
msgstr "Start IO Thread only"
#: server_replication.php:333
-#| msgid "IO Thread %s only"
msgid "Stop IO Thread only"
msgstr "Stop IO Thread only"
@@ -8643,21 +8628,15 @@ msgstr "per second"
msgid "Query type"
msgstr "Query type"
-#: server_status.php:709 server_status.php:710
-#| msgid "Show query box"
+#: server_status.php:710 server_status.php:711
msgid "Show query chart"
msgstr "Show query chart"
-#: server_status.php:714 server_status.php:715
-#| msgid "Hide query box"
-msgid "Hide query chart"
-msgstr "Hide query chart"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr "Note: Generating the query chart can take a long time."
-#: server_status.php:855
+#: server_status.php:853
msgid "Replication status"
msgstr "Replication status"
@@ -9795,6 +9774,13 @@ msgstr "VIEW name"
msgid "Rename view to"
msgstr "Rename view to"
+#~ msgid "Disable Statistics"
+#~ msgstr "Disable Statistics"
+
+#~| msgid "Hide query box"
+#~ msgid "Hide query chart"
+#~ msgstr "Hide query chart"
+
#~ msgid "Start"
#~ msgstr "Start"
diff --git a/po/es.po b/po/es.po
index 3be34c8..2fdfd1a 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-11-29 02:31+0200\n"
"Last-Translator: <javipas(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -84,7 +84,7 @@ msgstr "Nombre de la clave"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Descripción"
@@ -2020,7 +2020,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos y %s segundos"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Empezar"
@@ -6205,13 +6205,13 @@ msgid "Slave status"
msgstr "Mostrar el estado del esclavo"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Valor"
@@ -7137,7 +7137,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr "Personalizar el marco de navegación"
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "No hay bases de datos"
@@ -7524,11 +7524,7 @@ msgstr "Configuración del servidor"
msgid "Enable Statistics"
msgstr "Activar las estadísticas"
-#: server_databases.php:261 server_databases.php:262
-msgid "Disable Statistics"
-msgstr "Desactivar las estadísticas"
-
-#: server_databases.php:265
+#: server_databases.php:260
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@@ -9012,23 +9008,17 @@ msgstr "por segundo"
msgid "Query type"
msgstr "Tipo de consulta"
-#: server_status.php:709 server_status.php:710
+#: server_status.php:710 server_status.php:711
#, fuzzy
#| msgid "Show query box"
msgid "Show query chart"
msgstr "Mostrar ventana de consultas SQL"
-#: server_status.php:714 server_status.php:715
-#, fuzzy
-#| msgid "Hide query box"
-msgid "Hide query chart"
-msgstr "Ocultar ventana de consultas SQL"
-
-#: server_status.php:717
+#: server_status.php:712
msgid "Note: Generating the query chart can take a long time."
msgstr ""
-#: server_status.php:855
+#: server_status.php:853
#, fuzzy
msgid "Replication status"
msgstr "Replicación"
@@ -10264,6 +10254,14 @@ msgstr "(VIEW) VER nombre"
msgid "Rename view to"
msgstr "Cambiar el nombre de la vista a "
+#~ msgid "Disable Statistics"
+#~ msgstr "Desactivar las estadísticas"
+
+#, fuzzy
+#~| msgid "Hide query box"
+#~ msgid "Hide query chart"
+#~ msgstr "Ocultar ventana de consultas SQL"
+
#, fuzzy
#~ msgid "Start"
#~ msgstr "Inicio"
diff --git a/po/et.po b/po/et.po
index 51becdc..4f34d2d 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-07 09:47-0500\n"
+"POT-Creation-Date: 2010-12-08 14:29-0500\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -83,7 +83,7 @@ msgstr "Võtme nimi"
#: browse_foreigners.php:167 browse_foreigners.php:169
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:762
+#: server_status.php:760
msgid "Description"
msgstr "Kirjeldus"
@@ -2110,7 +2110,7 @@ msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit"
#: libraries/common.lib.php:2302 libraries/common.lib.php:2305
-#: libraries/display_tbl.lib.php:288 server_status.php:742
+#: libraries/display_tbl.lib.php:288 server_status.php:740
msgid "Begin"
msgstr "Algus"
@@ -6118,13 +6118,13 @@ msgid "Slave status"
msgstr "Näita alluvate(slave) staatust"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:418
-#: server_status.php:760 server_variables.php:51
+#: server_status.php:758 server_variables.php:51
msgid "Variable"
msgstr "Muutuja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:478
#: pmd_general.php:537 pmd_general.php:660 pmd_general.php:777
-#: server_status.php:761 tbl_change.php:316 tbl_printview.php:367
+#: server_status.php:759 tbl_change.php:316 tbl_printview.php:367
#: tbl_select.php:136 tbl_structure.php:821
msgid "Value"
msgstr "Väärtus"
@@ -7029,7 +7029,7 @@ msgstr ""
msgid "Reload navigation frame"
msgstr ""
-#: navigation.php:203 server_databases.php:270 server_synchronize.php:1189
+#: navigation.php:203 server_databases.php:265 server_synchronize.php:1189
msgid "No databases"
msgstr "Pole andmebaase"
@@ -7402,11 +7402,7 @@ msgstr ""
msgid "Enable Stat @@ msgstr ""