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, QA_3_4, updated. RELEASE_3_4_2-24-g9d2269d
by Madhura Jayaratne 16 Jun '11
by Madhura Jayaratne 16 Jun '11
16 Jun '11
The branch, QA_3_4 has been updated
via 9d2269d297cdc04dfe19d29025afb28b87a83f66 (commit)
from 99bae4acb9a94c93ca31c8d49eb9a771f34aad54 (commit)
- Log -----------------------------------------------------------------
commit 9d2269d297cdc04dfe19d29025afb28b87a83f66
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Thu Jun 16 21:05:54 2011 +0530
bug #3317293 [edit] Inline edit places HTML line breaks in edit area
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
js/sql.js | 4 +++-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 0ae3c2e..cc6ce50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@ phpMyAdmin - ChangeLog
- bug #3315720 [search] Fix search in non unicode tables
- bug #3315741 [display] Inline query edit broken
- patch #3317206 [privileges] Generate password option missing on new accounts
+- bug #3317293 [edit] Inline edit places HTML line breaks in edit area
3.4.2.0 (2011-06-07)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
diff --git a/js/sql.js b/js/sql.js
index 26075d4..e871c74 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -678,8 +678,10 @@ $(document).ready(function() {
// and store the current value in a hidden span
if($this_field.is(':not(.truncated, .transformed, .relation, .enum, .set, .null)')) {
// handle non-truncated, non-transformed, non-relation values
+
+ value = data_value.replace("<br>", "\n");
// We don't need to get any more data, just wrap the value
- $this_field.append('<textarea>'+data_value+'</textarea>');
+ $this_field.append('<textarea>' + value + '</textarea>');
$this_field.data('original_data', data_value);
}
else if($this_field.is('.truncated, .transformed')) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3857-g51af35e
by Marc Delisle 16 Jun '11
by Marc Delisle 16 Jun '11
16 Jun '11
The branch, master has been updated
via 51af35ee1409256c70ed2ea226dd984582ed830f (commit)
via 99bae4acb9a94c93ca31c8d49eb9a771f34aad54 (commit)
from 6f305d40814a5383e739f86a8f68ae19118c03bf (commit)
- Log -----------------------------------------------------------------
commit 51af35ee1409256c70ed2ea226dd984582ed830f
Merge: 6f305d40814a5383e739f86a8f68ae19118c03bf 99bae4acb9a94c93ca31c8d49eb9a771f34aad54
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Jun 16 07:57:54 2011 -0400
Merge branch 'QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
server_privileges.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f30beea..042bf04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -30,6 +30,7 @@ phpMyAdmin - ChangeLog
- patch #3313326 [interface] Some tooltips do not disappear
- bug #3315720 [search] Fix search in non unicode tables
- bug #3315741 [display] Inline query edit broken
+- patch #3317206 [privileges] Generate password option missing on new accounts
3.4.2.0 (2011-06-07)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
diff --git a/server_privileges.php b/server_privileges.php
index b5f7031..cedbcef 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1698,7 +1698,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
unset ($row);
echo ' <fieldset id="fieldset_add_user">' . "\n"
- . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&adduser=1">' . "\n"
+ . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&adduser=1" class="' . $conditional_class . '">' . "\n"
. PMA_getIcon('b_usradd.png')
. ' ' . __('Add user') . '</a>' . "\n"
. ' </fieldset>' . "\n";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_2-23-g99bae4a
by Marc Delisle 16 Jun '11
by Marc Delisle 16 Jun '11
16 Jun '11
The branch, QA_3_4 has been updated
via 99bae4acb9a94c93ca31c8d49eb9a771f34aad54 (commit)
from 396e4e99799c91a8c39f2bbe156e6795cdef6ee5 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
server_privileges.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5e40b2e..0ae3c2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
- patch #3313326 [interface] Some tooltips do not disappear
- bug #3315720 [search] Fix search in non unicode tables
- bug #3315741 [display] Inline query edit broken
+- patch #3317206 [privileges] Generate password option missing on new accounts
3.4.2.0 (2011-06-07)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
diff --git a/server_privileges.php b/server_privileges.php
index 7e60f09..81de01f 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1698,7 +1698,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
unset ($row);
echo ' <fieldset id="fieldset_add_user">' . "\n"
- . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&adduser=1">' . "\n"
+ . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&adduser=1" class="' . $conditional_class . '">' . "\n"
. PMA_getIcon('b_usradd.png')
. ' ' . __('Add a new User') . '</a>' . "\n"
. ' </fieldset>' . "\n";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3855-g6f305d4
by Michal Čihař 16 Jun '11
by Michal Čihař 16 Jun '11
16 Jun '11
The branch, master has been updated
via 6f305d40814a5383e739f86a8f68ae19118c03bf (commit)
via 9bfa22c1fff9524107a8e60344e473629661058c (commit)
via 351ef09b9065e7fb41e384555e76e5fa54f2e770 (commit)
via 032d3ea6583c2feee1ace19e6181defa2d7fb9e4 (commit)
via f82d2beb09c5211f981a351b3949bcf2513068e0 (commit)
via e20532c0c4bba65904aabd3c8ee0ae470b4792d5 (commit)
via df476a1b939c21264ab7b8a99cd62393db59b73a (commit)
via 9e7e3b39af1939e5299fd7711ebb2c73ea8296db (commit)
via b90bf046182fe02943a13c8ddcfbeee43c845702 (commit)
via aaead6b53c744f4b11efdeb8440257bdad527c7f (commit)
via fa7a286e59593b7386de938eb86065027fc752ca (commit)
via 0d8f486a7b797a0377a5228780de87b4d468b05b (commit)
via 3c5979e104fab5b1b0873e817f9c831a937b52f6 (commit)
via ac1acdb727bf1ac81c6ee3cdd0261f29a1b4c57c (commit)
via 2eb9a08b0506bb9eb57f01660162988a1944acf1 (commit)
via 49d8d4aa62b4607374b8f8a28dbd3ae2449fd4f8 (commit)
via 991548f00de162355934f4da08c4419de4871ec1 (commit)
via 920d9a01df7de7417fc4dbf27bac28a9960599a9 (commit)
via 0df42cb61f0bccb6ce4bf7e4a4eafd9edf499173 (commit)
via 4d21881b6eedcbe521456867e8151bbb30233a25 (commit)
via bfadd8098cb7eb793d6792e0ec3b736c6e7ee1c8 (commit)
via 2819f6cb2a58050619504aad6d1c24a0096824a0 (commit)
via 374166e7e112ce62d1dbf974ebd9edf4c0e839cb (commit)
via 6ea13531b498bdb9b76ee11cf38813b44825679e (commit)
via 3669d3f7696e57a77b5cf1a0b2dddd9e1091e26a (commit)
via d13b6b054ee6e147ff0044eb64fa6017679e6182 (commit)
via f5e5614400543b98f7eab95e5e3bb5cdd378bab2 (commit)
via 6b65eebebe2b51fa7205ed564136980751c24b40 (commit)
via 849911e099f1191c33ecb222848ce1c73f90f249 (commit)
via cd682d897a95fb854be7059390b7803e5eedb83c (commit)
via c640f5463524b6dbcc8f481954388e6648272091 (commit)
via f6a0ff9c2f90fce15c2660e08cbfa928a776e7de (commit)
via fbb21572247b9e34eba8a75c83ac4acd5e9d2a49 (commit)
via 2a1268b95ebfca31eeceb964b1c3354ca74e9ab8 (commit)
via abac8ccae7b44d639d4bbfc36bd725d6223b14c9 (commit)
via 8b3cc87892364acec3cea86a9099fe4d97adafe3 (commit)
via fa4fec50a447b10f3c4147acc4492c6b5db311dc (commit)
via ab8b9cfd6101bc36832429d20dc207e2945efa53 (commit)
via 5b44f491933d04578beba485ea0f70babaafb2e6 (commit)
via 1c472f1dff8e82cd3f00e47035b8d26c9ae14bae (commit)
via d2d349febd902ceded9bf5a664fdecd3e8c7e035 (commit)
via 48f3aec978e57a935e449001070989a754e86b1c (commit)
via e4e256526bcc9af3201669aaa9599c5b28533dbd (commit)
via 236f10845c25f4b41176ed1786c81c58490f45df (commit)
via 93d98491b72b94fb1d33ac958e908a520e22cadd (commit)
via fd02aecdaf29688e77d814da35055a9ef32449bd (commit)
via 22dd70468361071957039936ba19113ef4183bbc (commit)
via 1951a01e9560c2124493ad7dc1cfd074483abcac (commit)
via b58cc407ca95d52b53f0dfbc505fbfad68df3275 (commit)
via c7af7b18c9977407c3080e91c033d1bf1d60b059 (commit)
via 6431e545ecb2c7e26735296ac291144bc6fa7de8 (commit)
via 15794bd631f4f5dbf7637a23d278f93511920dd1 (commit)
via c82a5d770e5b2cb141d0108f46c3d742efefe5b9 (commit)
via 894e801f387ac04051ae58f2a15df2c905ce1594 (commit)
via edd755be9667632dbe3e692e5bb52ded93f0e019 (commit)
via 4c87c00cba05f6d6c7aec90fa77082d0265fba52 (commit)
via 97d698874fa0640c29907596a1d7538da4dfbe17 (commit)
via 760dbf203cfe31a3848591a3a49bf447ee2e139f (commit)
via 10197017df45eece1ec63fe17fc22e3f4591838a (commit)
via d9d86d763b2d544d7fa42de2ffc448b507b529b4 (commit)
via 95340fa7af9badd5ab19f57fb116e60664b1da53 (commit)
via 88b0b7e36e4291601029f4374ade52b49b404386 (commit)
via 14eeaa0c19df65281122e7aa81e334fb9b7cce12 (commit)
via 9dc913431dabbce28eec0f93a58c401050dc23df (commit)
via 2112e660c0fe873b6b58200dcd2efe9cb844cc4c (commit)
via 6d670b571f433e3fd6677865efaf9a5f54fdcebc (commit)
via 1959dcf9171ed54c5b3625fde8f90f77d3e18345 (commit)
via 79b7cde68dc78a0d079d1b904928177746c91a64 (commit)
via c865b6929d2ecdee1d48892026aa54d4105a30e4 (commit)
via abbbb838a48ce71f2c1c48a3e67c319ae4b3e4c6 (commit)
via e9404a518d93c90baf1f5ea00cc21497f9661f0f (commit)
via fd002021aac1fc7534e14567cada23898ffc3078 (commit)
via f7291745f6635d544431c67e05c10296ffebc6f6 (commit)
from 163d929abb3ea91c7b8fe8e58f64d3da7fa91a4e (commit)
- Log -----------------------------------------------------------------
commit 6f305d40814a5383e739f86a8f68ae19118c03bf
Merge: 9bfa22c1fff9524107a8e60344e473629661058c 163d929abb3ea91c7b8fe8e58f64d3da7fa91a4e
Author: Pootle server <pootle(a)cihar.com>
Date: Thu Jun 16 00:40:06 2011 +0200
Merge remote-tracking branch 'origin/master'
commit 9bfa22c1fff9524107a8e60344e473629661058c
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:11:07 2011 +0200
Translation update done using Pootle.
commit 351ef09b9065e7fb41e384555e76e5fa54f2e770
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:10:58 2011 +0200
Translation update done using Pootle.
commit 032d3ea6583c2feee1ace19e6181defa2d7fb9e4
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:10:49 2011 +0200
Translation update done using Pootle.
commit f82d2beb09c5211f981a351b3949bcf2513068e0
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:10:17 2011 +0200
Translation update done using Pootle.
commit e20532c0c4bba65904aabd3c8ee0ae470b4792d5
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:10:03 2011 +0200
Translation update done using Pootle.
commit df476a1b939c21264ab7b8a99cd62393db59b73a
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:09:44 2011 +0200
Translation update done using Pootle.
commit 9e7e3b39af1939e5299fd7711ebb2c73ea8296db
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:09:31 2011 +0200
Translation update done using Pootle.
commit b90bf046182fe02943a13c8ddcfbeee43c845702
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:07:17 2011 +0200
Translation update done using Pootle.
commit aaead6b53c744f4b11efdeb8440257bdad527c7f
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:06:46 2011 +0200
Translation update done using Pootle.
commit fa7a286e59593b7386de938eb86065027fc752ca
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:06:30 2011 +0200
Translation update done using Pootle.
commit 0d8f486a7b797a0377a5228780de87b4d468b05b
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:05:55 2011 +0200
Translation update done using Pootle.
commit 3c5979e104fab5b1b0873e817f9c831a937b52f6
Author: stefan <stefan(a)inkopsforum.se>
Date: Thu Jun 16 00:04:05 2011 +0200
Translation update done using Pootle.
commit ac1acdb727bf1ac81c6ee3cdd0261f29a1b4c57c
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:59:55 2011 +0200
Translation update done using Pootle.
commit 2eb9a08b0506bb9eb57f01660162988a1944acf1
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:57:02 2011 +0200
Translation update done using Pootle.
commit 49d8d4aa62b4607374b8f8a28dbd3ae2449fd4f8
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:55:56 2011 +0200
Translation update done using Pootle.
commit 991548f00de162355934f4da08c4419de4871ec1
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:55:16 2011 +0200
Translation update done using Pootle.
commit 920d9a01df7de7417fc4dbf27bac28a9960599a9
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:54:09 2011 +0200
Translation update done using Pootle.
commit 0df42cb61f0bccb6ce4bf7e4a4eafd9edf499173
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:53:55 2011 +0200
Translation update done using Pootle.
commit 4d21881b6eedcbe521456867e8151bbb30233a25
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:53:34 2011 +0200
Translation update done using Pootle.
commit bfadd8098cb7eb793d6792e0ec3b736c6e7ee1c8
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:52:52 2011 +0200
Translation update done using Pootle.
commit 2819f6cb2a58050619504aad6d1c24a0096824a0
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:51:32 2011 +0200
Translation update done using Pootle.
commit 374166e7e112ce62d1dbf974ebd9edf4c0e839cb
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:51:10 2011 +0200
Translation update done using Pootle.
commit 6ea13531b498bdb9b76ee11cf38813b44825679e
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:50:52 2011 +0200
Translation update done using Pootle.
commit 3669d3f7696e57a77b5cf1a0b2dddd9e1091e26a
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:50:31 2011 +0200
Translation update done using Pootle.
commit d13b6b054ee6e147ff0044eb64fa6017679e6182
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:50:14 2011 +0200
Translation update done using Pootle.
commit f5e5614400543b98f7eab95e5e3bb5cdd378bab2
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:49:51 2011 +0200
Translation update done using Pootle.
commit 6b65eebebe2b51fa7205ed564136980751c24b40
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:48:44 2011 +0200
Translation update done using Pootle.
commit 849911e099f1191c33ecb222848ce1c73f90f249
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:46:54 2011 +0200
Translation update done using Pootle.
commit cd682d897a95fb854be7059390b7803e5eedb83c
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:46:18 2011 +0200
Translation update done using Pootle.
commit c640f5463524b6dbcc8f481954388e6648272091
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:46:01 2011 +0200
Translation update done using Pootle.
commit f6a0ff9c2f90fce15c2660e08cbfa928a776e7de
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:45:16 2011 +0200
Translation update done using Pootle.
commit fbb21572247b9e34eba8a75c83ac4acd5e9d2a49
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:44:36 2011 +0200
Translation update done using Pootle.
commit 2a1268b95ebfca31eeceb964b1c3354ca74e9ab8
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:44:01 2011 +0200
Translation update done using Pootle.
commit abac8ccae7b44d639d4bbfc36bd725d6223b14c9
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:43:45 2011 +0200
Translation update done using Pootle.
commit 8b3cc87892364acec3cea86a9099fe4d97adafe3
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:42:32 2011 +0200
Translation update done using Pootle.
commit fa4fec50a447b10f3c4147acc4492c6b5db311dc
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:41:34 2011 +0200
Translation update done using Pootle.
commit ab8b9cfd6101bc36832429d20dc207e2945efa53
Author: stefan <stefan(a)inkopsforum.se>
Date: Wed Jun 15 23:39:39 2011 +0200
Translation update done using Pootle.
commit 5b44f491933d04578beba485ea0f70babaafb2e6
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:05:14 2011 +0200
Translation update done using Pootle.
commit 1c472f1dff8e82cd3f00e47035b8d26c9ae14bae
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:05:06 2011 +0200
Translation update done using Pootle.
commit d2d349febd902ceded9bf5a664fdecd3e8c7e035
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:04:58 2011 +0200
Translation update done using Pootle.
commit 48f3aec978e57a935e449001070989a754e86b1c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:04:51 2011 +0200
Translation update done using Pootle.
commit e4e256526bcc9af3201669aaa9599c5b28533dbd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:04:41 2011 +0200
Translation update done using Pootle.
commit 236f10845c25f4b41176ed1786c81c58490f45df
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:04:13 2011 +0200
Translation update done using Pootle.
commit 93d98491b72b94fb1d33ac958e908a520e22cadd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:04:01 2011 +0200
Translation update done using Pootle.
commit fd02aecdaf29688e77d814da35055a9ef32449bd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:03:53 2011 +0200
Translation update done using Pootle.
commit 22dd70468361071957039936ba19113ef4183bbc
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:03:25 2011 +0200
Translation update done using Pootle.
commit 1951a01e9560c2124493ad7dc1cfd074483abcac
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:02:58 2011 +0200
Translation update done using Pootle.
commit b58cc407ca95d52b53f0dfbc505fbfad68df3275
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 23:00:38 2011 +0200
Translation update done using Pootle.
commit c7af7b18c9977407c3080e91c033d1bf1d60b059
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:59:32 2011 +0200
Translation update done using Pootle.
commit 6431e545ecb2c7e26735296ac291144bc6fa7de8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:59:10 2011 +0200
Translation update done using Pootle.
commit 15794bd631f4f5dbf7637a23d278f93511920dd1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:57:20 2011 +0200
Translation update done using Pootle.
commit c82a5d770e5b2cb141d0108f46c3d742efefe5b9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:57:03 2011 +0200
Translation update done using Pootle.
commit 894e801f387ac04051ae58f2a15df2c905ce1594
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:56:51 2011 +0200
Translation update done using Pootle.
commit edd755be9667632dbe3e692e5bb52ded93f0e019
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:56:35 2011 +0200
Translation update done using Pootle.
commit 4c87c00cba05f6d6c7aec90fa77082d0265fba52
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:56:24 2011 +0200
Translation update done using Pootle.
commit 97d698874fa0640c29907596a1d7538da4dfbe17
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:56:07 2011 +0200
Translation update done using Pootle.
commit 760dbf203cfe31a3848591a3a49bf447ee2e139f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:55:54 2011 +0200
Translation update done using Pootle.
commit 10197017df45eece1ec63fe17fc22e3f4591838a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:55:48 2011 +0200
Translation update done using Pootle.
commit d9d86d763b2d544d7fa42de2ffc448b507b529b4
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:55:42 2011 +0200
Translation update done using Pootle.
commit 95340fa7af9badd5ab19f57fb116e60664b1da53
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:55:25 2011 +0200
Translation update done using Pootle.
commit 88b0b7e36e4291601029f4374ade52b49b404386
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:55:10 2011 +0200
Translation update done using Pootle.
commit 14eeaa0c19df65281122e7aa81e334fb9b7cce12
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:54:55 2011 +0200
Translation update done using Pootle.
commit 9dc913431dabbce28eec0f93a58c401050dc23df
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:54:47 2011 +0200
Translation update done using Pootle.
commit 2112e660c0fe873b6b58200dcd2efe9cb844cc4c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:54:38 2011 +0200
Translation update done using Pootle.
commit 6d670b571f433e3fd6677865efaf9a5f54fdcebc
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:54:25 2011 +0200
Translation update done using Pootle.
commit 1959dcf9171ed54c5b3625fde8f90f77d3e18345
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:54:12 2011 +0200
Translation update done using Pootle.
commit 79b7cde68dc78a0d079d1b904928177746c91a64
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:53:59 2011 +0200
Translation update done using Pootle.
commit c865b6929d2ecdee1d48892026aa54d4105a30e4
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:53:49 2011 +0200
Translation update done using Pootle.
commit abbbb838a48ce71f2c1c48a3e67c319ae4b3e4c6
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:53:41 2011 +0200
Translation update done using Pootle.
commit e9404a518d93c90baf1f5ea00cc21497f9661f0f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:53:33 2011 +0200
Translation update done using Pootle.
commit fd002021aac1fc7534e14567cada23898ffc3078
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:53:21 2011 +0200
Translation update done using Pootle.
commit f7291745f6635d544431c67e05c10296ffebc6f6
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Jun 15 22:53:08 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 97 +++++++++++++++++++++++++------------------------------------
po/sv.po | 93 +++++++++++++++++++++++-----------------------------------
2 files changed, 77 insertions(+), 113 deletions(-)
diff --git a/po/es.po b/po/es.po
index 2dbdf72..4d2b8d3 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-06-09 17:25+0200\n"
+"PO-Revision-Date: 2011-06-15 23:05+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -1018,10 +1018,9 @@ msgstr "¡Ésto no es un número!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
#| msgid "Log file count"
msgid "Total count"
-msgstr "Cantidad de archivos de registro"
+msgstr "Cantidad total"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1058,24 +1057,22 @@ msgid "Close"
msgstr "Cerrar"
#: js/messages.php:64 server_status.php:397
-#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
-msgstr "Elección del servidor"
+msgstr "Gráfico de tráfico en vivo"
#: js/messages.php:65 server_status.php:400
msgid "Live conn./process chart"
-msgstr ""
+msgstr "Gráfico de procesos/conexiones en vivo"
#: js/messages.php:66 server_status.php:429
-#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
-msgstr "Mostrar gráfico de consultas"
+msgstr "Gráfico de consultas en vivo"
#: js/messages.php:68
msgid "Static data"
-msgstr ""
+msgstr "Datos estáticos"
#. l10n: Total number of queries
#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
@@ -1088,7 +1085,7 @@ msgstr "Total"
#. l10n: Other, small valued, queries
#: js/messages.php:72 server_status.php:592
msgid "Other"
-msgstr ""
+msgstr "Otro"
#. l10n: Thousands separator
#: js/messages.php:74 libraries/common.lib.php:1375
@@ -5007,24 +5004,22 @@ msgid "Language"
msgstr "Idioma"
#: libraries/display_tbl.lib.php:397
-#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
-msgstr "Columnas para las áreas de texto"
+msgstr "Restaurar orden de las columnas"
#: libraries/display_tbl.lib.php:411
msgid "Drag to reorder"
-msgstr ""
+msgstr "Arrastrar para reordenar"
#: libraries/display_tbl.lib.php:412
-#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
-msgstr "Clic para seleccionar"
+msgstr "Pulsar para ordenar"
#: libraries/display_tbl.lib.php:413
msgid "Click to mark/unmark"
-msgstr ""
+msgstr "Pulsar para marcar/desmarcar"
#: libraries/display_tbl.lib.php:425
#, php-format
@@ -8422,71 +8417,62 @@ msgid "Runtime Information"
msgstr "Información acerca del tiempo de ejecución del proceso principal"
#: server_status.php:371
-#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
-msgstr "Elección del servidor"
+msgstr "Tráfico del servidor"
#: server_status.php:372
msgid "Query statistics"
msgstr "Estadísticas de Consulta"
#: server_status.php:373
-#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
-msgstr "Ver la tabla de estado del esclavo"
+msgstr "Todas las variables de estado"
#: server_status.php:383 server_status.php:416
-#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
-msgstr "Actualizar"
+msgstr "Velocidad de actualización"
#: server_status.php:384 server_status.php:417
-#, fuzzy
#| msgid "Second"
msgid "second"
-msgstr "Segundo"
+msgstr "segundo"
#: server_status.php:385 server_status.php:386 server_status.php:387
#: server_status.php:388 server_status.php:389 server_status.php:418
#: server_status.php:419 server_status.php:420 server_status.php:421
#: server_status.php:422
-#, fuzzy
#| msgid "Second"
msgid "seconds"
-msgstr "Segundo"
+msgstr "segundos"
#: server_status.php:390 server_status.php:391 server_status.php:392
#: server_status.php:393 server_status.php:423 server_status.php:424
#: server_status.php:425 server_status.php:426
-#, fuzzy
#| msgid "Minute"
msgid "minutes"
-msgstr "Minuto"
+msgstr "minutos"
#: server_status.php:446
-#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
-msgstr "No cambiar la contraseña"
+msgstr "Que contengan la palabra:"
#: server_status.php:451
-#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
-msgstr "Mostrar las tablas que están abiertas"
+msgstr "Mostrar sólo valores de alerta"
#: server_status.php:455
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrar por categoría..."
#: server_status.php:468
-#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
-msgstr "Enlaces relacionados"
+msgstr "Enlaces relacionados:"
#: server_status.php:513 server_status.php:545 server_status.php:666
#: server_status.php:711
@@ -8508,12 +8494,12 @@ msgstr "Tipo de consulta"
#. l10n: # = Amount of queries
#: server_status.php:543
msgid "#"
-msgstr ""
+msgstr "#"
#: server_status.php:615
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Tráfico de red desde el inicio: %s"
#: server_status.php:623
#, php-format
@@ -8598,10 +8584,9 @@ msgid "ID"
msgstr "Identificación"
#: server_status.php:846
-#, fuzzy
#| msgid "Whether to enable SSL for connection to MySQL server."
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Si habilitar SSL para la conexión al servidor MySQL o no."
+msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos."
#: server_status.php:847
msgid ""
@@ -8623,6 +8608,7 @@ msgstr ""
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
+"Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)."
#: server_status.php:850
msgid ""
@@ -9061,6 +9047,8 @@ msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"El máximo número de conexiones que han sido utilizadas simultáneamente desde "
+"que inició el servidor."
#: server_status.php:921
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
@@ -9094,6 +9082,9 @@ msgid ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Cantidad de bloques de memoria libre en la cache de consultas. Cantidades "
+"altas pueden indicar problemas de fragmentación que pueden ser solucionados "
+"ejecutando la consulta FLUSH QUERY CACHE."
#: server_status.php:927
msgid "The amount of free memory for query cache."
@@ -9845,10 +9836,9 @@ msgid "Line"
msgstr "Línea"
#: tbl_chart.php:88
-#, fuzzy
#| msgid "Inline"
msgid "Spline"
-msgstr "En línea"
+msgstr "Ranuras"
#: tbl_chart.php:89
msgid "Pie"
@@ -9859,50 +9849,43 @@ msgid "Stacked"
msgstr "Apiladas"
#: tbl_chart.php:94
-#, fuzzy
#| msgid "Report title:"
msgid "Chart title"
-msgstr "Título del reporte:"
+msgstr "Título del gráfico"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Eje X:"
#: tbl_chart.php:113
-#, fuzzy
#| msgid "SQL queries"
msgid "Series:"
-msgstr "Consultas SQL"
+msgstr "Series:"
#: tbl_chart.php:115
-#, fuzzy
#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Columnas para las áreas de texto"
+msgstr "Columnas restantes"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "Etiqueta del eje X"
+msgstr "Etiqueta del eje X:"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "Value"
msgid "X Values"
-msgstr "Valor"
+msgstr "Valores X"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Etiqueta del eje Y"
+msgstr "Etiqueta del eje Y:"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Value"
msgid "Y Values"
-msgstr "Valor"
+msgstr "Valores Y"
#: tbl_create.php:56
#, php-format
diff --git a/po/sv.po b/po/sv.po
index d1dc75b..83846dc 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-06-09 23:29+0200\n"
+"PO-Revision-Date: 2011-06-16 00:11+0200\n"
"Last-Translator: <stefan(a)inkopsforum.se>\n"
"Language-Team: swedish <sv(a)li.org>\n"
+"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -1004,10 +1004,9 @@ msgstr "Detta är inte ett nummer!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
#| msgid "Log file count"
msgid "Total count"
-msgstr "Antal loggfiler"
+msgstr "Totalt antal"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1044,24 +1043,22 @@ msgid "Close"
msgstr "Stäng"
#: js/messages.php:64 server_status.php:397
-#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
-msgstr "Välj server"
+msgstr "Live trafik diagram"
#: js/messages.php:65 server_status.php:400
msgid "Live conn./process chart"
-msgstr ""
+msgstr "Live anslutning/process diagram"
#: js/messages.php:66 server_status.php:429
-#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
-msgstr "Visa fråge diagram"
+msgstr "Live sökfrågediagram"
#: js/messages.php:68
msgid "Static data"
-msgstr ""
+msgstr "Statisk data"
#. l10n: Total number of queries
#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
@@ -1074,7 +1071,7 @@ msgstr "Total"
#. l10n: Other, small valued, queries
#: js/messages.php:72 server_status.php:592
msgid "Other"
-msgstr ""
+msgstr "Annan"
#. l10n: Thousands separator
#: js/messages.php:74 libraries/common.lib.php:1375
@@ -4910,24 +4907,22 @@ msgid "Language"
msgstr "Språk"
#: libraries/display_tbl.lib.php:397
-#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
-msgstr "Textarea kolumner"
+msgstr "Återställ ordningen på kolumner"
#: libraries/display_tbl.lib.php:411
msgid "Drag to reorder"
-msgstr ""
+msgstr "Dra för att ändra ordning"
#: libraries/display_tbl.lib.php:412
-#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
-msgstr "Klicka för att markera"
+msgstr "Klicka för att sortera"
#: libraries/display_tbl.lib.php:413
msgid "Click to mark/unmark"
-msgstr ""
+msgstr "Klicka för att markera/avmarkera"
#: libraries/display_tbl.lib.php:425
#, php-format
@@ -8243,71 +8238,62 @@ msgid "Runtime Information"
msgstr "Körningsinformation"
#: server_status.php:371
-#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
-msgstr "Välj server"
+msgstr "Server trafik"
#: server_status.php:372
msgid "Query statistics"
msgstr "Visa statistik"
#: server_status.php:373
-#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
-msgstr "Se slavtabell status"
+msgstr "Alla statusvariabler"
#: server_status.php:383 server_status.php:416
-#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
-msgstr "Uppdatera"
+msgstr "Uppdateringsfrekvens"
#: server_status.php:384 server_status.php:417
-#, fuzzy
#| msgid "Second"
msgid "second"
-msgstr "Sekunder"
+msgstr "Sekund"
#: server_status.php:385 server_status.php:386 server_status.php:387
#: server_status.php:388 server_status.php:389 server_status.php:418
#: server_status.php:419 server_status.php:420 server_status.php:421
#: server_status.php:422
-#, fuzzy
#| msgid "Second"
msgid "seconds"
-msgstr "Sekunder"
+msgstr "sekunder"
#: server_status.php:390 server_status.php:391 server_status.php:392
#: server_status.php:393 server_status.php:423 server_status.php:424
#: server_status.php:425 server_status.php:426
-#, fuzzy
#| msgid "Minute"
msgid "minutes"
-msgstr "Minuter"
+msgstr "minuter"
#: server_status.php:446
-#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
-msgstr "Ändra inte lösenordet"
+msgstr "Innehåller ordet:"
#: server_status.php:451
-#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
-msgstr "Visa öppna tabeller"
+msgstr "Visa endast varnings värden"
#: server_status.php:455
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrera efter kategori ..."
#: server_status.php:468
-#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
-msgstr "Liknande länkar"
+msgstr "Liknande länkar:"
#: server_status.php:513 server_status.php:545 server_status.php:666
#: server_status.php:711
@@ -8329,12 +8315,12 @@ msgstr "Fråge-typ"
#. l10n: # = Amount of queries
#: server_status.php:543
msgid "#"
-msgstr ""
+msgstr "#"
#: server_status.php:615
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Nätverkstrafik sedan start:%s"
#: server_status.php:623
#, php-format
@@ -8416,10 +8402,9 @@ msgid "ID"
msgstr "ID"
#: server_status.php:846
-#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Kunde inte ansluta till MySQL-server"
+msgstr "Antalet misslyckade försök att ansluta till MySQL-servern."
#: server_status.php:847
msgid ""
@@ -8438,7 +8423,7 @@ msgstr "Antalet transaktioner som använde den temporära binära loggcachen."
#: server_status.php:849
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern."
#: server_status.php:850
msgid ""
@@ -8858,6 +8843,8 @@ msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"Det maximala antalet anslutningar som har använts samtidigt sedan servern "
+"startade."
#: server_status.php:921
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
@@ -8889,6 +8876,8 @@ msgid ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, "
+"vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando."
#: server_status.php:927
msgid "The amount of free memory for query cache."
@@ -9624,10 +9613,9 @@ msgid "Line"
msgstr "Linje"
#: tbl_chart.php:88
-#, fuzzy
#| msgid "Inline"
msgid "Spline"
-msgstr "Infogad"
+msgstr "ISpårning"
#: tbl_chart.php:89
msgid "Pie"
@@ -9638,50 +9626,43 @@ msgid "Stacked"
msgstr "Staplade"
#: tbl_chart.php:94
-#, fuzzy
#| msgid "Report title:"
msgid "Chart title"
-msgstr "Rapport titel:"
+msgstr "Diagramtitel"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "X-axel:"
#: tbl_chart.php:113
-#, fuzzy
#| msgid "SQL queries"
msgid "Series:"
-msgstr "SQL-frågor"
+msgstr "Serie:"
#: tbl_chart.php:115
-#, fuzzy
#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Textarea kolumner"
+msgstr "Återstående kolumner"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "X Axis label"
msgid "X-Axis label:"
msgstr "X-axel etikett"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "Value"
msgid "X Values"
-msgstr "Värde"
+msgstr "X värde"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Y Axis label"
msgid "Y-Axis label:"
msgstr "Y-axel etikett"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Value"
msgid "Y Values"
-msgstr "Värde"
+msgstr "Y värden"
#: tbl_create.php:56
#, php-format
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3782-g163d929
by Michal Čihař 15 Jun '11
by Michal Čihař 15 Jun '11
15 Jun '11
The branch, master has been updated
via 163d929abb3ea91c7b8fe8e58f64d3da7fa91a4e (commit)
via 0aa13c5497949196c156c9984b70b8c70fe56709 (commit)
via b7e0265f0ba1eaae64df80177e856d851811bd0a (commit)
via 56a2e05ccd7c3dba725d00cdb7e18e7f32b94998 (commit)
via bbc1ff47aed0e24b8f8774222e715f098cc2c4d8 (commit)
via 1924fe1690d9625f36e5fb176381ecccc19d7abe (commit)
via 1f7452532f257f09fbfe1be3ce01a20f825570b5 (commit)
via dbc95a1114f3a8194dd72a5b664debd3cea7a9ad (commit)
via 589272937f4458713a5cda41b19687113dc7b676 (commit)
via 3bcdbd2b34f7d71383944364658a0684cadb7d2e (commit)
via baa7ffb28fa89caf989f3b3494450d1b3b413f57 (commit)
via 19845079c29f08de54044e7b12d0c21b59a79dbe (commit)
via e65b1bec7aa9d6d158bcdc279086af822077806d (commit)
via 63d4ddf9895e063f65aa573a0daeff2f58101e18 (commit)
via a22921f7b576217d6fdcca28dfaf7134e6bd047b (commit)
via 5d16747f00a6492e70e36a60fc0232fa3ec92fd0 (commit)
via f347b564bee2e3ad90c90790ebb2e1cb11455d59 (commit)
via 1c43a338610e023ce94f9484f73c2e8848b14a3f (commit)
via 90c0dc425e350b091d73a55534f0d858e035e9a7 (commit)
from 08861788590164bab28c8dbaa4f58eebd772a7bc (commit)
- Log -----------------------------------------------------------------
commit 163d929abb3ea91c7b8fe8e58f64d3da7fa91a4e
Merge: b7e0265f0ba1eaae64df80177e856d851811bd0a 0aa13c5497949196c156c9984b70b8c70fe56709
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Jun 15 22:48:05 2011 +0200
Merge remote-tracking branch 'tyron/master'
commit 0aa13c5497949196c156c9984b70b8c70fe56709
Author: Tyron Madlener <tyronx(a)gmail.com>
Date: Wed Jun 15 19:20:19 2011 +0200
No php5.3 dependency & fixes ajax requests broken
commit b7e0265f0ba1eaae64df80177e856d851811bd0a
Merge: 56a2e05ccd7c3dba725d00cdb7e18e7f32b94998 08861788590164bab28c8dbaa4f58eebd772a7bc
Author: Pootle server <pootle(a)cihar.com>
Date: Wed Jun 15 18:40:06 2011 +0200
Merge remote-tracking branch 'origin/master'
commit 56a2e05ccd7c3dba725d00cdb7e18e7f32b94998
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:03:18 2011 +0200
Translation update done using Pootle.
commit bbc1ff47aed0e24b8f8774222e715f098cc2c4d8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:03:12 2011 +0200
Translation update done using Pootle.
commit 1924fe1690d9625f36e5fb176381ecccc19d7abe
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:03:06 2011 +0200
Translation update done using Pootle.
commit 1f7452532f257f09fbfe1be3ce01a20f825570b5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:02:57 2011 +0200
Translation update done using Pootle.
commit dbc95a1114f3a8194dd72a5b664debd3cea7a9ad
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:02:47 2011 +0200
Translation update done using Pootle.
commit 589272937f4458713a5cda41b19687113dc7b676
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:02:37 2011 +0200
Translation update done using Pootle.
commit 3bcdbd2b34f7d71383944364658a0684cadb7d2e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:02:08 2011 +0200
Translation update done using Pootle.
commit baa7ffb28fa89caf989f3b3494450d1b3b413f57
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:01:34 2011 +0200
Translation update done using Pootle.
commit 19845079c29f08de54044e7b12d0c21b59a79dbe
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:00:47 2011 +0200
Translation update done using Pootle.
commit e65b1bec7aa9d6d158bcdc279086af822077806d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:00:33 2011 +0200
Translation update done using Pootle.
commit 63d4ddf9895e063f65aa573a0daeff2f58101e18
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 17:00:25 2011 +0200
Translation update done using Pootle.
commit a22921f7b576217d6fdcca28dfaf7134e6bd047b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 16:59:24 2011 +0200
Translation update done using Pootle.
commit 5d16747f00a6492e70e36a60fc0232fa3ec92fd0
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 16:58:45 2011 +0200
Translation update done using Pootle.
commit f347b564bee2e3ad90c90790ebb2e1cb11455d59
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 16:58:38 2011 +0200
Translation update done using Pootle.
commit 1c43a338610e023ce94f9484f73c2e8848b14a3f
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 16:58:29 2011 +0200
Translation update done using Pootle.
commit 90c0dc425e350b091d73a55534f0d858e035e9a7
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 16:58:22 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/en_GB.po | 14 ++++++--------
po/fr.po | 28 ++++++++++------------------
server_status.php | 5 +----
3 files changed, 17 insertions(+), 30 deletions(-)
diff --git a/po/en_GB.po b/po/en_GB.po
index b5b3572..ce8c8c8 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-06-15 02:35+0200\n"
+"PO-Revision-Date: 2011-06-15 16:58+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"
@@ -4900,24 +4900,22 @@ msgid "Language"
msgstr "Language"
#: libraries/display_tbl.lib.php:397
-#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
-msgstr "Textarea columns"
+msgstr "Restore column order"
#: libraries/display_tbl.lib.php:411
msgid "Drag to reorder"
-msgstr ""
+msgstr "Drag to reorder"
#: libraries/display_tbl.lib.php:412
-#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
-msgstr "Click to select"
+msgstr "Click to sort"
#: libraries/display_tbl.lib.php:413
msgid "Click to mark/unmark"
-msgstr ""
+msgstr "Click to mark/unmark"
#: libraries/display_tbl.lib.php:425
#, php-format
diff --git a/po/fr.po b/po/fr.po
index 38c6b0e..9228b92 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-06-15 14:46+0200\n"
+"PO-Revision-Date: 2011-06-15 17:03+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -4960,24 +4960,22 @@ msgid "Language"
msgstr "Langue"
#: libraries/display_tbl.lib.php:397
-#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
-msgstr "Taille horizontale pour une zone de texte"
+msgstr "Restaurer l'ordre des colonnes"
#: libraries/display_tbl.lib.php:411
msgid "Drag to reorder"
-msgstr ""
+msgstr "Faire glisser pour réordonner"
#: libraries/display_tbl.lib.php:412
-#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
-msgstr "Cliquer pour sélectionner"
+msgstr "Cliquer pour trier"
#: libraries/display_tbl.lib.php:413
msgid "Click to mark/unmark"
-msgstr ""
+msgstr "Cliquer pour marquer/enlever les marques"
#: libraries/display_tbl.lib.php:425
#, php-format
@@ -9764,40 +9762,34 @@ msgid "X-Axis:"
msgstr "Axe des X"
#: tbl_chart.php:113
-#, fuzzy
#| msgid "SQL queries"
msgid "Series:"
-msgstr "Requêtes SQL"
+msgstr "Séries:"
#: tbl_chart.php:115
-#, fuzzy
#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Taille horizontale pour une zone de texte"
+msgstr "Les colonnes restantes"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "X Axis label"
msgid "X-Axis label:"
msgstr "Étiquette pour l'axe des X"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "Value"
msgid "X Values"
-msgstr "Valeur"
+msgstr "Valeurs en X"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Y Axis label"
msgid "Y-Axis label:"
msgstr "Étiquette pour l'axe des Y"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Value"
msgid "Y Values"
-msgstr "Valeur"
+msgstr "Valeurs en Y"
#: tbl_create.php:56
#, php-format
diff --git a/server_status.php b/server_status.php
index 2f06abd..2c4739f 100644
--- a/server_status.php
+++ b/server_status.php
@@ -25,13 +25,10 @@ if (isset($_REQUEST['ajax_request'])) {
// Prevent ajax requests from being cached
header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
- header_remove('Last-Modified');
// Send correct charset
header('Content-Type: text/html; charset=UTF-8');
- if (isset($_REQUEST["query_chart"])) {
- exit(createQueryChart());
- }
+ // real-time charting data
if(isset($_REQUEST['chart_data'])) {
switch($_REQUEST['type']) {
case 'proc':
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3763-g0886178
by Madhura Jayaratne 15 Jun '11
by Madhura Jayaratne 15 Jun '11
15 Jun '11
The branch, master has been updated
via 08861788590164bab28c8dbaa4f58eebd772a7bc (commit)
via 396e4e99799c91a8c39f2bbe156e6795cdef6ee5 (commit)
from f05a988b86049fae9eadfa0c1f29cb020d332930 (commit)
- Log -----------------------------------------------------------------
commit 08861788590164bab28c8dbaa4f58eebd772a7bc
Merge: f05a988b86049fae9eadfa0c1f29cb020d332930 396e4e99799c91a8c39f2bbe156e6795cdef6ee5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Wed Jun 15 20:10:54 2011 +0530
Merge branch 'QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 ++-
js/functions.js | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index e648e2f..f30beea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-phpMyAdmin - ChangeLog
+phpMyAdmin - ChangeLog
======================
3.5.0.0 (not yet released)
@@ -29,6 +29,7 @@
- bug #3313210 [interface] Columns class sometimes changed for nothing
- patch #3313326 [interface] Some tooltips do not disappear
- bug #3315720 [search] Fix search in non unicode tables
+- bug #3315741 [display] Inline query edit broken
3.4.2.0 (2011-06-07)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
diff --git a/js/functions.js b/js/functions.js
index 4ad7c77..1b09f63 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1151,7 +1151,7 @@ function changeMIMEType(db, table, reference, mime_type)
* Jquery Coding for inline editing SQL_QUERY
*/
$(document).ready(function(){
- $(".inline_edit_sql").click( function(){
+ $(".inline_edit_sql").live('click', function(){
var db = $(this).prev().find("input[name='db']").val();
var table = $(this).prev().find("input[name='table']").val();
var token = $(this).prev().find("input[name='token']").val();
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_2-22-g396e4e9
by Madhura Jayaratne 15 Jun '11
by Madhura Jayaratne 15 Jun '11
15 Jun '11
The branch, QA_3_4 has been updated
via 396e4e99799c91a8c39f2bbe156e6795cdef6ee5 (commit)
from 8cebaca19b08f8faa5eaebfdb2d87c466f274db8 (commit)
- Log -----------------------------------------------------------------
commit 396e4e99799c91a8c39f2bbe156e6795cdef6ee5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Wed Jun 15 20:06:26 2011 +0530
bug #3315741 [display] Inline query edit broken
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 ++-
js/functions.js | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 2d2d054..5e40b2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-phpMyAdmin - ChangeLog
+phpMyAdmin - ChangeLog
======================
3.4.3.0 (not yet released)
@@ -10,6 +10,7 @@
- bug #3313210 [interface] Columns class sometimes changed for nothing
- patch #3313326 [interface] Some tooltips do not disappear
- bug #3315720 [search] Fix search in non unicode tables
+- bug #3315741 [display] Inline query edit broken
3.4.2.0 (2011-06-07)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
diff --git a/js/functions.js b/js/functions.js
index cfbb25f..35ec292 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1116,7 +1116,7 @@ function changeMIMEType(db, table, reference, mime_type)
* Jquery Coding for inline editing SQL_QUERY
*/
$(document).ready(function(){
- $(".inline_edit_sql").click( function(){
+ $(".inline_edit_sql").live('click', function(){
var db = $(this).prev().find("input[name='db']").val();
var table = $(this).prev().find("input[name='table']").val();
var token = $(this).prev().find("input[name='token']").val();
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3761-gf05a988
by Michal Čihař 15 Jun '11
by Michal Čihař 15 Jun '11
15 Jun '11
The branch, master has been updated
via f05a988b86049fae9eadfa0c1f29cb020d332930 (commit)
via 1baf5c7e4c8e24ad049061b142a1889cc687eaec (commit)
from f79a619326dea60ffd8bab3a3b22791143c65df9 (commit)
- Log -----------------------------------------------------------------
commit f05a988b86049fae9eadfa0c1f29cb020d332930
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Jun 15 15:50:56 2011 +0200
Whitespace cleanup
commit 1baf5c7e4c8e24ad049061b142a1889cc687eaec
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Jun 15 15:50:49 2011 +0200
Send correct mime type (the reply is actually HTML)
-----------------------------------------------------------------------
Summary of changes:
server_status.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/server_status.php b/server_status.php
index 7db187b..2f06abd 100644
--- a/server_status.php
+++ b/server_status.php
@@ -27,7 +27,7 @@ if (isset($_REQUEST['ajax_request'])) {
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header_remove('Last-Modified');
// Send correct charset
- header('Content-Type: text/javascript; charset=UTF-8');
+ header('Content-Type: text/html; charset=UTF-8');
if (isset($_REQUEST["query_chart"])) {
exit(createQueryChart());
@@ -52,10 +52,10 @@ if (isset($_REQUEST['ajax_request'])) {
exit(json_encode($ret));
case 'traffic':
$traffic = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name="Bytes_received" OR Variable_name="Bytes_sent"', 0, 1);
-
+
$ret = Array('x'=>(microtime(true)*1000),'y_sent'=>$traffic['Bytes_sent'],'y_received'=>$traffic['Bytes_received']);
exit(json_encode($ret));
-
+
}
}
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3759-gf79a619
by Michal Čihař 15 Jun '11
by Michal Čihař 15 Jun '11
15 Jun '11
The branch, master has been updated
via f79a619326dea60ffd8bab3a3b22791143c65df9 (commit)
via 14cacc70acc6582244a7e08203999adb6497f445 (commit)
via efc9f6ddc40d8b4bc41aae1b66c14aa62040c736 (commit)
from a10e1e070f6aa8300cc98bdda71bcdaa518c44af (commit)
- Log -----------------------------------------------------------------
commit f79a619326dea60ffd8bab3a3b22791143c65df9
Merge: a10e1e070f6aa8300cc98bdda71bcdaa518c44af 14cacc70acc6582244a7e08203999adb6497f445
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Jun 15 15:46:11 2011 +0200
Merge remote-tracking branch 'tyron/master'
Conflicts:
server_status.php
commit 14cacc70acc6582244a7e08203999adb6497f445
Author: Tyron Madlener <tyronx(a)gmail.com>
Date: Wed Jun 15 14:37:08 2011 +0200
Send correct charset header with ajax responses
commit efc9f6ddc40d8b4bc41aae1b66c14aa62040c736
Author: Tyron Madlener <tyronx(a)gmail.com>
Date: Wed Jun 15 13:17:19 2011 +0200
Chart export now works with IE8
-----------------------------------------------------------------------
Summary of changes:
js/highcharts/exporting.js | 17 +++++++++++------
server_status.php | 12 +++++++-----
2 files changed, 18 insertions(+), 11 deletions(-)
diff --git a/js/highcharts/exporting.js b/js/highcharts/exporting.js
index 036c6ae..171ea50 100644
--- a/js/highcharts/exporting.js
+++ b/js/highcharts/exporting.js
@@ -308,12 +308,9 @@ extend(Chart.prototype, {
chart = this,
canvas=createElement('canvas');
- if (typeof FlashCanvas != "undefined") {
- FlashCanvas.initElement(canvas);
- }
-
$('body').append(canvas);
- $(canvas).hide();
+ $(canvas).css('position','absolute');
+ $(canvas).css('left','-10000px');
var submitData = function(chartData) {
// merge the options
@@ -352,11 +349,19 @@ extend(Chart.prototype, {
if(options && options.type=='image/svg+xml') {
submitData(chart.getSVG(chartOptions));
} else {
+ if (typeof FlashCanvas != "undefined") {
+ FlashCanvas.initElement(canvas);
+ }
+
// Generate data uri and submit once done
canvg(canvas, chart.getSVG(chartOptions),{
ignoreAnimation:true,
ignoreMouse:true,
- renderCallback:function() { submitData(canvas.toDataURL()); }
+ renderCallback:function() {
+ // IE8 fix: flashcanvas doesn't update the canvas immediately, thus requiring setTimeout.
+ // See also http://groups.google.com/group/flashcanvas/browse_thread/thread/e36ff7a03e1…
+ setTimeout(function() { submitData(canvas.toDataURL()); }, 100);
+ }
});
}
},
diff --git a/server_status.php b/server_status.php
index c56eb70..7db187b 100644
--- a/server_status.php
+++ b/server_status.php
@@ -21,11 +21,13 @@ require_once './libraries/common.inc.php';
* Ajax request
*/
-// Prevent ajax requests from being cached
if (isset($_REQUEST['ajax_request'])) {
- header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
- header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
+ // Prevent ajax requests from being cached
+ header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1
+ header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header_remove('Last-Modified');
+ // Send correct charset
+ header('Content-Type: text/javascript; charset=UTF-8');
if (isset($_REQUEST["query_chart"])) {
exit(createQueryChart());
@@ -50,10 +52,10 @@ if (isset($_REQUEST['ajax_request'])) {
exit(json_encode($ret));
case 'traffic':
$traffic = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name="Bytes_received" OR Variable_name="Bytes_sent"', 0, 1);
-
+
$ret = Array('x'=>(microtime(true)*1000),'y_sent'=>$traffic['Bytes_sent'],'y_received'=>$traffic['Bytes_received']);
exit(json_encode($ret));
-
+
}
}
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2-3756-ga10e1e0
by Michal Čihař 15 Jun '11
by Michal Čihař 15 Jun '11
15 Jun '11
The branch, master has been updated
via a10e1e070f6aa8300cc98bdda71bcdaa518c44af (commit)
via 4a50bbcef57598261ee4357bf95fbab04159cc8c (commit)
via 62da72ed8247c2dd82ab511e2e990546164c164e (commit)
via 940e473b01d5c5243edd7bd072fc2ba4e09533f8 (commit)
via 4dd9865a350158f0f2360c08e46e9a3d68bba03d (commit)
via 6094156eb5095870f2729ffae06c27fcdab59c80 (commit)
via 48627196e77a033b6404347fe0c6dae2f23c8f18 (commit)
via 864b846acf2aeb8057c594f62256e462df5ee7bd (commit)
via 63816c774eb982a8ba28e027f2b179345daacf20 (commit)
via d2dcb595d2e2e2cba0a132b7980ccc577f7d3081 (commit)
via 94ff7f9f9255f540f765ef50cc13b711b6732d44 (commit)
via d70cb42d130c9c04f39fc58402cbae4aee1a82c4 (commit)
via 4eeecc9038007e8de221316af4e36f216ae4980c (commit)
via 2a14a1ee04381f1b0dba7d3c1d61c84389853c14 (commit)
via a62f0e4f408f741dcf70f0bd94d5127021b65e3e (commit)
via 23cffdb0de983cbffab884c5789e8dd3ed0f7b67 (commit)
via 1f54a1ac561a1d163876d813c7ac72f8f10aba76 (commit)
via dbe5767e4789bcac683a954359983697b81ba1cb (commit)
via 167defd182e6fea612d8bb6f9929428dee46e6b2 (commit)
via ccfc5f1382ee6b9d3c4c74e1d3b6937ea8ce3b75 (commit)
via 76ce500031db0071ff7b84cd2873fa3bc77799e7 (commit)
via a3e98a2f6f7055f54b7a6afa19eab31c82e9390d (commit)
via 860c45a24e8b1bda6f09ca8ca640f856c3de8856 (commit)
via 3b9df48571afa30378ee96d97ad0ee33fe041979 (commit)
via 8e9a4603fe6e2ffe39d811f9e7221640485897cb (commit)
via 1fda7c8102625a4109396c9c1193e70e82a9868e (commit)
via 1c6f84d6e501554409a78ad228f354e997e64e57 (commit)
via e9f5dc3e9bce501ab505c25b0754884ff41ea02f (commit)
via f57d15ba052581568d670a0821570711e27769d1 (commit)
via e484233d32cec3e406824ce3e83fc0a6b13424d9 (commit)
via 143ebaf7508aff437a89eff7df96f9ac60a0f022 (commit)
via 39ccdb6abbe3792571f285dc4e2a9d12bc861236 (commit)
via 8244771b50a3765fd6ec876a8fc1d3c71fcef9da (commit)
via 3240586b67a3e6488385ef6b85d34e6272ac4196 (commit)
via f36f624adb8a64902744688b79eeb491d76eac3f (commit)
via d758e77c4e9f6baee1cfd1c8745c63317bbeeba1 (commit)
via 66e72289b36e570b790af443d3417413204e7ba7 (commit)
via 0bef847f0812a3b91d1b63a9d6f1a30fb1a08c07 (commit)
via 168e968f2d818cdf9d97377d4275f825472edc3e (commit)
via 2049107eafdbcb2e6cb9965fea5fa9dbeae245d5 (commit)
via b65f1e18041abdf4fe0a3b6ac7c81e307714a331 (commit)
via 857bd9d01c4250bc5b6bcb7057b15e069f1ca8c5 (commit)
via e2f1882570ea7db63047d028687cd345b1832a13 (commit)
via 87a9309216b08277669bf2018cb6ed0f8e6de37c (commit)
via 47c19f0527ba56e8771812c2c655044e1b807d2f (commit)
via 004d4d267524938b34cbbf18bb7575614192cb37 (commit)
via f1821224cd96a5144deba0000d8c2a7e4fa8698b (commit)
via 58a6b6e3d55de1d32e143f75c145799a48f5556f (commit)
via 1a9d991ce3d3986bbfdaaf16be71a6824e02d290 (commit)
via 61acf395baf9fcfa5e4b9658b331afd6affb39a6 (commit)
via 28f12211ba430be9d6006992146f0008d7ef07f8 (commit)
via e7274c125071c96e30ccfb56358d717e6d41ddc9 (commit)
via 91c3db2fcfdc2f39e05b28e162900846aac6a5ed (commit)
via 0f9fdc8a10f0dd458106940c3b5948f84ab372c6 (commit)
via debfc3324882a8b1971d8112af8e028349791290 (commit)
via 0674e697da641f44101422c66bf450632139ad12 (commit)
via 2b64caa9dca24f3ab0f808dd87bbabf5f7273114 (commit)
via bbab90434370a8ff39f0b65e14b00757901cb932 (commit)
via bf9eaff2ca308a9db1ca17a543bc69943d66c0ac (commit)
via 9de722c13ee8b42c283fc3d12ab7732093605579 (commit)
via 997ac0c266b76f5943d533608f6260d2081b9d27 (commit)
via 1266d383dc6e6aee7ac397d387dcf7ac8d60b5e9 (commit)
via 977e66cec75e06f5abcae53ab15fe21b40e1f3e8 (commit)
via 69e2934ca492ca10c6fbfe8411abf4bc17518203 (commit)
via 49531058fc03d5cf68ebdbd9e28d3f7ea791e6c0 (commit)
via cf6dbed6a5c620a10ed544fcee50265a93651560 (commit)
via ea9f4ac7f037ad68db5b0cef263890aacfca9c4e (commit)
via b3e1a0e7411b92a16cf9e0cde5c3124b8373a406 (commit)
via cb8e1980e03e5ece0efffa697ad7bbe926e95eeb (commit)
via 44cac7029451ffd3ea5286b0f20dccd829264a59 (commit)
via fc1ee815ba94f8b048fdc566525c954fd314cd11 (commit)
via 0f1efeea0793b5a4c5ef9a739803ed31ed6ec033 (commit)
via 85ed8e314199da236c97ad4f4604ffe5606c5224 (commit)
via 51f863dc6c4209589b4ec9a991212be0bbea3c28 (commit)
via ec5118df9467e13429f2daaf0a7ebfa1dd10d8be (commit)
via 65a8bacd038b49ef5c9df2cb2da79f5bd06a5694 (commit)
via 0168d4ebd41c784cfe96986f94e19dd45e7e42f0 (commit)
via 1516608ce32dc005b9fcf821a7c13a17c5559795 (commit)
via eea00bf395b76873b187cb70ecd2da570f9c6d83 (commit)
via cc16828cc11b0430834d5ebade5ac9452b9d75cc (commit)
via f2998c6bb2709b0dd44f718f743a3e1e3b823011 (commit)
via 8a210f89d1cd8ddf268a827968f7a5a2e253a627 (commit)
via c80a5d245f48a6435c0ef5dbc7a0ae2427f3bc04 (commit)
via 6089141ee73a498ac4b27e527c370b4fef0a2cc2 (commit)
via b3c53f4bed61d55988802c2a2eef6161ab23bcf8 (commit)
via ea985e424cf3c91710a455791f2f34359b0b73bd (commit)
from f9550ae3e2808ecc8d82b7528b7a9a3ee92249db (commit)
- Log -----------------------------------------------------------------
commit a10e1e070f6aa8300cc98bdda71bcdaa518c44af
Merge: f9550ae3e2808ecc8d82b7528b7a9a3ee92249db 4a50bbcef57598261ee4357bf95fbab04159cc8c
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Jun 15 15:44:09 2011 +0200
Merge remote-tracking branch 'pootle/master'
Conflicts:
po/fr.po
po/ja.po
po/pt_BR.po
commit 4a50bbcef57598261ee4357bf95fbab04159cc8c
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:46:22 2011 +0200
Translation update done using Pootle.
commit 62da72ed8247c2dd82ab511e2e990546164c164e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:46:05 2011 +0200
Translation update done using Pootle.
commit 940e473b01d5c5243edd7bd072fc2ba4e09533f8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:41:49 2011 +0200
Translation update done using Pootle.
commit 4dd9865a350158f0f2360c08e46e9a3d68bba03d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:41:12 2011 +0200
Translation update done using Pootle.
commit 6094156eb5095870f2729ffae06c27fcdab59c80
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:39:41 2011 +0200
Translation update done using Pootle.
commit 48627196e77a033b6404347fe0c6dae2f23c8f18
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:39:01 2011 +0200
Translation update done using Pootle.
commit 864b846acf2aeb8057c594f62256e462df5ee7bd
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:37:37 2011 +0200
Translation update done using Pootle.
commit 63816c774eb982a8ba28e027f2b179345daacf20
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:36:02 2011 +0200
Translation update done using Pootle.
commit d2dcb595d2e2e2cba0a132b7980ccc577f7d3081
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:35:28 2011 +0200
Translation update done using Pootle.
commit 94ff7f9f9255f540f765ef50cc13b711b6732d44
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:34:22 2011 +0200
Translation update done using Pootle.
commit d70cb42d130c9c04f39fc58402cbae4aee1a82c4
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:33:49 2011 +0200
Translation update done using Pootle.
commit 4eeecc9038007e8de221316af4e36f216ae4980c
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:33:42 2011 +0200
Translation update done using Pootle.
commit 2a14a1ee04381f1b0dba7d3c1d61c84389853c14
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:33:31 2011 +0200
Translation update done using Pootle.
commit a62f0e4f408f741dcf70f0bd94d5127021b65e3e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:32:59 2011 +0200
Translation update done using Pootle.
commit 23cffdb0de983cbffab884c5789e8dd3ed0f7b67
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:32:32 2011 +0200
Translation update done using Pootle.
commit 1f54a1ac561a1d163876d813c7ac72f8f10aba76
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:32:21 2011 +0200
Translation update done using Pootle.
commit dbe5767e4789bcac683a954359983697b81ba1cb
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:32:16 2011 +0200
Translation update done using Pootle.
commit 167defd182e6fea612d8bb6f9929428dee46e6b2
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:32:10 2011 +0200
Translation update done using Pootle.
commit ccfc5f1382ee6b9d3c4c74e1d3b6937ea8ce3b75
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:32:04 2011 +0200
Translation update done using Pootle.
commit 76ce500031db0071ff7b84cd2873fa3bc77799e7
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:31:38 2011 +0200
Translation update done using Pootle.
commit a3e98a2f6f7055f54b7a6afa19eab31c82e9390d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:31:27 2011 +0200
Translation update done using Pootle.
commit 860c45a24e8b1bda6f09ca8ca640f856c3de8856
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:30:46 2011 +0200
Translation update done using Pootle.
commit 3b9df48571afa30378ee96d97ad0ee33fe041979
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:30:13 2011 +0200
Translation update done using Pootle.
commit 8e9a4603fe6e2ffe39d811f9e7221640485897cb
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:29:58 2011 +0200
Translation update done using Pootle.
commit 1fda7c8102625a4109396c9c1193e70e82a9868e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:29:45 2011 +0200
Translation update done using Pootle.
commit 1c6f84d6e501554409a78ad228f354e997e64e57
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:29:36 2011 +0200
Translation update done using Pootle.
commit e9f5dc3e9bce501ab505c25b0754884ff41ea02f
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:29:25 2011 +0200
Translation update done using Pootle.
commit f57d15ba052581568d670a0821570711e27769d1
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:29:16 2011 +0200
Translation update done using Pootle.
commit e484233d32cec3e406824ce3e83fc0a6b13424d9
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:28:28 2011 +0200
Translation update done using Pootle.
commit 143ebaf7508aff437a89eff7df96f9ac60a0f022
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:26:57 2011 +0200
Translation update done using Pootle.
commit 39ccdb6abbe3792571f285dc4e2a9d12bc861236
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jun 15 14:25:59 2011 +0200
Translation update done using Pootle.
commit 8244771b50a3765fd6ec876a8fc1d3c71fcef9da
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:55:59 2011 +0200
Translation update done using Pootle.
commit 3240586b67a3e6488385ef6b85d34e6272ac4196
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:54:51 2011 +0200
Translation update done using Pootle.
commit f36f624adb8a64902744688b79eeb491d76eac3f
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:54:00 2011 +0200
Translation update done using Pootle.
commit d758e77c4e9f6baee1cfd1c8745c63317bbeeba1
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:53:28 2011 +0200
Translation update done using Pootle.
commit 66e72289b36e570b790af443d3417413204e7ba7
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:51:45 2011 +0200
Translation update done using Pootle.
commit 0bef847f0812a3b91d1b63a9d6f1a30fb1a08c07
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:49:57 2011 +0200
Translation update done using Pootle.
commit 168e968f2d818cdf9d97377d4275f825472edc3e
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:49:18 2011 +0200
Translation update done using Pootle.
commit 2049107eafdbcb2e6cb9965fea5fa9dbeae245d5
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:47:52 2011 +0200
Translation update done using Pootle.
commit b65f1e18041abdf4fe0a3b6ac7c81e307714a331
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:46:20 2011 +0200
Translation update done using Pootle.
commit 857bd9d01c4250bc5b6bcb7057b15e069f1ca8c5
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:45:25 2011 +0200
Translation update done using Pootle.
commit e2f1882570ea7db63047d028687cd345b1832a13
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:44:29 2011 +0200
Translation update done using Pootle.
commit 87a9309216b08277669bf2018cb6ed0f8e6de37c
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:43:35 2011 +0200
Translation update done using Pootle.
commit 47c19f0527ba56e8771812c2c655044e1b807d2f
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:41:46 2011 +0200
Translation update done using Pootle.
commit 004d4d267524938b34cbbf18bb7575614192cb37
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:37:44 2011 +0200
Translation update done using Pootle.
commit f1821224cd96a5144deba0000d8c2a7e4fa8698b
Author: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>
Date: Wed Jun 15 13:36:07 2011 +0200
Translation update done using Pootle.
commit 58a6b6e3d55de1d32e143f75c145799a48f5556f
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:47:18 2011 +0200
Translation update done using Pootle.
commit 1a9d991ce3d3986bbfdaaf16be71a6824e02d290
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:44:21 2011 +0200
Translation update done using Pootle.
commit 61acf395baf9fcfa5e4b9658b331afd6affb39a6
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:44:13 2011 +0200
Translation update done using Pootle.
commit 28f12211ba430be9d6006992146f0008d7ef07f8
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:41:09 2011 +0200
Translation update done using Pootle.
commit e7274c125071c96e30ccfb56358d717e6d41ddc9
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:40:59 2011 +0200
Translation update done using Pootle.
commit 91c3db2fcfdc2f39e05b28e162900846aac6a5ed
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:40:42 2011 +0200
Translation update done using Pootle.
commit 0f9fdc8a10f0dd458106940c3b5948f84ab372c6
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:34:57 2011 +0200
Translation update done using Pootle.
commit debfc3324882a8b1971d8112af8e028349791290
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:34:26 2011 +0200
Translation update done using Pootle.
commit 0674e697da641f44101422c66bf450632139ad12
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:33:46 2011 +0200
Translation update done using Pootle.
commit 2b64caa9dca24f3ab0f808dd87bbabf5f7273114
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:27:43 2011 +0200
Translation update done using Pootle.
commit bbab90434370a8ff39f0b65e14b00757901cb932
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:25:41 2011 +0200
Translation update done using Pootle.
commit bf9eaff2ca308a9db1ca17a543bc69943d66c0ac
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:22:41 2011 +0200
Translation update done using Pootle.
commit 9de722c13ee8b42c283fc3d12ab7732093605579
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:20:29 2011 +0200
Translation update done using Pootle.
commit 997ac0c266b76f5943d533608f6260d2081b9d27
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:17:44 2011 +0200
Translation update done using Pootle.
commit 1266d383dc6e6aee7ac397d387dcf7ac8d60b5e9
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:16:15 2011 +0200
Translation update done using Pootle.
commit 977e66cec75e06f5abcae53ab15fe21b40e1f3e8
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:13:40 2011 +0200
Translation update done using Pootle.
commit 69e2934ca492ca10c6fbfe8411abf4bc17518203
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:12:37 2011 +0200
Translation update done using Pootle.
commit 49531058fc03d5cf68ebdbd9e28d3f7ea791e6c0
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:12:30 2011 +0200
Translation update done using Pootle.
commit cf6dbed6a5c620a10ed544fcee50265a93651560
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:12:24 2011 +0200
Translation update done using Pootle.
commit ea9f4ac7f037ad68db5b0cef263890aacfca9c4e
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:11:59 2011 +0200
Translation update done using Pootle.
commit b3e1a0e7411b92a16cf9e0cde5c3124b8373a406
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:11:42 2011 +0200
Translation update done using Pootle.
commit cb8e1980e03e5ece0efffa697ad7bbe926e95eeb
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:09:40 2011 +0200
Translation update done using Pootle.
commit 44cac7029451ffd3ea5286b0f20dccd829264a59
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:03:14 2011 +0200
Translation update done using Pootle.
commit fc1ee815ba94f8b048fdc566525c954fd314cd11
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:03:05 2011 +0200
Translation update done using Pootle.
commit 0f1efeea0793b5a4c5ef9a739803ed31ed6ec033
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:02:54 2011 +0200
Translation update done using Pootle.
commit 85ed8e314199da236c97ad4f4604ffe5606c5224
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:01:58 2011 +0200
Translation update done using Pootle.
commit 51f863dc6c4209589b4ec9a991212be0bbea3c28
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:01:25 2011 +0200
Translation update done using Pootle.
commit ec5118df9467e13429f2daaf0a7ebfa1dd10d8be
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:01:04 2011 +0200
Translation update done using Pootle.
commit 65a8bacd038b49ef5c9df2cb2da79f5bd06a5694
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:00:48 2011 +0200
Translation update done using Pootle.
commit 0168d4ebd41c784cfe96986f94e19dd45e7e42f0
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:00:33 2011 +0200
Translation update done using Pootle.
commit 1516608ce32dc005b9fcf821a7c13a17c5559795
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 12:00:20 2011 +0200
Translation update done using Pootle.
commit eea00bf395b76873b187cb70ecd2da570f9c6d83
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:59:57 2011 +0200
Translation update done using Pootle.
commit cc16828cc11b0430834d5ebade5ac9452b9d75cc
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:59:40 2011 +0200
Translation update done using Pootle.
commit f2998c6bb2709b0dd44f718f743a3e1e3b823011
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:59:14 2011 +0200
Translation update done using Pootle.
commit 8a210f89d1cd8ddf268a827968f7a5a2e253a627
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:58:49 2011 +0200
Translation update done using Pootle.
commit c80a5d245f48a6435c0ef5dbc7a0ae2427f3bc04
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:58:00 2011 +0200
Translation update done using Pootle.
commit 6089141ee73a498ac4b27e527c370b4fef0a2cc2
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:57:11 2011 +0200
Translation update done using Pootle.
commit b3c53f4bed61d55988802c2a2eef6161ab23bcf8
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:56:36 2011 +0200
Translation update done using Pootle.
commit ea985e424cf3c91710a455791f2f34359b0b73bd
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Wed Jun 15 11:56:13 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/fr.po | 74 +++++++++++++++++-----------------------
po/ja.po | 107 ++++++++++++++++++++++------------------------------------
po/pt_BR.po | 33 ++++++++----------
3 files changed, 87 insertions(+), 127 deletions(-)
diff --git a/po/fr.po b/po/fr.po
index 96b6d0a..38c6b0e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-06-09 22:13+0200\n"
+"PO-Revision-Date: 2011-06-15 14:46+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr "Tout afficher"
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
#: libraries/schema/User_Schema.class.php:360
msgid "Page number:"
-msgstr "Page n°: "
+msgstr "Page n° : "
#: browse_foreigners.php:133
msgid ""
@@ -36,7 +36,7 @@ msgid ""
msgstr ""
"La fenêtre demandée depuis votre navigateur ne peut être rafraîchie. Il est "
"possible que vous ayez fermé la fenêtre source , ou encore que votre "
-"navigateur bloque les mises à jour inter-fenêtres pour des raisons de "
+"navigateur bloque les mises à jour entre fenêtres pour des raisons de "
"sécurité."
#: browse_foreigners.php:151 libraries/common.lib.php:2763
@@ -1018,10 +1018,9 @@ msgstr "Ce n'est pas un nombre !"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
#| msgid "Log file count"
msgid "Total count"
-msgstr "Nombre de fichiers journal"
+msgstr "Nombre total"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1058,24 +1057,22 @@ msgid "Close"
msgstr "Fermer"
#: js/messages.php:64 server_status.php:397
-#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
-msgstr "Choix du serveur"
+msgstr "Graphique du trafic en temps réel"
#: js/messages.php:65 server_status.php:400
msgid "Live conn./process chart"
-msgstr ""
+msgstr "Graphique des connexions et processus en temps réel"
#: js/messages.php:66 server_status.php:429
-#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
-msgstr "Afficher le graphique des requêtes"
+msgstr "Graphique des requêtes en temps réel"
#: js/messages.php:68
msgid "Static data"
-msgstr ""
+msgstr "Données statiques"
#. l10n: Total number of queries
#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
@@ -1088,12 +1085,12 @@ msgstr "Total"
#. l10n: Other, small valued, queries
#: js/messages.php:72 server_status.php:592
msgid "Other"
-msgstr ""
+msgstr "Autres"
#. l10n: Thousands separator
#: js/messages.php:74 libraries/common.lib.php:1375
msgid ","
-msgstr " "
+msgstr " "
#. l10n: Decimal separator
#: js/messages.php:76 libraries/common.lib.php:1377
@@ -1108,7 +1105,7 @@ msgstr "Annuler"
#: js/messages.php:83
msgid "Loading"
-msgstr "Chargement"
+msgstr "Chargement en cours"
#: js/messages.php:84
msgid "Processing Request"
@@ -8349,71 +8346,62 @@ msgid "Runtime Information"
msgstr "Informations sur le serveur"
#: server_status.php:371
-#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
-msgstr "Choix du serveur"
+msgstr "Trafic du serveur"
#: server_status.php:372
msgid "Query statistics"
msgstr "Statistiques sur les requêtes"
#: server_status.php:373
-#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
-msgstr "Montrer l'état de l'esclave"
+msgstr "Toutes les variables d'état"
#: server_status.php:383 server_status.php:416
-#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
-msgstr "Actualiser"
+msgstr "Taux de rafraîchissement"
#: server_status.php:384 server_status.php:417
-#, fuzzy
#| msgid "Second"
msgid "second"
-msgstr "Seconde"
+msgstr "seconde"
#: server_status.php:385 server_status.php:386 server_status.php:387
#: server_status.php:388 server_status.php:389 server_status.php:418
#: server_status.php:419 server_status.php:420 server_status.php:421
#: server_status.php:422
-#, fuzzy
#| msgid "Second"
msgid "seconds"
-msgstr "Seconde"
+msgstr "secondes"
#: server_status.php:390 server_status.php:391 server_status.php:392
#: server_status.php:393 server_status.php:423 server_status.php:424
#: server_status.php:425 server_status.php:426
-#, fuzzy
#| msgid "Minute"
msgid "minutes"
-msgstr "Minute"
+msgstr "minutes"
#: server_status.php:446
-#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
-msgstr "Conserver le mot de passe"
+msgstr "Contenant le mot :"
#: server_status.php:451
-#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
-msgstr "Montrer les tables ouvertes"
+msgstr "Afficher uniquement les valeurs d'alerte"
#: server_status.php:455
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrer par catégorie..."
#: server_status.php:468
-#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
-msgstr "Liens connexes"
+msgstr "Liens connexes:"
#: server_status.php:513 server_status.php:545 server_status.php:666
#: server_status.php:711
@@ -8435,12 +8423,12 @@ msgstr "Type de requête"
#. l10n: # = Amount of queries
#: server_status.php:543
msgid "#"
-msgstr ""
+msgstr "#"
#: server_status.php:615
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Trafic réseau depuis le démarrage : %s"
#: server_status.php:623
#, php-format
@@ -8525,10 +8513,9 @@ msgid "ID"
msgstr "ID"
#: server_status.php:846
-#, fuzzy
#| msgid "Whether to enable SSL for connection to MySQL server."
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Pour activer ou pas une connexion SSL vers le serveur MySQL."
+msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses."
#: server_status.php:847
msgid ""
@@ -8549,6 +8536,7 @@ msgstr ""
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
+"Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL."
#: server_status.php:850
msgid ""
@@ -8976,6 +8964,7 @@ msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"Le nombre maximum de connexions simultanées depuis le démarrage du serveur."
#: server_status.php:921
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
@@ -9007,6 +8996,9 @@ msgid ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Le nombre de blocs mémoire libres dans la cache de requêtes. Un nombre élevé "
+"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par "
+"la commande FLUSH QUERY CACHE."
#: server_status.php:927
msgid "The amount of free memory for query cache."
@@ -9750,10 +9742,9 @@ msgid "Line"
msgstr "Ligne"
#: tbl_chart.php:88
-#, fuzzy
#| msgid "Inline"
msgid "Spline"
-msgstr "En ligne"
+msgstr "Spline"
#: tbl_chart.php:89
msgid "Pie"
@@ -9764,14 +9755,13 @@ msgid "Stacked"
msgstr "En piles"
#: tbl_chart.php:94
-#, fuzzy
#| msgid "Report title:"
msgid "Chart title"
-msgstr "Titre du rapport :"
+msgstr "Titre du graphique"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Axe des X"
#: tbl_chart.php:113
#, fuzzy
diff --git a/po/ja.po b/po/ja.po
index 16b009b..f90d0f4 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-06-08 12:19+0200\n"
+"PO-Revision-Date: 2011-06-15 12:47+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -1047,10 +1047,9 @@ msgid "Close"
msgstr "閉じる"
#: js/messages.php:64 server_status.php:397
-#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
-msgstr "サーバの選択"
+msgstr "リアルタイムでのトラフィックグラフ"
#: js/messages.php:65 server_status.php:400
msgid "Live conn./process chart"
@@ -3053,9 +3052,7 @@ msgstr "変更追跡機能"
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
-msgstr ""
-"データベースで行われた変更の追跡機能です。これには、 phpMyAdmin の設定保存場"
-"所が必要です。"
+msgstr "データベースで行われた変更の追跡機能です。これには、phpMyAdmin の設定保存場所が必要です。"
#: libraries/config/messages.inc.php:208
msgid "Customize export options"
@@ -3336,7 +3333,7 @@ msgstr "ロゴリンクのターゲット"
#: libraries/config/messages.inc.php:286
msgid "Highlight server under the mouse cursor"
-msgstr "マウスカーソルの下のサーバー名を強調表示します。"
+msgstr "マウスカーソルの下のサーバ名を強調表示します。"
#: libraries/config/messages.inc.php:287
msgid "Enable highlighting"
@@ -3526,7 +3523,7 @@ msgstr "HTTP 転送の高速化のために GZip の出力バッファリング
#: libraries/config/messages.inc.php:326
msgid "GZip output buffering"
-msgstr "GZipの出力バッファリング"
+msgstr "GZip の出力バッファリング"
#: libraries/config/messages.inc.php:327
msgid ""
@@ -4086,13 +4083,11 @@ msgstr "バージョンの自動作成"
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_config[/kbd]"
-msgstr ""
-"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/"
-"kbd] としておくのがいいでしょう。"
+msgstr "データベースにユーザ環境設定を保存しない場合は空欄にします。[kbd]pma_config[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:441
msgid "User preferences storage table"
-msgstr "ユーザ設定保存テーブル"
+msgstr "ユーザ環境設定保存テーブル"
#: libraries/config/messages.inc.php:443
msgid "User for config auth"
@@ -4945,7 +4940,7 @@ msgstr "水平"
#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
-msgstr "水平 (ヘッダも回転)"
+msgstr "水平 (縦ヘッダ)"
#: libraries/display_tbl.lib.php:438
msgid "vertical"
@@ -5056,7 +5051,7 @@ msgstr "グラフで表示する"
#: libraries/display_tbl.lib.php:2473
msgid "Create view"
-msgstr "ビューを作成"
+msgstr "ビューを作成する"
#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
@@ -6218,7 +6213,7 @@ msgstr "PDF の作成"
#: libraries/relation.lib.php:121
msgid "Displaying Column Comments"
-msgstr "列コメント表示機能"
+msgstr "カラムコメント表示機能"
#: libraries/relation.lib.php:126
msgid ""
@@ -6243,7 +6238,7 @@ msgstr "永続的な『テーブルのユーザ設定』"
#: libraries/relation.lib.php:155
msgid "User preferences"
-msgstr "ユーザ設定"
+msgstr "ユーザ環境設定"
#: libraries/relation.lib.php:159
msgid "Quick steps to setup advanced features:"
@@ -6287,8 +6282,8 @@ msgid ""
"Make sure, you have unique server-id in your configuration file (my.cnf). If "
"not, please add the following line into [mysqld] section:"
msgstr ""
-"念のため、設定ファイル (my.cnf) 内でサーバーIDがユニークであるか確認してくだ"
-"さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。"
+"念のため、設定ファイル (my.cnf) 内でサーバ ID がユニークであるか確認してください。もしそうでないならば、[mysqld] "
+"セクションに以下の行を追加してください。"
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
@@ -8029,12 +8024,9 @@ msgid ""
"ignore all databases by default and allow only certain databases to be "
"replicated. Please select the mode:"
msgstr ""
-"このサーバは、レプリケーションプロセスのマスタサーバーとして構成されていませ"
-"ん。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全"
-"てのデータベースをレプリケーションするモード(データベースの大部分をレプリ"
-"ケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベース"
-"を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ"
-"りいずれかのモードを選択してください。"
+"このサーバは、レプリケーションプロセスのマスタサーバとして構成されていません。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全て"
+"のデータベースをレプリケーションするモード(データベースの大部分をレプリケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベースを無"
+"視して、特定のデータベースだけのレプリケーションを許可するモード。以下よりいずれかのモードを選択してください。"
#: server_replication.php:219
msgid "Replicate all databases; Ignore:"
@@ -8062,9 +8054,8 @@ msgid ""
"should see a message informing you, that this server <b>is</b> configured as "
"master"
msgstr ""
-"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その"
-"後、このサーバー<b>が</b>マスタとして設定されていることを知らせるメッセージが"
-"表示されます。"
+"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その後、このサーバ<b>が</b>マスタとして設定されていることを知らせるメ"
+"ッセージが表示されます。"
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
@@ -8224,29 +8215,25 @@ msgid "Runtime Information"
msgstr "ランタイム情報"
#: server_status.php:371
-#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
-msgstr "サーバの選択"
+msgstr "サーバのトラフィック"
#: server_status.php:372
msgid "Query statistics"
msgstr "クエリの統計"
#: server_status.php:373
-#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
-msgstr "スレーブのステータステーブルを閲覧する"
+msgstr "全ての状態変数"
#: server_status.php:383 server_status.php:416
-#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
-msgstr "再描画"
+msgstr "再描画間隔"
#: server_status.php:384 server_status.php:417
-#, fuzzy
#| msgid "Second"
msgid "second"
msgstr "秒"
@@ -8255,7 +8242,6 @@ msgstr "秒"
#: server_status.php:388 server_status.php:389 server_status.php:418
#: server_status.php:419 server_status.php:420 server_status.php:421
#: server_status.php:422
-#, fuzzy
#| msgid "Second"
msgid "seconds"
msgstr "秒"
@@ -8263,26 +8249,23 @@ msgstr "秒"
#: server_status.php:390 server_status.php:391 server_status.php:392
#: server_status.php:393 server_status.php:423 server_status.php:424
#: server_status.php:425 server_status.php:426
-#, fuzzy
#| msgid "Minute"
msgid "minutes"
msgstr "分"
#: server_status.php:446
-#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
-msgstr "パスワードは変更しない"
+msgstr "含まれている文字:"
#: server_status.php:451
-#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
-msgstr "開いているテーブルを表示する"
+msgstr "警告値のみ表示する"
#: server_status.php:455
msgid "Filter by category..."
-msgstr ""
+msgstr "種別によるフィルタ..."
#: server_status.php:468
#, fuzzy
@@ -8315,7 +8298,7 @@ msgstr ""
#: server_status.php:615
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "起動してからのネットワークトラフィック:%s"
#: server_status.php:623
#, php-format
@@ -8347,8 +8330,7 @@ msgid ""
"For further information about replication status on the server, please visit "
"the <a href=#replication>replication section</a>."
msgstr ""
-"サーバー上のレプリケーションステータスの詳細については、<a href="
-"\"#replication\">レプリケーションの節</a>を参照してください。"
+"サーバ上のレプリケーションステータスの詳細については、<a href=\"#replication\">レプリケーションの節</a>を参照してください。"
#: server_status.php:649
msgid "Replication status"
@@ -8399,10 +8381,9 @@ msgid "ID"
msgstr "ID"
#: server_status.php:846
-#, fuzzy
#| msgid "Whether to enable SSL for connection to MySQL server."
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "MySQL サーバに接続するのに SSL を有効にするかどうか。"
+msgstr "MySQL サーバへの接続を試みて失敗した回数。"
#: server_status.php:847
msgid ""
@@ -8420,7 +8401,7 @@ msgstr "一時バイナリログキャッシュを使用したトランザクシ
#: server_status.php:849
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。"
#: server_status.php:850
msgid ""
@@ -8832,7 +8813,7 @@ msgstr ""
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-msgstr ""
+msgstr "サーバが起動してからの同時接続の最大数。"
#: server_status.php:921
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
@@ -8864,6 +8845,8 @@ msgid ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっていることを示しています。FLUSH QUERY CACHE "
+"文を発行することによって解決できるかもしれません。"
#: server_status.php:927
msgid "The amount of free memory for query cache."
@@ -9188,9 +9171,7 @@ msgstr ""
msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
-msgstr ""
-"サーバーがHTTPS要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]"
-"をたどり安全な接続を使用するようにしてください。"
+msgstr "サーバが HTTPS 要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]をたどり安全な接続を使用するようにしてください。"
#: setup/frames/index.inc.php:64
msgid "Insecure connection"
@@ -9368,8 +9349,7 @@ msgstr ""
#: setup/lib/index.lib.php:256
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
-msgstr ""
-"Webサーバでサポートしている場合、この%sオプション%sを有効にするべきです。"
+msgstr "ウェブサーバでサポートしている場合、この%sオプション%sを有効にするべきです。"
#: setup/lib/index.lib.php:258
#, php-format
@@ -9601,14 +9581,13 @@ msgid "Stacked"
msgstr "積み上げ形式"
#: tbl_chart.php:94
-#, fuzzy
#| msgid "Report title:"
msgid "Chart title"
-msgstr "レポートのタイトル:"
+msgstr "グラフの題名"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "横軸:"
#: tbl_chart.php:113
#, fuzzy
@@ -9623,28 +9602,24 @@ msgid "The remaining columns"
msgstr "textarea の 1 行の文字数"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "横軸のラベル"
+msgstr "横軸のラベル:"
#: tbl_chart.php:128
-#, fuzzy
#| msgid "Value"
msgid "X Values"
-msgstr "値"
+msgstr "横軸の値"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "縦軸のラベル"
+msgstr "縦軸のラベル:"
#: tbl_chart.php:129
-#, fuzzy
#| msgid "Value"
msgid "Y Values"
-msgstr "値"
+msgstr "縦軸の値"
#: tbl_create.php:56
#, php-format
@@ -9698,7 +9673,7 @@ msgstr ""
#: tbl_indexes.php:249
#, php-format
msgid "Add to index %s column(s)"
-msgstr "インデックスに %s の列を追加しました"
+msgstr "インデックスに %s 個のカラムを追加する"
#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
@@ -9736,7 +9711,7 @@ msgstr "(1 回)"
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
-msgstr "テーブルの移動先(database<b>.</b>table):"
+msgstr "テーブルを (データベース)<b>.</b>(テーブル) へ移動する:"
#: tbl_operations.php:351
msgid "Table options"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index b5916dd..72eb80d 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-15 08:36-0400\n"
-"PO-Revision-Date: 2011-04-14 17:44+0200\n"
-"Last-Translator: <vitorpc.18(a)gmail.com>\n"
+"PO-Revision-Date: 2011-06-15 13:55+0200\n"
+"Last-Translator: Jose Ivan Bezerra Vilarouca Filho <joseivan(a)lavid.ufpb.br>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -489,7 +489,7 @@ msgstr "Usar tabelas"
#: db_qbe.php:662
#, php-format
msgid "SQL query on database <b>%s</b>:"
-msgstr "Consulta no Banco de Dados <b>%s</b>:"
+msgstr "Consulta SQL ao Banco de Dados <b>%s</b>:"
#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
@@ -638,7 +638,7 @@ msgstr "Soma"
#: db_structure.php:455 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr "%s é o stored engine padrão neste servidor MySQL."
+msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
@@ -708,21 +708,18 @@ msgid "Analyze table"
msgstr "Analizar tabela"
#: db_structure.php:521
-#, fuzzy
msgid "Add prefix to table"
-msgstr "Sem bases"
+msgstr "Adicionar prefixo à tabela"
#: db_structure.php:523 libraries/mult_submits.inc.php:246
-#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
-msgstr "Substituir os dados da tabela pelos do arquivo"
+msgstr "Substituir prefixo da tabela"
#: db_structure.php:525 libraries/mult_submits.inc.php:246
-#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
-msgstr "Substituir os dados da tabela pelos do arquivo"
+msgstr "Copiar tabela com o prefixo"
#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
@@ -787,7 +784,7 @@ msgstr "Versões"
#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
-msgstr "Relatório de rastreamento"
+msgstr "Relatório de monitoramento"
#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
@@ -800,7 +797,7 @@ msgstr "Tabelas não monitoradas"
#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
#: tbl_structure.php:624
msgid "Track table"
-msgstr "Rastrear tabela"
+msgstr "Monitorar tabela"
#: db_tracking.php:229
msgid "Database Log"
@@ -971,16 +968,14 @@ msgid "You are about to DESTROY a complete database!"
msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
#: js/messages.php:32
-#, fuzzy
#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
-msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
+msgstr "Você está prestes à DESTRUIR completamente a tabela"
#: js/messages.php:33
-#, fuzzy
#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to TRUNCATE a complete table!"
-msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
+msgstr "Você está prestes à TRUNCAR completamente uma tabela!"
#: js/messages.php:34
msgid "Dropping Event"
@@ -988,7 +983,7 @@ msgstr "Remoção de eventos"
#: js/messages.php:35
msgid "Dropping Procedure"
-msgstr "Remoção de Procedures"
+msgstr "Remoção de procedimentos"
#: js/messages.php:37
msgid "Deleting tracking data"
@@ -1004,7 +999,7 @@ msgstr "Esta operação pode ser demorada. Deseja prosseguir?"
#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr "Você está prestes a desativar um repositório BLOB."
+msgstr "Você está prestes a DESATIVAR um repositório BLOB."
#: js/messages.php:43
#, php-format
@@ -10361,7 +10356,7 @@ msgstr "Você não tem direitos suficientes para estar aqui agora!"
#: user_password.php:110
msgid "The profile has been updated."
-msgstr "A configuração foi atualizada."
+msgstr "O perfíl foi atualizado."
#: view_create.php:141
msgid "VIEW name"
hooks/post-receive
--
phpMyAdmin
1
0