From 48a95cb47936f0bb06b9b7d1728045889af19889 Mon Sep 17 00:00:00 2001 From: Thilanka Kaushalya Date: Sun, 7 Aug 2011 16:19:14 +0530 Subject: [PATCH 001/188] Ajaxify table maintenance in table operations --- js/functions.js | 41 +++++++++++++++++++++++++++++++++++------ sql.php | 7 +++++++ tbl_operations.php | 2 +- 3 files changed, 43 insertions(+), 7 deletions(-) diff --git a/js/functions.js b/js/functions.js index bc94a89610..84181567ba 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1964,7 +1964,7 @@ $(document).ready(function() { **/ $("#alterTableOrderby.ajax").live('submit', function(event) { event.preventDefault(); - $form = $(this); + var $form = $(this); PMA_prepareForAjaxRequest($form); /*variables which stores the common attributes*/ @@ -1982,9 +1982,9 @@ $(document).ready(function() { $("#result_query .notice").remove(); $("#result_query").prepend((data.message)); } else { - $temp_div = $("
") + var $temp_div = $("
") $temp_div.html(data.error); - $error = $temp_div.find("code").addClass("error"); + var $error = $temp_div.find("code").addClass("error"); PMA_ajaxShowMessage($error); } }) // end $.post() @@ -1995,7 +1995,7 @@ $(document).ready(function() { **/ $("#copyTable.ajax input[name='submit_copy']").live('click', function(event) { event.preventDefault(); - $form = $("#copyTable"); + var $form = $("#copyTable"); if($form.find("input[name='switch_to_new']").attr('checked')) { $form.append(''); $form.removeClass('ajax'); @@ -2024,15 +2024,44 @@ $(document).ready(function() { window.parent.frame_navigation.location.reload(); } } else { - $temp_div = $("
") + var $temp_div = $("
"); $temp_div.html(data.error); - $error = $temp_div.find("code").addClass("error"); + var $error = $temp_div.find("code").addClass("error"); PMA_ajaxShowMessage($error); } }) // end $.post() } });//end of copyTable ajax submit + /** + *Ajax events for actions in the "Table maintenance" + **/ + $("#tbl_maintenance.ajax li").live('click', function(event) { + event.preventDefault(); + var $link = $(this); + var href = $link.find("a").first().attr("href"); + href = href.split('?'); + //variables which stores the common attributes + $.post(href[0], href[1]+"&ajax_request=true", function(data) { + if ($("#sqlqueryresults").length != 0) { + $("#sqlqueryresults").remove(); + } + if ($("#result_query").length != 0) { + $("#result_query").remove(); + } + if (data.success == true) { + PMA_ajaxShowMessage(data.message); + $("
").insertAfter("#topmenucontainer"); + $("#sqlqueryresults").html(data.sql_query); + } else { + var $temp_div = $("
") + $temp_div.html(data.error); + var $error = $temp_div.find("code").addClass("error"); + PMA_ajaxShowMessage($error); + } + }) // end $.post() + });//end of table maintanance ajax click + }, 'top.frame_content'); //end $(document).ready for 'Table operations' diff --git a/sql.php b/sql.php index 94a0b0d1e5..5af92914df 100644 --- a/sql.php +++ b/sql.php @@ -866,6 +866,13 @@ else { PMA_ajaxResponse(NULL, true, $extra_data); } + if (isset($_REQUEST['ajax_request']) && isset($_REQUEST['table_maintenance'])) { + echo $show_query; + $message = PMA_Message::success($message); + $extra_data['sql_query'] = PMA_showMessage($message, $GLOBALS['sql_query'], 'success'); + PMA_ajaxResponse($message,$message->isSuccess(),$extra_data); + } + // Displays the headers if (isset($show_query)) { unset($show_query); diff --git a/tbl_operations.php b/tbl_operations.php index 3e9bdebc4d..90e2fd4ca4 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -598,7 +598,7 @@ if (isset($possible_row_formats[$tbl_type])) {
-
From 75eed8e9aa2d2dfc80c0d23997a908e3eba4f3ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 15 Aug 2011 17:47:46 +0200 Subject: [PATCH 020/188] Escape html tags --- server_status.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server_status.php b/server_status.php index fdc2abd0a3..51d08e06b4 100644 --- a/server_status.php +++ b/server_status.php @@ -1383,15 +1383,15 @@ function printVariablesTable() } } if ('%' === substr($name, -1, 1)) { - echo PMA_formatNumber($value, 0, 2) . ' %'; + echo htmlspecialchars(PMA_formatNumber($value, 0, 2)) . ' %'; } elseif (strpos($name, 'Uptime')!==FALSE) { - echo PMA_timespanFormat($value); + echo htmlspecialchars(PMA_timespanFormat($value)); } elseif (is_numeric($value) && $value == (int) $value && $value > 1000) { - echo PMA_formatNumber($value, 3, 1); + echo htmlspecialchars(PMA_formatNumber($value, 3, 1)); } elseif (is_numeric($value) && $value == (int) $value) { - echo PMA_formatNumber($value, 3, 0); + echo htmlspecialchars(PMA_formatNumber($value, 3, 0)); } elseif (is_numeric($value)) { - echo PMA_formatNumber($value, 3, 1); + echo htmlspecialchars(PMA_formatNumber($value, 3, 1)); } else { echo htmlspecialchars($value); } From 409a1bee74487ab553b9a9dec54618f607122de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 15 Aug 2011 17:48:51 +0200 Subject: [PATCH 021/188] Fix trailing tags --- server_status.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server_status.php b/server_status.php index 51d08e06b4..a1db42afdf 100644 --- a/server_status.php +++ b/server_status.php @@ -1530,11 +1530,11 @@ function printMonitor()

- +
- +

From 268ad58ec2bef1d40f1e5b12ebef52e72e5a8276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 15 Aug 2011 17:49:26 +0200 Subject: [PATCH 022/188] Fix HTML --- server_status.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server_status.php b/server_status.php index a1db42afdf..a4b6efc0c7 100644 --- a/server_status.php +++ b/server_status.php @@ -1562,7 +1562,7 @@ function printMonitor()
@@ -1570,7 +1570,7 @@ function printMonitor()

From 13c3beb8ef72808818744aee2994bb3ae7528c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 15 Aug 2011 17:53:12 +0200 Subject: [PATCH 023/188] Fix references to selects --- server_status.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server_status.php b/server_status.php index a4b6efc0c7..7d6e62adcb 100644 --- a/server_status.php +++ b/server_status.php @@ -697,7 +697,7 @@ echo __('Runtime Information'); @@ -719,7 +719,7 @@ echo __('Runtime Information'); @@ -1644,7 +1644,7 @@ function printMonitor() function refreshList($name, $defaultRate=5, $refreshRates=Array(1, 2, 5, 10, 20, 40, 60, 120, 300, 600)) { ?> - Date: Mon, 15 Aug 2011 17:55:53 +0200 Subject: [PATCH 024/188] Can not have

inside

--- server_status.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server_status.php b/server_status.php index 7d6e62adcb..9eb493c493 100644 --- a/server_status.php +++ b/server_status.php @@ -1517,9 +1517,8 @@ function printMonitor() '; echo __('Please note:'); - echo '

'; + echo '
'; echo __('Enabling the general_log may increase the server load by 5-15%. Also be aware that generating statistics from the logs is a load intensive task, so it is advisable to select only a small time span and to disable the general_log and empty its table once monitoring is not required any more.'); - echo '

'; ?>

From c68ea6c71a2e4b52fd8c0f4c55b2476188419980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 15 Aug 2011 22:48:43 +0200 Subject: [PATCH 025/188] Cleanup --- po/de.po | 12 ------------ po/es.po | 12 ------------ po/zh_CN.po | 12 ------------ 3 files changed, 36 deletions(-) diff --git a/po/de.po b/po/de.po index 822ed74348..b1bd55893e 100644 --- a/po/de.po +++ b/po/de.po @@ -12907,18 +12907,6 @@ msgid "concurrent_insert is set to 0" msgstr "" #, fuzzy -#~| msgid "" -#~| "The Advisor system can provide recommendations on server variables by " -#~| "analyzing the server status variables. \n" -#~| " Do note however that this system provides recommendations based " -#~| "on fairly simple calculations and by rule of thumb and \n" -#~| " may not necessarily work for your system.\n" -#~| " Prior to changing any of the configuration, be sure to know what " -#~| "you are changing and how to undo the change. Wrong tuning\n" -#~| " can have a very negative effect on performance.\n" -#~| " The best way to tune the system would be to change only one " -#~| "setting at a time, observe or benchmark your database, and \n" -#~| " undo the change if there was no clearly measurable improvement." #~ msgid "" #~ "The Advisor system can provide recommendations on server variables by " #~ "analyzing the server status variables.

Do note however that this " diff --git a/po/es.po b/po/es.po index 8f2c69f206..ad03d35295 100644 --- a/po/es.po +++ b/po/es.po @@ -12959,18 +12959,6 @@ msgid "concurrent_insert is set to 0" msgstr "" #, fuzzy -#~| msgid "" -#~| "The Advisor system can provide recommendations on server variables by " -#~| "analyzing the server status variables.\n" -#~| " Do note however that this system provides recommendations based " -#~| "on fairly simple calculations and by rule of thumb and\n" -#~| " may not necessarily work for your system.\n" -#~| " Prior to changing any of the configuration, be sure to know what " -#~| "you are changing and how to undo the change. Wrong tuning\n" -#~| " can have a very negative effect on performance.\n" -#~| " The best way to tune the system would be to change only one " -#~| "setting at a time, observe or benchmark your database, and\n" -#~| " undo the change if there was no clearly measurable improvement." #~ msgid "" #~ "The Advisor system can provide recommendations on server variables by " #~ "analyzing the server status variables.

Do note however that this " diff --git a/po/zh_CN.po b/po/zh_CN.po index d8ee9f605f..4902bd6b5a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -12325,18 +12325,6 @@ msgid "concurrent_insert is set to 0" msgstr "" #, fuzzy -#~| msgid "" -#~| "The Advisor system can provide recommendations on server variables by " -#~| "analyzing the server status variables.\n" -#~| " Do note however that this system provides recommendations based " -#~| "on fairly simple calculations and by rule of thumb and\n" -#~| " may not necessarily work for your system.\n" -#~| " Prior to changing any of the configuration, be sure to know what " -#~| "you are changing and how to undo the change. Wrong tuning\n" -#~| " can have a very negative effect on performance.\n" -#~| " The best way to tune the system would be to change only one " -#~| "setting at a time, observe or benchmark your database, and\n" -#~| " undo the change if there was no clearly measurable improvement." #~ msgid "" #~ "The Advisor system can provide recommendations on server variables by " #~ "analyzing the server status variables.

Do note however that this " From 9da28ac057891396b8052c5d45dc90b9c402098c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:08:30 +0200 Subject: [PATCH 026/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 24adccfb63..9daaf6c173 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 09:36+0200\n" +"PO-Revision-Date: 2011-08-15 23:08+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1700,7 +1700,7 @@ msgstr "" #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "Sütun Ekle/Sil" +msgstr "İki sütun seç" #: js/messages.php:279 msgid "Select two different columns" From 189cd9aeb0b299e9956ac163e18c223dc81dcd63 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:08:44 +0200 Subject: [PATCH 027/188] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9daaf6c173..eefc8592f2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1787,10 +1787,9 @@ msgid "" msgstr "" #: js/messages.php:307 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "Görünüme git" +msgstr "Bağlantıya git" #: js/messages.php:310 msgid "Generate password" From cf619f23f6c378aaa23b52cf79f2f3d123ca976c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:10:03 +0200 Subject: [PATCH 028/188] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index eefc8592f2..dd79beb78b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:08+0200\n" +"PO-Revision-Date: 2011-08-15 23:10+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -4469,10 +4469,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:399 -#, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" -msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır" +msgstr "En fazla kayıt sayısı \"table_uiprefs\" tablosuna kaydedildi" #: libraries/config/messages.inc.php:400 msgid "Try to connect without password" From a733e01e38bf084d6547da7287d620ed0214e081 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:10:25 +0200 Subject: [PATCH 029/188] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index dd79beb78b..88a05ab32e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7932,10 +7932,9 @@ msgid "Operator" msgstr "İşletici" #: libraries/tbl_select.lib.php:131 -#, fuzzy #| msgid "Search" msgid "Table Search" -msgstr "Ara" +msgstr "Tablo Arama" #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" From 1de5f8cca79411de23b12a793e03fc3cabe72674 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:11:07 +0200 Subject: [PATCH 030/188] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 88a05ab32e..ee6f09ddee 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:10+0200\n" +"PO-Revision-Date: 2011-08-15 23:11+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10238,10 +10238,9 @@ msgstr "" "sunucu çizelgeleme özelliklerini kullanabilirsiniz." #: server_status.php:1507 -#, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "İzlemeyi duraklat" +msgstr "Kullanılan izleyici:" #: server_status.php:1509 #, fuzzy From 4932726b86767b88c46a2d0d3115c1bfd34346e9 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:11:37 +0200 Subject: [PATCH 031/188] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index ee6f09ddee..58abf64d7c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10240,7 +10240,7 @@ msgstr "" #: server_status.php:1507 #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "Kullanılan izleyici:" +msgstr "İzleyici kullanımı:" #: server_status.php:1509 #, fuzzy From 24ba175507768b6ae764627fb289f5bcf5aa214c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:12:19 +0200 Subject: [PATCH 032/188] Translation update done using Pootle. --- po/tr.po | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/po/tr.po b/po/tr.po index 58abf64d7c..05badc9fbc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:11+0200\n" +"PO-Revision-Date: 2011-08-15 23:12+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10243,7 +10243,6 @@ msgid "Using the monitor:" msgstr "İzleyici kullanımı:" #: server_status.php:1509 -#, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " #| "'Start monitor' your browser will refresh all displayed charts in a " @@ -10260,16 +10259,11 @@ msgid "" "change the refresh rate under 'Settings', or remove any chart using the cog " "icon on each respective chart." msgstr "" -"İzleyici kullanımı:
Tamam, ilerlemeye hazırsınız! Bir kere " -"'İzlemeyi başlat'a tıkladığınızda tarayıcınız tüm görüntülenen çizelgeleri " -"düzenli aralıklarla yenileyecek. 'Ayarlar' altında çizelgeleri ekleyebilir " -"ve yenileme oranını değiştirebilirsiniz veya her çizelgenin kendi dişli çark " -"simgesini kullanarak herhangi bir çizelgeyi kaldırabilirsiniz. " -"

Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " -"tuşunu basılı tutarak ve çizelge üzerinde kaydırarak ilgili zaman aralığını " -"seçin. Bir kere onaylandı mı bu, gruplanmış sorguların tablolarını " -"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " -"ifadesine tıklayabilirsiniz.

" +"Tamam, ilerlemeye hazırsınız! Bir kere 'İzlemeyi başlat'a tıkladığınızda " +"tarayıcınız tüm görüntülenen çizelgeleri düzenli aralıklarla yenileyecek. " +"'Ayarlar' altında çizelgeleri ekleyebilir ve yenileme oranını " +"değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " +"kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." #: server_status.php:1511 #, fuzzy From 4c29249dc139074685c5070c655b0063be52398b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:12:35 +0200 Subject: [PATCH 033/188] Translation update done using Pootle. --- po/tr.po | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/po/tr.po b/po/tr.po index 05badc9fbc..aa7a85fd21 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10266,7 +10266,6 @@ msgstr "" "kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." #: server_status.php:1511 -#, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " #| "'Start monitor' your browser will refresh all displayed charts in a " @@ -10283,16 +10282,11 @@ msgid "" "confirmed, this will load a table of grouped queries, there you may click on " "any occuring SELECT statements to further analyze them." msgstr "" -"İzleyici kullanımı:
Tamam, ilerlemeye hazırsınız! Bir kere " -"'İzlemeyi başlat'a tıkladığınızda tarayıcınız tüm görüntülenen çizelgeleri " -"düzenli aralıklarla yenileyecek. 'Ayarlar' altında çizelgeleri ekleyebilir " -"ve yenileme oranını değiştirebilirsiniz veya her çizelgenin kendi dişli çark " -"simgesini kullanarak herhangi bir çizelgeyi kaldırabilirsiniz. " -"

Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " +"Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " "tuşunu basılı tutarak ve çizelge üzerinde kaydırarak ilgili zaman aralığını " "seçin. Bir kere onaylandı mı bu, gruplanmış sorguların tablolarını " "yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " -"ifadesine tıklayabilirsiniz.

" +"ifadesine tıklayabilirsiniz." #: server_status.php:1518 msgid "Please note:" From 0e52e564cf6eb2058f7f91cd0f5b35daab17855d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:12:55 +0200 Subject: [PATCH 034/188] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index aa7a85fd21..5deb68a04b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10290,7 +10290,7 @@ msgstr "" #: server_status.php:1518 msgid "Please note:" -msgstr "" +msgstr "Lütfen unutmayın:" #: server_status.php:1520 #, fuzzy From f8c375e5aefd4cca4fba5aa88667f84e6391fb5d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:13:30 +0200 Subject: [PATCH 035/188] Translation update done using Pootle. --- po/tr.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5deb68a04b..2daec82e70 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:12+0200\n" +"PO-Revision-Date: 2011-08-15 23:13+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10293,7 +10293,6 @@ msgid "Please note:" msgstr "Lütfen unutmayın:" #: server_status.php:1520 -#, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " #| "by 5-15%. Also be aware that generating statistics from the logs is a " @@ -10306,11 +10305,11 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Lütfen unutmayın: general_log'u etkinleştirmek sunucu yükünü %5-15 " -"arttırabilir. Aynı zamanda günlükten oluşturulan istatistiklerin yoğun görev " -"yükü olduğundan haberiniz olsun bu yüzden sadece küçük zaman aralıkları " -"seçmek ve general_log'u etkisizleştirmek tavsiye edilir ve tablolarını bir " -"defa boşaltmak daha fazla izlemeyi gerektirmez." +"general_log'u etkinleştirmek sunucu yükünü %5-15 arttırabilir. Aynı zamanda " +"günlükten oluşturulan istatistiklerin yoğun görev yükü olduğundan haberiniz " +"olsun bu yüzden sadece küçük zaman aralıkları seçmek ve general_log'u " +"etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " +"izlemeyi gerektirmez." #: server_status.php:1533 msgid "Preset chart" From 76fbf5da87544a7a7395ae8824b348b6ffabd778 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:13:49 +0200 Subject: [PATCH 036/188] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 2daec82e70..48bb196d6c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1700,7 +1700,7 @@ msgstr "" #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "İki sütun seç" +msgstr "İki sütun seçin" #: js/messages.php:279 msgid "Select two different columns" From e332ec310d58fd2f80e6e677b5a45a1216db670f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:15:16 +0200 Subject: [PATCH 037/188] Translation update done using Pootle. --- po/tr.po | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 48bb196d6c..39b110224f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:13+0200\n" +"PO-Revision-Date: 2011-08-15 23:15+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10372,14 +10372,11 @@ msgid "Remove variable data in INSERT statements for better grouping" msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" #: server_status.php:1608 -#, fuzzy #| msgid "" #| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"

İstatistiklerin oluşturulmasını istediğinizden seçin.

Sonuçlar sorgu " -"metnine göre gruplandırılır." +msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin." #: server_status.php:1610 msgid "Results are grouped by query text." From 0eb5b588fff55b47ef4e5fb3ccef38aa81ddb0b5 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:16:46 +0200 Subject: [PATCH 038/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 39b110224f..b0e3884c38 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:15+0200\n" +"PO-Revision-Date: 2011-08-15 23:16+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10380,7 +10380,7 @@ msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seç #: server_status.php:1610 msgid "Results are grouped by query text." -msgstr "" +msgstr "Sonuçlar sorgu metnine göre gruplandırılır." #: server_status.php:1615 msgid "Query analyzer" From 33170c83852761d8cf57fa17bbb82b8ed2116391 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:17:15 +0200 Subject: [PATCH 039/188] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index b0e3884c38..933faae6bb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:16+0200\n" +"PO-Revision-Date: 2011-08-15 23:17+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1663,10 +1663,9 @@ msgid "Show search criteria" msgstr "Arama kriterini göster" #: js/messages.php:262 libraries/tbl_select.lib.php:138 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "Ara" +msgstr "Yakınlaştırma Arama" #: js/messages.php:264 msgid "Each point represents a data row." From f2c57705a6efcf0e502dfddad854d7e22bc2aab4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:17:24 +0200 Subject: [PATCH 040/188] Translation update done using Pootle. --- po/tr.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 933faae6bb..4261319f57 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1696,7 +1696,6 @@ msgid "Strings are converted into integer for plotting" msgstr "" #: js/messages.php:278 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "İki sütun seçin" From ac96824c30f92054450d4fe31edae72a332305fa Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:18:40 +0200 Subject: [PATCH 041/188] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4261319f57..c73599b22e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:17+0200\n" +"PO-Revision-Date: 2011-08-15 23:18+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11533,10 +11533,9 @@ msgid "Create version" msgstr "Sürüm oluştur" #: tbl_zoom_select.php:140 -#, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"Örnek sorgu\" yap. (joker: \"%\")" +msgstr "İki farklı sütun için \"örneğe göre sorgu\" (joker: \"%\") yap" #: tbl_zoom_select.php:151 #, fuzzy From e2af094ce5468e3265145746093b6dd7032cc336 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:19:07 +0200 Subject: [PATCH 042/188] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index c73599b22e..6f954da16a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:18+0200\n" +"PO-Revision-Date: 2011-08-15 23:19+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11538,10 +11538,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "İki farklı sütun için \"örneğe göre sorgu\" (joker: \"%\") yap" #: tbl_zoom_select.php:151 -#, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Arama kriterini gizle" +msgstr "İlave arama kriteri" #: tbl_zoom_select.php:281 #, fuzzy From 995cd9fd6c3f0972bbb617fed3d5a960f1b9309c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:19:16 +0200 Subject: [PATCH 043/188] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 6f954da16a..5efc123850 100644 --- a/po/tr.po +++ b/po/tr.po @@ -11543,10 +11543,9 @@ msgid "Additional search criteria" msgstr "İlave arama kriteri" #: tbl_zoom_select.php:281 -#, fuzzy #| msgid "Label" msgid "Data Label" -msgstr "Etiket" +msgstr "Veri Etiketi" #: tbl_zoom_select.php:297 #, fuzzy From e53f44f94786838250a09aa2801805ac9652a3e9 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:20:24 +0200 Subject: [PATCH 044/188] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5efc123850..88d0d7ee6e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:19+0200\n" +"PO-Revision-Date: 2011-08-15 23:20+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11548,10 +11548,9 @@ msgid "Data Label" msgstr "Veri Etiketi" #: tbl_zoom_select.php:297 -#, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" -msgstr "Görüntülemek için en fazla satır sayısı" +msgstr "Grafiğini çizmek için en fazla satır" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" From 7eb047a3794584080011abfcf01cc02bb4ea0f5a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:20:39 +0200 Subject: [PATCH 045/188] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 88d0d7ee6e..dd514247a8 100644 --- a/po/tr.po +++ b/po/tr.po @@ -11557,10 +11557,9 @@ msgid "Browse/Edit the points" msgstr "" #: tbl_zoom_select.php:394 -#, fuzzy #| msgid "Control user" msgid "How to use" -msgstr "Denetim kullanıcısı" +msgstr "Nasıl kullanılır" #: themes.php:28 msgid "Get more themes!" From dc85e66b8546059a35f81f604c85586fd43921c7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:21:13 +0200 Subject: [PATCH 046/188] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index dd514247a8..d1a4109e5b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:20+0200\n" +"PO-Revision-Date: 2011-08-15 23:21+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12248,10 +12248,10 @@ msgid "key_buffer_size is 0" msgstr "" #: po/advisory_rules.php:160 -#, fuzzy, php-format +#, php-format #| msgid "Max % MyISAM key buffer ever used" msgid "Max %% MyISAM key buffer ever used" -msgstr "Şimdiye kadar kullanılan en fazla MyISAM anahtar arabelleği" +msgstr "Şimdiye kadar kullanılan en fazla %% MyISAM anahtar arabelleği" #: po/advisory_rules.php:161 po/advisory_rules.php:166 #, fuzzy, php-format From 8239735ef32dd563acc024bf31bbc703fe0e777d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:22:21 +0200 Subject: [PATCH 047/188] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index d1a4109e5b..fcaa4b62fc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:21+0200\n" +"PO-Revision-Date: 2011-08-15 23:22+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12254,10 +12254,10 @@ msgid "Max %% MyISAM key buffer ever used" msgstr "Şimdiye kadar kullanılan en fazla %% MyISAM anahtar arabelleği" #: po/advisory_rules.php:161 po/advisory_rules.php:166 -#, fuzzy, php-format +#, php-format #| msgid "Max % MyISAM key buffer ever used" msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "Şimdiye kadar kullanılan en fazla MyISAM anahtar arabelleği" +msgstr "Kullanılan MyISAM anahtar arabelleği (indeks önbelleği) %% düşük." #: po/advisory_rules.php:162 po/advisory_rules.php:167 msgid "" From f91d147bb84d48cd7c605743962d6df6873f08cf Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:22:59 +0200 Subject: [PATCH 048/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index fcaa4b62fc..7ba3f985dc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -12353,10 +12353,10 @@ msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: po/advisory_rules.php:190 -#, fuzzy, php-format +#, php-format #| msgid "Immediate table locks %" msgid "Immediate table locks %%" -msgstr "Acil tablo kilitleri %" +msgstr "Acil tablo kilitleri %%" #: po/advisory_rules.php:191 po/advisory_rules.php:196 msgid "Too many table locks were not granted immediately." From ed85448960577f43fa461c833928e8126e88955a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:23:06 +0200 Subject: [PATCH 049/188] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 7ba3f985dc..0de7b3419d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:22+0200\n" +"PO-Revision-Date: 2011-08-15 23:23+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12399,10 +12399,10 @@ msgid "The thread cache is set to 0" msgstr "" #: po/advisory_rules.php:205 -#, fuzzy, php-format +#, php-format #| msgid "Thread cache hit rate %" msgid "Thread cache hit rate %%" -msgstr "İşlem önbelleği tavan oranı %" +msgstr "İşlem önbelleği tavan oranı %%" #: po/advisory_rules.php:206 msgid "Thread cache is not efficient." From 3662a7b06e66da6d68f5bc705189035b9a447e7f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:23:43 +0200 Subject: [PATCH 050/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0de7b3419d..ddd87404fa 100644 --- a/po/tr.po +++ b/po/tr.po @@ -116,8 +116,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"%s dosyası bu sistemde mevcut değil, lütfen daha fazla bilgi için www." -"phpmyadmin.net adresini ziyaret edin." +"Bu sistemde %s dosyası mevcut değil, lütfen daha fazla bilgi için " +"www.phpmyadmin.net adresini ziyaret edin." #: db_create.php:58 #, php-format From 6e175d395fb9637b2c963f8e82fa512a60d2fddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:23:48 +0200 Subject: [PATCH 051/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 8f2c69f206..d1b31fdcad 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-10 16:45+0200\n" +"PO-Revision-Date: 2011-08-15 23:23+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1133,10 +1133,9 @@ msgid "Query statistics" msgstr "Estadísticas de Consulta" #: js/messages.php:93 -#, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration icompatible" -msgstr "No se pudo leer el archivo de configuración" +msgstr "Configuración de monitorización local incompatible" #: js/messages.php:94 msgid "" From 64b4e3046ec2bfd5caa9d552310b991190bf7f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:24:57 +0200 Subject: [PATCH 052/188] Translation update done using Pootle. --- po/es.po | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index d1b31fdcad..5d1e3cd8e6 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:23+0200\n" +"PO-Revision-Date: 2011-08-15 23:24+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1144,6 +1144,11 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"La configuración de distribución de gráficos en el almacenamiento local del " +"navegador no es compatible con la nueva versión del sistema de " +"monitorización. Es probable que la configuración no funcione. Porfavor, " +"reinicie la configuración a la predeterminada en el menú " +"Configuración." #: js/messages.php:96 #, fuzzy From 57a649cefa959aa24ae24d9935bf2eb27259333b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:25:14 +0200 Subject: [PATCH 053/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 5d1e3cd8e6..76a8b8c7fb 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:24+0200\n" +"PO-Revision-Date: 2011-08-15 23:25+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1151,10 +1151,9 @@ msgstr "" "Configuración." #: js/messages.php:96 -#, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" -msgstr "Cache de consultas" +msgstr "Eficiencia del caché de consultas" #: js/messages.php:97 po/advisory_rules.php:70 #, fuzzy From bf618853ef90ea97e9c527de8531abd2ce3adb58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:25:22 +0200 Subject: [PATCH 054/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 76a8b8c7fb..bdeaa7daf2 100644 --- a/po/es.po +++ b/po/es.po @@ -1156,10 +1156,9 @@ msgid "Query cache efficiency" msgstr "Eficiencia del caché de consultas" #: js/messages.php:97 po/advisory_rules.php:70 -#, fuzzy #| msgid "Query cache" msgid "Query cache usage" -msgstr "Cache de consultas" +msgstr "Uso del caché de consultas" #: js/messages.php:98 #, fuzzy From c5a033970ed6b946a95a7ce483f32813a58e28f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:25:37 +0200 Subject: [PATCH 055/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index bdeaa7daf2..8716971a97 100644 --- a/po/es.po +++ b/po/es.po @@ -1161,10 +1161,9 @@ msgid "Query cache usage" msgstr "Uso del caché de consultas" #: js/messages.php:98 -#, fuzzy #| msgid "Query cache" msgid "Query cache used" -msgstr "Cache de consultas" +msgstr "Caché de consultas utilizado" #: js/messages.php:100 msgid "System CPU Usage" From 2fcbcf5f0445540445fbe9bab82447a0526ff8a9 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:25:44 +0200 Subject: [PATCH 056/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index ddd87404fa..a121b213db 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:23+0200\n" +"PO-Revision-Date: 2011-08-15 23:25+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1669,7 +1669,7 @@ msgstr "Yakınlaştırma Arama" #: js/messages.php:264 msgid "Each point represents a data row." -msgstr "" +msgstr "Her nokta bir veri satırını temsil eder." #: js/messages.php:266 msgid "Hovering over a point will show its label." From 4f855a285aff9484c06f95b8098ff7d48e96198e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:25:48 +0200 Subject: [PATCH 057/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8716971a97..be876a59fe 100644 --- a/po/es.po +++ b/po/es.po @@ -1509,10 +1509,9 @@ msgid "Import" msgstr "Importar" #: js/messages.php:192 -#, fuzzy #| msgid "Update Query" msgid "Analyse Query" -msgstr "Modificar la consulta" +msgstr "Analizar consulta" #: js/messages.php:196 #, fuzzy From 2ad50fcc027ab6a89ca7986631a7a9e702df6362 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:26:17 +0200 Subject: [PATCH 058/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index a121b213db..8ecca0c839 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:25+0200\n" +"PO-Revision-Date: 2011-08-15 23:26+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1673,7 +1673,7 @@ msgstr "Her nokta bir veri satırını temsil eder." #: js/messages.php:266 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "Noktanın üzerinde durmak etiketini gösterecektir." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." From ee910d4ea25cf09b4f86c30a6525604a84567e3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:26:27 +0200 Subject: [PATCH 059/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index be876a59fe..0660453a3d 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:25+0200\n" +"PO-Revision-Date: 2011-08-15 23:26+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1514,10 +1514,9 @@ msgid "Analyse Query" msgstr "Analizar consulta" #: js/messages.php:196 -#, fuzzy #| msgid "Advisor" msgid "Advisor system" -msgstr "Consejero" +msgstr "Sistema de consejos" #: js/messages.php:197 msgid "Possible performance issues" From ace759df85c095fc843319c30cbc4ef1ab275ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:26:35 +0200 Subject: [PATCH 060/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 0660453a3d..b063ba687a 100644 --- a/po/es.po +++ b/po/es.po @@ -1520,7 +1520,7 @@ msgstr "Sistema de consejos" #: js/messages.php:197 msgid "Possible performance issues" -msgstr "" +msgstr "Posibles problemas de performance" #: js/messages.php:198 msgid "Issue" From af4e5fb828856c48d16cf7c5a6f8ac65d65c58eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:26:38 +0200 Subject: [PATCH 061/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b063ba687a..9de191c6b3 100644 --- a/po/es.po +++ b/po/es.po @@ -1524,7 +1524,7 @@ msgstr "Posibles problemas de performance" #: js/messages.php:198 msgid "Issue" -msgstr "" +msgstr "Problema" #: js/messages.php:199 #, fuzzy From f7fec5564b325460cb1884080b31840581e6db5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:26:43 +0200 Subject: [PATCH 062/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 9de191c6b3..4aa5848275 100644 --- a/po/es.po +++ b/po/es.po @@ -1527,10 +1527,9 @@ msgid "Issue" msgstr "Problema" #: js/messages.php:199 -#, fuzzy #| msgid "Documentation" msgid "Recommendation" -msgstr "Documentación" +msgstr "Recomendación" #: js/messages.php:200 #, fuzzy From 838f500114303f089064fc9a4fbbe057217884b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:26:49 +0200 Subject: [PATCH 063/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 4aa5848275..756be96a1f 100644 --- a/po/es.po +++ b/po/es.po @@ -1532,10 +1532,9 @@ msgid "Recommendation" msgstr "Recomendación" #: js/messages.php:200 -#, fuzzy #| msgid "Details" msgid "Rule details" -msgstr "Detalles" +msgstr "Detalles de la regla" #: js/messages.php:201 #, fuzzy From aa77493d1dcb56cbbeedbcbdeb8601ca26d018b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:26:53 +0200 Subject: [PATCH 064/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 756be96a1f..b9c31ab076 100644 --- a/po/es.po +++ b/po/es.po @@ -1537,10 +1537,9 @@ msgid "Rule details" msgstr "Detalles de la regla" #: js/messages.php:201 -#, fuzzy #| msgid "Authentication" msgid "Justification" -msgstr "Autentificación" +msgstr "Justificación" #: js/messages.php:202 msgid "Used variable / formula" From 6ae215bfbb0001155f183d1538d70336f4787661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:27:06 +0200 Subject: [PATCH 065/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b9c31ab076..52fa01f032 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:26+0200\n" +"PO-Revision-Date: 2011-08-15 23:27+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1543,7 +1543,7 @@ msgstr "Justificación" #: js/messages.php:202 msgid "Used variable / formula" -msgstr "" +msgstr "Variable/fórmula utilizada" #: js/messages.php:203 msgid "Test" From 429c2f9bc604b620cbaff265688ab90dee90133a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:27:24 +0200 Subject: [PATCH 066/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 52fa01f032..a92fc858dd 100644 --- a/po/es.po +++ b/po/es.po @@ -1547,7 +1547,7 @@ msgstr "Variable/fórmula utilizada" #: js/messages.php:203 msgid "Test" -msgstr "" +msgstr "Prueba" #: js/messages.php:208 libraries/tbl_properties.inc.php:763 #: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545 From 35e3e97dbdee1b0893675bc4a6f64f33bbe1732f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:27:32 +0200 Subject: [PATCH 067/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a92fc858dd..b9788b3f9c 100644 --- a/po/es.po +++ b/po/es.po @@ -1689,10 +1689,9 @@ msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" #: js/messages.php:262 libraries/tbl_select.lib.php:138 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "Buscar" +msgstr "Ampliar búsqueda" #: js/messages.php:264 msgid "Each point represents a data row." From 759d993f85c7ff14ab013283d54e650f51b9800c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:27:47 +0200 Subject: [PATCH 068/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b9788b3f9c..01b7d1e8a8 100644 --- a/po/es.po +++ b/po/es.po @@ -1695,7 +1695,7 @@ msgstr "Ampliar búsqueda" #: js/messages.php:264 msgid "Each point represents a data row." -msgstr "" +msgstr "Cada punto representa una fila de datos" #: js/messages.php:266 msgid "Hovering over a point will show its label." From a60f4ea7bcb32feb6db9b9067dbbcf0e804f3d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:28:11 +0200 Subject: [PATCH 069/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 01b7d1e8a8..a71a8c0b89 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:27+0200\n" +"PO-Revision-Date: 2011-08-15 23:28+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1699,7 +1699,7 @@ msgstr "Cada punto representa una fila de datos" #: js/messages.php:266 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." From 6108d41eafbc7220ea9cf8ec36c37a63a50e9cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:28:14 +0200 Subject: [PATCH 070/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a71a8c0b89..4782a8289f 100644 --- a/po/es.po +++ b/po/es.po @@ -1695,7 +1695,7 @@ msgstr "Ampliar búsqueda" #: js/messages.php:264 msgid "Each point represents a data row." -msgstr "Cada punto representa una fila de datos" +msgstr "Cada punto representa una fila de datos." #: js/messages.php:266 msgid "Hovering over a point will show its label." From ddb88aaaa8335e7a655efba781f56984852f7e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:28:31 +0200 Subject: [PATCH 071/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 4782a8289f..db0af03e1d 100644 --- a/po/es.po +++ b/po/es.po @@ -1703,7 +1703,7 @@ msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." -msgstr "" +msgstr "Arrastre y seleccione un área en el gráfico para ampliarla." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." From e820fe2dd12c2ae3605660bb6900ecd71a94a6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:29:18 +0200 Subject: [PATCH 072/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index db0af03e1d..2b39c1e879 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:28+0200\n" +"PO-Revision-Date: 2011-08-15 23:29+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1707,7 +1707,7 @@ msgstr "Arrastre y seleccione un área en el gráfico para ampliarla." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." -msgstr "" +msgstr "Pulse el enlace de restaurar ampliación para volver al estado original." #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." From 075dc7e7fba82ce4a94a53eb1b5a0d474560d8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:30:25 +0200 Subject: [PATCH 073/188] Translation update done using Pootle. --- po/es.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 2b39c1e879..0cb9f5ffab 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:29+0200\n" +"PO-Revision-Date: 2011-08-15 23:30+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1712,6 +1712,7 @@ msgstr "Pulse el enlace de restaurar ampliación para volver al estado original. #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." msgstr "" +"Pulse en un punto de datos para ver y posiblemente editar la fila de datos." #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." From b3e559c4dce417b348226d789b52b6a817592bba Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:30:36 +0200 Subject: [PATCH 074/188] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 8ecca0c839..0fcc019afe 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:26+0200\n" +"PO-Revision-Date: 2011-08-15 23:30+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1678,6 +1678,8 @@ msgstr "Noktanın üzerinde durmak etiketini gösterecektir." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." msgstr "" +"Grafiği çizilen yerin içinde yakınlaştırmak için sürükleyin ve bir alan " +"seçin." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." From 0452e2d502310e17d3578509b2103bd5fc19e53b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:31:54 +0200 Subject: [PATCH 075/188] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 0fcc019afe..1fe4777744 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:30+0200\n" +"PO-Revision-Date: 2011-08-15 23:31+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1684,6 +1684,8 @@ msgstr "" #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." msgstr "" +"Orijinal durumuna geri gelmek için yakınlaştırmayı sıfırla bağlantısına " +"tıklayın." #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." From a63a7fb22a03a8237c49652543fae0974b5b6faf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:32:45 +0200 Subject: [PATCH 076/188] Translation update done using Pootle. --- po/es.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 0cb9f5ffab..41a12e25e1 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:30+0200\n" +"PO-Revision-Date: 2011-08-15 23:32+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1717,6 +1717,7 @@ msgstr "" #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"El gráfico puede redimensionarse arrastrando la esquina inferior derecha." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" From 3ff8afdd3c2917ae6e4b42ec0bff8a85ff2d6475 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:33:23 +0200 Subject: [PATCH 077/188] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 1fe4777744..b55510429c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:31+0200\n" +"PO-Revision-Date: 2011-08-15 23:33+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1690,6 +1690,8 @@ msgstr "" #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." msgstr "" +"Veri satırını mümkün olduğunca düzenlemek ve görmek için veri noktasına " +"tıklayın." #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." From 64fca78c178d565e58776aa809ba9991c5140df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:33:33 +0200 Subject: [PATCH 078/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 41a12e25e1..fec375f787 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:32+0200\n" +"PO-Revision-Date: 2011-08-15 23:33+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1721,7 +1721,7 @@ msgstr "" #: js/messages.php:276 msgid "Strings are converted into integer for plotting" -msgstr "" +msgstr "Las cadenas son conventidas a enteros para graficarlas" #: js/messages.php:278 #, fuzzy From 7fd797dd074e6dd5a12467a37b76bba6cb863e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:33:44 +0200 Subject: [PATCH 079/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index fec375f787..41c2fa7d63 100644 --- a/po/es.po +++ b/po/es.po @@ -1724,10 +1724,9 @@ msgid "Strings are converted into integer for plotting" msgstr "Las cadenas son conventidas a enteros para graficarlas" #: js/messages.php:278 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "Añadir/borrar columnas" +msgstr "Seleccionar dos columnas" #: js/messages.php:279 msgid "Select two different columns" From 8d5ed0a28870208847c69036b33fa218071d1d09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:34:24 +0200 Subject: [PATCH 080/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 41c2fa7d63..1dc73410c9 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:33+0200\n" +"PO-Revision-Date: 2011-08-15 23:34+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1730,7 +1730,7 @@ msgstr "Seleccionar dos columnas" #: js/messages.php:279 msgid "Select two different columns" -msgstr "" +msgstr "Seleccionar dos columnas distintas" #: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 #: tbl_indexes.php:238 From f4ea1e5a3cbcaba4d3aec245c21b8741d9742a48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:34:42 +0200 Subject: [PATCH 081/188] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index 1dc73410c9..de7d2b16fa 100644 --- a/po/es.po +++ b/po/es.po @@ -1812,6 +1812,8 @@ msgstr "" msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"Puede editar la mayoría de las columnas pulsando directamente en su " +"contenido." #: js/messages.php:307 #, fuzzy From 9f23b0d65cc612fef29f0b3209e69b0332c4d97d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:34:50 +0200 Subject: [PATCH 082/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index de7d2b16fa..65e55dd9bb 100644 --- a/po/es.po +++ b/po/es.po @@ -1816,10 +1816,9 @@ msgstr "" "contenido." #: js/messages.php:307 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "Ir a la vista" +msgstr "Ir al enlace" #: js/messages.php:310 msgid "Generate password" From e1bd9bfbe8be9f74a15da094771472d7fdd89f93 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:35:07 +0200 Subject: [PATCH 083/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index b55510429c..c5a470268f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:33+0200\n" +"PO-Revision-Date: 2011-08-15 23:35+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1708,7 +1708,7 @@ msgstr "İki sütun seçin" #: js/messages.php:279 msgid "Select two different columns" -msgstr "" +msgstr "İki farklı sütun seçin" #: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 #: tbl_indexes.php:238 From c538bda041848320c392d909b831076a00cede57 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:35:31 +0200 Subject: [PATCH 084/188] Translation update done using Pootle. --- po/tr.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index c5a470268f..d5398b9ecc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1677,9 +1677,7 @@ msgstr "Noktanın üzerinde durmak etiketini gösterecektir." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." -msgstr "" -"Grafiği çizilen yerin içinde yakınlaştırmak için sürükleyin ve bir alan " -"seçin." +msgstr "Çizim içinde yakınlaştırmak için sürükleyin ve bir alan seçin." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." From 52bcad358ed1b5abd179690526c6cbb2f1da028b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:35:56 +0200 Subject: [PATCH 085/188] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 65e55dd9bb..254d35ab59 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:34+0200\n" +"PO-Revision-Date: 2011-08-15 23:35+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -2312,6 +2312,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" +"Falló la limpieza de la tabla de preferencia de interfaz (ver " +"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Theme.class.php:144 #, php-format From a3096e6dd764cbb4cc8786c2e0d21691aacf677e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:36:06 +0200 Subject: [PATCH 086/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index d5398b9ecc..a1842da25a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:35+0200\n" +"PO-Revision-Date: 2011-08-15 23:36+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11554,7 +11554,7 @@ msgstr "Veri Etiketi" #: tbl_zoom_select.php:297 #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" -msgstr "Grafiğini çizmek için en fazla satır" +msgstr "Çizim için en fazla satır" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" From 414479d4f29825fdb07a2667f7076a22d4856622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:36:35 +0200 Subject: [PATCH 087/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 254d35ab59..47fe3064ee 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:35+0200\n" +"PO-Revision-Date: 2011-08-15 23:36+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -2312,7 +2312,7 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Falló la limpieza de la tabla de preferencia de interfaz (ver " +"Falló la limpieza de las preferencia de interfaz de tablas (ver " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Theme.class.php:144 From 908ac3cd81538ae85b1d99aa4fb91f08a83f8dea Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:39:20 +0200 Subject: [PATCH 088/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index a1842da25a..e7bde66e05 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:36+0200\n" +"PO-Revision-Date: 2011-08-15 23:39+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1693,7 +1693,7 @@ msgstr "" #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." -msgstr "" +msgstr "Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" From 883dc1dff7186545901d7718cbb7ea1b03fc1658 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:40:44 +0200 Subject: [PATCH 089/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index e7bde66e05..1c96510773 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:39+0200\n" +"PO-Revision-Date: 2011-08-15 23:40+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1697,7 +1697,7 @@ msgstr "Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırıl #: js/messages.php:276 msgid "Strings are converted into integer for plotting" -msgstr "" +msgstr "Satırlar çizim yapmak için tam sayıya dönüştürülür" #: js/messages.php:278 #| msgid "Add/Delete columns" From 46c51fbfdb03739ea6b298a40f09060b61257902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:41:56 +0200 Subject: [PATCH 090/188] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 47fe3064ee..8617e05001 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:36+0200\n" +"PO-Revision-Date: 2011-08-15 23:41+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -4534,6 +4534,9 @@ msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" +"Esta configuración asegura que sólo se mantengan los N (N = MaxTableUiprefs) " +"registros más recientes en «table_uiprefs» y los registros anteriores sean " +"eliminados" #: libraries/config/messages.inc.php:399 #, fuzzy From a071c385d36042b172832ad8115e618b2cf02f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:42:17 +0200 Subject: [PATCH 091/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 8617e05001..35d698a669 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:41+0200\n" +"PO-Revision-Date: 2011-08-15 23:42+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -4539,10 +4539,9 @@ msgstr "" "eliminados" #: libraries/config/messages.inc.php:399 -#, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" -msgstr "Número máximo de tablas mostradas en una lista de tablas" +msgstr "Número máximo de regustros almacenados en la tabla «table_uiprefs»" #: libraries/config/messages.inc.php:400 msgid "Try to connect without password" From 82d03514fa89397c9d326b91bf7655ab99b76710 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:42:32 +0200 Subject: [PATCH 092/188] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 1c96510773..8332e17f02 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:40+0200\n" +"PO-Revision-Date: 2011-08-15 23:42+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1787,6 +1787,8 @@ msgstr "" msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"Aynı zamanda çoğu sütunu içeriğine
doğrudan tıklayarak " +"düzenleyebilirsiniz." #: js/messages.php:307 #| msgid "Go to view" From 7a7456b62e3628d14c089abdd531dd0b7df1619d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:42:41 +0200 Subject: [PATCH 093/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 35d698a669..8d050d00b3 100644 --- a/po/es.po +++ b/po/es.po @@ -8048,10 +8048,9 @@ msgid "Operator" msgstr "Operador" #: libraries/tbl_select.lib.php:131 -#, fuzzy #| msgid "Search" msgid "Table Search" -msgstr "Buscar" +msgstr "Búsqueda de tablas" #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" From 3777b32f7553f99e75cbe36b431024e9ca47059d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:43:05 +0200 Subject: [PATCH 094/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 8d050d00b3..0406a05706 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:42+0200\n" +"PO-Revision-Date: 2011-08-15 23:43+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -8407,10 +8407,9 @@ msgid "No databases" msgstr "No hay bases de datos" #: navigation.php:270 -#, fuzzy #| msgid "filter tables by name" msgid "Filter tables by name" -msgstr "filtar tablas por nombre" +msgstr "Filtrar tablas por nombre" #: navigation.php:303 navigation.php:304 msgctxt "short form" From 5626b5bcab8325b93da2b6e5b8ecc8d0f41c5a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:43:18 +0200 Subject: [PATCH 095/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0406a05706..37e91e7d75 100644 --- a/po/es.po +++ b/po/es.po @@ -9508,10 +9508,9 @@ msgid "Related links:" msgstr "Enlaces relacionados:" #: server_status.php:800 -#, fuzzy #| msgid "Query analyzer" msgid "Run analyzer" -msgstr "Analizador de consultas" +msgstr "Ejecutar analizador" #: server_status.php:801 #, fuzzy From 8a01cd5f7c90f9db764947cd66995dd86ba275d3 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:43:53 +0200 Subject: [PATCH 096/188] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 8332e17f02..b2eedfc123 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:42+0200\n" +"PO-Revision-Date: 2011-08-15 23:43+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -2280,6 +2280,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" +"Tablo KA tercihlerini temizleme başarısız " +"($cfg['Servers'][$i]['MaxTableUiprefs'] %s bakın)" #: libraries/Theme.class.php:144 #, php-format From 8ec1e71a6ca44eb6508161b82a171d9f3e0805eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:45:32 +0200 Subject: [PATCH 097/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 37e91e7d75..6aba0c9b27 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:43+0200\n" +"PO-Revision-Date: 2011-08-15 23:45+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9513,10 +9513,9 @@ msgid "Run analyzer" msgstr "Ejecutar analizador" #: server_status.php:801 -#, fuzzy #| msgid "Introduction" msgid "Instructions" -msgstr "Introducción" +msgstr "Instrucciones" #: server_status.php:808 msgid "" From 11c1cb5bd0de9ca1e5b3a40539a8f127a114d2f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:45:56 +0200 Subject: [PATCH 098/188] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index 6aba0c9b27..ec5f8d0e11 100644 --- a/po/es.po +++ b/po/es.po @@ -9522,6 +9522,8 @@ msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" +"El sistema de consejos puede proveer recomendaciones para las variables del " +"servidor analizando las variables de estado del servidor." #: server_status.php:810 msgid "" From 51eab1a50733bef5021d26598b73e9b83637a07c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:48:24 +0200 Subject: [PATCH 099/188] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index ec5f8d0e11..561e893e09 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:45+0200\n" +"PO-Revision-Date: 2011-08-15 23:48+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9531,6 +9531,9 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" +"Notar, sin embargo, que este sistema provee recomendaciones basadas en " +"cálculos simples y reglas generales que no necesariamente sean válidas en su " +"sistema." #: server_status.php:812 msgid "" From 41963a314d3d95b44208f4b1bfa352f1bf2f33db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:49:09 +0200 Subject: [PATCH 100/188] Translation update done using Pootle. --- po/es.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 561e893e09..8b77e3a99c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:48+0200\n" +"PO-Revision-Date: 2011-08-15 23:49+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9532,8 +9532,8 @@ msgid "" "system." msgstr "" "Notar, sin embargo, que este sistema provee recomendaciones basadas en " -"cálculos simples y reglas generales que no necesariamente sean válidas en su " -"sistema." +"cálculos simples y reglas generales que no serán necesariamente válidas en " +"su sistema." #: server_status.php:812 msgid "" From 726620b6946db06ccb5c762c81fb18dd2bbb7d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:49:42 +0200 Subject: [PATCH 101/188] Translation update done using Pootle. --- po/es.po | 3 +++ 1 file changed, 3 insertions(+) diff --git a/po/es.po b/po/es.po index 8b77e3a99c..e6f7702f31 100644 --- a/po/es.po +++ b/po/es.po @@ -9541,6 +9541,9 @@ msgid "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" +"Antes de cambiar una configuración asegúrese de entender lo que está " +"cambiando (leyendo la documentación) y cómo revertir el cambio. Ajustes " +"incorrectos pueden tener un gran efecto negativo en performance." #: server_status.php:814 msgid "" From 9bc007dac24878cd703b2dcadf8e69b83be61f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:50:42 +0200 Subject: [PATCH 102/188] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e6f7702f31..e2c5cd229f 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:49+0200\n" +"PO-Revision-Date: 2011-08-15 23:50+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9551,6 +9551,9 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" +"La mejor forma de ajustar el sistema sería cambiar sólo una configuración a " +"la vez, observar y medir la base de datos, y revertir el cambio si no hubo " +"una mejora diferenciable." #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:836 From 7cf00eafb6cda685b1aeda7adeb71406ddcf7284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:51:02 +0200 Subject: [PATCH 103/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index e2c5cd229f..3485f16433 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:50+0200\n" +"PO-Revision-Date: 2011-08-15 23:51+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -10435,10 +10435,9 @@ msgstr "" "utilizar las funcionalidades para graficación del servidor." #: server_status.php:1507 -#, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "Pausar monitorización" +msgstr "Usando el monitorizador:" #: server_status.php:1509 #, fuzzy From eb84a4d36430f149e9385efb52776da5e0b2e2fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:51:27 +0200 Subject: [PATCH 104/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 3485f16433..50807f73c1 100644 --- a/po/es.po +++ b/po/es.po @@ -10437,7 +10437,7 @@ msgstr "" #: server_status.php:1507 #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "Usando el monitorizador:" +msgstr "Utilizando el monitorizador:" #: server_status.php:1509 #, fuzzy From d0bfd1762a167d60b039dbcdc59d96560f7a69a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:51:52 +0200 Subject: [PATCH 105/188] Translation update done using Pootle. --- po/es.po | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/po/es.po b/po/es.po index 50807f73c1..5cd9e04c5a 100644 --- a/po/es.po +++ b/po/es.po @@ -10440,7 +10440,6 @@ msgid "Using the monitor:" msgstr "Utilizando el monitorizador:" #: server_status.php:1509 -#, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " #| "'Start monitor' your browser will refresh all displayed charts in a " @@ -10457,16 +10456,11 @@ msgid "" "change the refresh rate under 'Settings', or remove any chart using the cog " "icon on each respective chart." msgstr "" -"Utilizando el monitorizador:
¡Ya está listo! Una vez que pulse " -"en 'Iniciar monitorización' el navegador actualizará a intervalos regulares " -"todos los gráficos mostrados. Puede agregar gráficos y cambiar la velocidad " -"de actualización en la sección 'Configuración' o eliminar cualquier gráfico " -"utilizando el icono de rueda dentada en cada gráfico.

Para mostrar las " -"consultas de los registros, seleccione el intervalo de tiempo " -"correspondiente en cualquier gráfico manteniendo pulsado el botón izquierdo " -"y arrastrando sobre el gráfico. Una vez confirmado, esto cargará una tabla " -"de consultas agrupadas donde podrá pulsar en cualquier sentencia SELECT para " -"analizarla.

" +"¡Ya está listo! Una vez que pulse en 'Iniciar monitorización' el navegador " +"actualizará a intervalos regulares todos los gráficos mostrados. Puede " +"agregar gráficos y cambiar la velocidad de actualización en la sección " +"'Configuración' o eliminar cualquier gráfico utilizando el icono de rueda " +"dentada en cada gráfico." #: server_status.php:1511 #, fuzzy From 57e5710ab08eb8e36ec1f43f2f33ec64a116cfaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:52:28 +0200 Subject: [PATCH 106/188] Translation update done using Pootle. --- po/es.po | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/po/es.po b/po/es.po index 5cd9e04c5a..fd57651016 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:51+0200\n" +"PO-Revision-Date: 2011-08-15 23:52+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -10463,7 +10463,6 @@ msgstr "" "dentada en cada gráfico." #: server_status.php:1511 -#, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " #| "'Start monitor' your browser will refresh all displayed charts in a " @@ -10480,16 +10479,11 @@ msgid "" "confirmed, this will load a table of grouped queries, there you may click on " "any occuring SELECT statements to further analyze them." msgstr "" -"Utilizando el monitorizador:
¡Ya está listo! Una vez que pulse " -"en 'Iniciar monitorización' el navegador actualizará a intervalos regulares " -"todos los gráficos mostrados. Puede agregar gráficos y cambiar la velocidad " -"de actualización en la sección 'Configuración' o eliminar cualquier gráfico " -"utilizando el icono de rueda dentada en cada gráfico.

Para mostrar las " -"consultas de los registros, seleccione el intervalo de tiempo " -"correspondiente en cualquier gráfico manteniendo pulsado el botón izquierdo " -"y arrastrando sobre el gráfico. Una vez confirmado, esto cargará una tabla " -"de consultas agrupadas donde podrá pulsar en cualquier sentencia SELECT para " -"analizarla.

" +"Para mostrar las consultas de los registros, seleccione el intervalo de " +"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " +"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " +"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " +"SELECT para analizarla." #: server_status.php:1518 msgid "Please note:" From 8bd28ff6ccb5f022a512f5fb2dcff4ef28840e7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:52:40 +0200 Subject: [PATCH 107/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index fd57651016..0e6e90f8dc 100644 --- a/po/es.po +++ b/po/es.po @@ -10487,7 +10487,7 @@ msgstr "" #: server_status.php:1518 msgid "Please note:" -msgstr "" +msgstr "Notar que:" #: server_status.php:1520 #, fuzzy From ca4c4f37212357f4b6ea72172f0e5999d9048491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:52:54 +0200 Subject: [PATCH 108/188] Translation update done using Pootle. --- po/es.po | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/po/es.po b/po/es.po index 0e6e90f8dc..fcb2f53a40 100644 --- a/po/es.po +++ b/po/es.po @@ -10490,7 +10490,6 @@ msgid "Please note:" msgstr "Notar que:" #: server_status.php:1520 -#, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " #| "by 5-15%. Also be aware that generating statistics from the logs is a " @@ -10503,12 +10502,11 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Notar que: Activar «general_log» puede aumentar la carga en el " -"servidor hasta un 5-15%. También esté al tanto que generar estadísticas de " -"los registros es una tarea muy intensiva por lo que se recomienda " -"seleccionar un período de tiempo lo más pequeño posible y desactivar " -"«general_log» y vaciar sus tablas una vez que ya no se necesite " -"monitorizar. " +"Activar «general_log» puede aumentar la carga en el servidor hasta un 5-15%. " +"También esté al tanto que generar estadísticas de los registros es una " +"tarea muy intensiva por lo que se recomienda seleccionar un período de " +"tiempo lo más pequeño posible y desactivar «general_log» y vaciar sus tablas " +"una vez que ya no se necesite monitorizar. " #: server_status.php:1533 #, fuzzy From bcddf13c349e9ebb45be994166405af4e99a742a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:52:59 +0200 Subject: [PATCH 109/188] Translation update done using Pootle. --- po/tr.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index b2eedfc123..0431211a28 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:43+0200\n" +"PO-Revision-Date: 2011-08-15 23:52+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -4473,6 +4473,9 @@ msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" +"Bu yapılandırma \"table_uiprefs\" içinde sadece N (N = MaxTableUiprefs) en " +"yeni kayıtları tutuğumuzdan ve otomatik olarak eski kayıtları sildiğimizden " +"emin olur" #: libraries/config/messages.inc.php:399 #| msgid "Maximum number of tables displayed in table list" From b915ca4e1a1a441e002e6225f2064071ebf20777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:53:20 +0200 Subject: [PATCH 110/188] Translation update done using Pootle. --- po/es.po | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/po/es.po b/po/es.po index fcb2f53a40..6b9e2ca9c6 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:52+0200\n" +"PO-Revision-Date: 2011-08-15 23:53+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -10571,14 +10571,11 @@ msgid "Remove variable data in INSERT statements for better grouping" msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" #: server_status.php:1608 -#, fuzzy #| msgid "" #| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"

Elegir el registro del que deseagenerar estadísticas.

Los resultados " -"se agruparán por el texto de la consulta." +msgstr "Elegir el registro del que desea generar estadísticas." #: server_status.php:1610 msgid "Results are grouped by query text." From 00d50594bc64a283a94ec356d26c6bb9a9a948ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:53:27 +0200 Subject: [PATCH 111/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 6b9e2ca9c6..1e6d59d9ac 100644 --- a/po/es.po +++ b/po/es.po @@ -10579,7 +10579,7 @@ msgstr "Elegir el registro del que desea generar estadísticas." #: server_status.php:1610 msgid "Results are grouped by query text." -msgstr "" +msgstr "Los resultados se agruparán por el texto de la consulta." #: server_status.php:1615 msgid "Query analyzer" From b184d7db3673237edc04c141029472bcc3b5a566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:53:47 +0200 Subject: [PATCH 112/188] Translation update done using Pootle. --- po/es.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1e6d59d9ac..a69979977b 100644 --- a/po/es.po +++ b/po/es.po @@ -11742,10 +11742,11 @@ msgid "Create version" msgstr "Crear versión" #: tbl_zoom_select.php:140 -#, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\")" +msgstr "" +"Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas " +"distintas" #: tbl_zoom_select.php:151 #, fuzzy From 251a23f5760ac2f913fcab4e0c41d9745c363f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:54:12 +0200 Subject: [PATCH 113/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index a69979977b..33530744cd 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:53+0200\n" +"PO-Revision-Date: 2011-08-15 23:54+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11749,10 +11749,9 @@ msgstr "" "distintas" #: tbl_zoom_select.php:151 -#, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Ocultar criterio de búsqueda" +msgstr "Criterios de búsqueda adicionales" #: tbl_zoom_select.php:281 #, fuzzy From 2a9569b03c61b191d6c16215cb59e556ede1b926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:54:45 +0200 Subject: [PATCH 114/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 33530744cd..8d14ec6acf 100644 --- a/po/es.po +++ b/po/es.po @@ -11754,10 +11754,9 @@ msgid "Additional search criteria" msgstr "Criterios de búsqueda adicionales" #: tbl_zoom_select.php:281 -#, fuzzy #| msgid "Label" msgid "Data Label" -msgstr "Etiqueta" +msgstr "Etiqueta de datos" #: tbl_zoom_select.php:297 #, fuzzy From fe54f02a86e1bee15860d055c4ea01b37355f777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:54:49 +0200 Subject: [PATCH 115/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8d14ec6acf..35166ea967 100644 --- a/po/es.po +++ b/po/es.po @@ -11759,10 +11759,9 @@ msgid "Data Label" msgstr "Etiqueta de datos" #: tbl_zoom_select.php:297 -#, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" -msgstr "Máximo número de filas a mostrar" +msgstr "Máximo número de filas a graficar" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" From c1b2330ba5197b8696cc4c7d3adeb8a5833800e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:55:00 +0200 Subject: [PATCH 116/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 35166ea967..47c119cce5 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:54+0200\n" +"PO-Revision-Date: 2011-08-15 23:55+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11765,7 +11765,7 @@ msgstr "Máximo número de filas a graficar" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" -msgstr "" +msgstr "Navegar/editar los puntos" #: tbl_zoom_select.php:394 #, fuzzy From 73b44ccec89443fa62ea28d826f6bcd1b84c77a8 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:55:51 +0200 Subject: [PATCH 117/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0431211a28..218bd8f518 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:52+0200\n" +"PO-Revision-Date: 2011-08-15 23:55+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11565,7 +11565,7 @@ msgstr "Çizim için en fazla satır" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" -msgstr "" +msgstr "Noktalara gözat/düzenle" #: tbl_zoom_select.php:394 #| msgid "Control user" From 55a9bf49b9ddce7303a5ede19531b3e3089e488d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:56:25 +0200 Subject: [PATCH 118/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 47c119cce5..1882a7ba62 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:55+0200\n" +"PO-Revision-Date: 2011-08-15 23:56+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11768,10 +11768,9 @@ msgid "Browse/Edit the points" msgstr "Navegar/editar los puntos" #: tbl_zoom_select.php:394 -#, fuzzy #| msgid "Control user" msgid "How to use" -msgstr "Controlar al usuario" +msgstr "Forma de utilización" #: themes.php:28 msgid "Get more themes!" From 1ca8fc6ebe10292747fc8250122087d7772f03a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:56:38 +0200 Subject: [PATCH 119/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1882a7ba62..62cb987c53 100644 --- a/po/es.po +++ b/po/es.po @@ -11814,7 +11814,7 @@ msgstr "Cambiar el nombre de la vista a" #: po/advisory_rules.php:5 msgid "Uptime below one day" -msgstr "" +msgstr "Tiempo de actividad menor a un día" #: po/advisory_rules.php:6 msgid "Uptime is less than 1 day, performance tuning may not be accurate." From 42aa4ae93188094c8d1c4ab3f0f8784db95f455e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 15 Aug 2011 23:56:43 +0200 Subject: [PATCH 120/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 218bd8f518..e566c425d6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:55+0200\n" +"PO-Revision-Date: 2011-08-15 23:56+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11901,7 +11901,7 @@ msgstr "Sorgu önbelleği verimi (%)" #: po/advisory_rules.php:76 msgid "Query cache not running efficiently, it has a low hit rate." -msgstr "" +msgstr "Sorgu önbelleği verimli çalışmıyor, düşük tavan oranına sahip." #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." From f41d157c3665fe5b3986057469b65412711640b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:57:15 +0200 Subject: [PATCH 121/188] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 62cb987c53..f685234b2e 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:56+0200\n" +"PO-Revision-Date: 2011-08-15 23:57+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11819,6 +11819,8 @@ msgstr "Tiempo de actividad menor a un día" #: po/advisory_rules.php:6 msgid "Uptime is less than 1 day, performance tuning may not be accurate." msgstr "" +"El tiempo de actividad es menor a 1 día, los ajustes de performance puede no " +"ser precisos." #: po/advisory_rules.php:7 msgid "" From b5b2eb9714ecbd763107c85639a417a135d176f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:57:45 +0200 Subject: [PATCH 122/188] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index f685234b2e..77c5e7f6e9 100644 --- a/po/es.po +++ b/po/es.po @@ -11827,6 +11827,8 @@ msgid "" "To have more accurate averages it is recommended to let the server run for " "longer than a day before running this analyzer" msgstr "" +"Para conseguir promedios más precisos es recomendable dejar el servidor " +"ejecutando por más de un día antes de ejecutar el analizador" #: po/advisory_rules.php:8 #, php-format From 9411efad148e6c50bbc851280dad038bb977469b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:57:54 +0200 Subject: [PATCH 123/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 77c5e7f6e9..fa9d6286b8 100644 --- a/po/es.po +++ b/po/es.po @@ -11833,7 +11833,7 @@ msgstr "" #: po/advisory_rules.php:8 #, php-format msgid "The uptime is only %s" -msgstr "" +msgstr "El tiempo de actividad es sólo %s" #: po/advisory_rules.php:10 #, fuzzy From 1a96fb050cda09e5c3fc5985693fcc4ac74c8057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:58:28 +0200 Subject: [PATCH 124/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index fa9d6286b8..3c906b74f2 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:57+0200\n" +"PO-Revision-Date: 2011-08-15 23:58+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11836,10 +11836,9 @@ msgid "The uptime is only %s" msgstr "El tiempo de actividad es sólo %s" #: po/advisory_rules.php:10 -#, fuzzy #| msgid "Questions" msgid "Questions below 1,000" -msgstr "Preguntas" +msgstr "Menos de 1000 consultas" #: po/advisory_rules.php:11 msgid "" From bbfe5c5b5fc84f91e2ef432a0b394b9726270eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:58:47 +0200 Subject: [PATCH 125/188] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index 3c906b74f2..7f9b3cbdbb 100644 --- a/po/es.po +++ b/po/es.po @@ -11845,6 +11845,8 @@ msgid "" "Fewer than 1,000 questions have been run against this server. The " "recommendations may not be accurate." msgstr "" +"Se han ejecutado menos de 1000 consultas en este servidor. Las " +"recomendaciones pueden no ser precisas." #: po/advisory_rules.php:12 msgid "" From 331dd2edf6c300ccb0a896635920c940745e176d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:59:32 +0200 Subject: [PATCH 126/188] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 7f9b3cbdbb..b84c0db0ba 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:58+0200\n" +"PO-Revision-Date: 2011-08-15 23:59+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11853,6 +11853,8 @@ msgid "" "Let the server run for a longer time until it has executed a greater amount " "of queries." msgstr "" +"Espere más tiempo hasta que el servidor haya ejecutado una mayor cantidad de " +"consultas." #: po/advisory_rules.php:13 #, fuzzy, php-format From 998542e18d72710f704a419078f4af477308de06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:59:40 +0200 Subject: [PATCH 127/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b84c0db0ba..4a019677dd 100644 --- a/po/es.po +++ b/po/es.po @@ -11857,10 +11857,10 @@ msgstr "" "consultas." #: po/advisory_rules.php:13 -#, fuzzy, php-format +#, php-format #| msgid "Current connection" msgid "Current amount of Questions: %s" -msgstr "Conexión actual" +msgstr "Cantidad de consultas actuales: %s" #: po/advisory_rules.php:15 #, fuzzy From 676f94cda0de04b2878244a1f5e407de43b02e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 15 Aug 2011 23:59:51 +0200 Subject: [PATCH 128/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 4a019677dd..fd9664f57c 100644 --- a/po/es.po +++ b/po/es.po @@ -11863,10 +11863,9 @@ msgid "Current amount of Questions: %s" msgstr "Cantidad de consultas actuales: %s" #: po/advisory_rules.php:15 -#, fuzzy #| msgid "Show SQL queries" msgid "Percentage of slow queries" -msgstr "Mostrar las consultas SQL" +msgstr "Porcentajes de consultas lentas" #: po/advisory_rules.php:16 msgid "" From 2b69fcfe19526d713620086c108f97db7fcfc8b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:00:12 +0200 Subject: [PATCH 129/188] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index fd9664f57c..c1b4d7ab81 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:59+0200\n" +"PO-Revision-Date: 2011-08-16 00:00+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11870,7 +11870,7 @@ msgstr "Porcentajes de consultas lentas" #: po/advisory_rules.php:16 msgid "" "There is a lot of slow queries compared to the overall amount of Queries." -msgstr "" +msgstr "Hay muchas consultas lentas en comparación con el total de consultas." #: po/advisory_rules.php:17 po/advisory_rules.php:22 msgid "" From 3686e06808f9d6c9137583993cca34e11b513d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:01:32 +0200 Subject: [PATCH 130/188] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c1b4d7ab81..930f9614b7 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 00:00+0200\n" +"PO-Revision-Date: 2011-08-16 00:01+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11877,6 +11877,8 @@ msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" +"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen " +"en el registro de consultas lentas." #: po/advisory_rules.php:18 #, php-format From c234c7e1b6ad4dbfe4645c866e2bb18f99e054f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:02:04 +0200 Subject: [PATCH 131/188] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 930f9614b7..831e574222 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 00:01+0200\n" +"PO-Revision-Date: 2011-08-16 00:02+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11884,6 +11884,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" +"El porcentaje de consultas lentas debería de ser menor a 5%%, el valor " +"actual es %s%%." #: po/advisory_rules.php:20 #, fuzzy From f4bc7c053898d8b4c97cec684afacc6627479198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:02:26 +0200 Subject: [PATCH 132/188] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 831e574222..b9d042ff5a 100644 --- a/po/es.po +++ b/po/es.po @@ -11888,10 +11888,9 @@ msgstr "" "actual es %s%%." #: po/advisory_rules.php:20 -#, fuzzy #| msgid "Flush query cache" msgid "Slow query rate" -msgstr "Vaciar el cache de consultas" +msgstr "Porcentaje de consultas lentas" #: po/advisory_rules.php:21 msgid "" From 349b4ae3262910c650bc5d2fe3c98269b5d24a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:03:06 +0200 Subject: [PATCH 133/188] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b9d042ff5a..24d90b326f 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 00:02+0200\n" +"PO-Revision-Date: 2011-08-16 00:03+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11896,6 +11896,8 @@ msgstr "Porcentaje de consultas lentas" msgid "" "There is a high percentage of slow queries compared to the server uptime." msgstr "" +"Hay un gran cantidad de consultas lentas respecto del tiempo de actividad " +"del servidor." #: po/advisory_rules.php:23 #, php-format From 2ce54c97542e805fa168888200984f839fd51256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:03:15 +0200 Subject: [PATCH 134/188] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 24d90b326f..a28677e7aa 100644 --- a/po/es.po +++ b/po/es.po @@ -11890,7 +11890,7 @@ msgstr "" #: po/advisory_rules.php:20 #| msgid "Flush query cache" msgid "Slow query rate" -msgstr "Porcentaje de consultas lentas" +msgstr "Frecuencia de consultas lentas" #: po/advisory_rules.php:21 msgid "" From 6a6a9ea9c461ac1bd18171baa0c54b7606646137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:03:42 +0200 Subject: [PATCH 135/188] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index a28677e7aa..c42420aa48 100644 --- a/po/es.po +++ b/po/es.po @@ -11905,6 +11905,8 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" +"Hay una frecuencia de consultas lentas de %s por hora, debería de tener " +"menos de 1%% por hora." #: po/advisory_rules.php:25 #, fuzzy From 65e2d565909f168e35c340ee0565dc97ddaa812d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:04:18 +0200 Subject: [PATCH 136/188] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index c42420aa48..961a0e4260 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 00:03+0200\n" +"PO-Revision-Date: 2011-08-16 00:04+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11909,10 +11909,9 @@ msgstr "" "menos de 1%% por hora." #: po/advisory_rules.php:25 -#, fuzzy #| msgid "SQL queries" msgid "Long query time" -msgstr "Consultas SQL" +msgstr "Tiempo de consultas lentas" #: po/advisory_rules.php:26 msgid "" From e2eb8a28dad7d07ab24c84685d388d4b230a4f92 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:04:44 +0200 Subject: [PATCH 137/188] PMA_backquote is not needed for string literals --- db_tracking.php | 6 +++--- libraries/Tracker.class.php | 4 ++-- tbl_tracking.php | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/db_tracking.php b/db_tracking.php index df1106e83b..29d8cc85b1 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -67,9 +67,9 @@ require_once './libraries/db_links.inc.php'; $all_tables_query = ' SELECT table_name, MAX(version) as version FROM ' . PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) . '.' . PMA_backquote($GLOBALS['cfg']['Server']['tracking']) . - ' WHERE ' . PMA_backquote('db_name') . ' = \'' . PMA_sqlAddSlashes($_REQUEST['db']) . '\' ' . - ' GROUP BY '. PMA_backquote('table_name') . - ' ORDER BY '. PMA_backquote('table_name') .' ASC'; + ' WHERE db_name = \'' . PMA_sqlAddSlashes($_REQUEST['db']) . '\' ' . + ' GROUP BY table_name' . + ' ORDER BY table_name ASC'; $all_tables_result = PMA_query_as_controluser($all_tables_query); diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index 947044aa24..aa176eafb7 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -219,8 +219,8 @@ class PMA_Tracker $sql_query = " SELECT tracking_active FROM " . self::$pma_table . - " WHERE " . PMA_backquote('db_name') . " = '" . PMA_sqlAddSlashes($dbname) . "' " . - " AND " . PMA_backquote('table_name') . " = '" . PMA_sqlAddSlashes($tablename) . "' " . + " WHERE db_name = '" . PMA_sqlAddSlashes($dbname) . "' " . + " AND table_name = '" . PMA_sqlAddSlashes($tablename) . "' " . " ORDER BY version DESC"; $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); diff --git a/tbl_tracking.php b/tbl_tracking.php index 76ed16ab33..b601348ea4 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -575,8 +575,8 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) { $sql_query = " SELECT DISTINCT db_name, table_name FROM " . PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) . "." . PMA_backquote($GLOBALS['cfg']['Server']['tracking']) . - " WHERE " . PMA_backquote('db_name') . " = '" . PMA_sqlAddSlashes($GLOBALS['db']) . "' " . - " ORDER BY ". PMA_backquote('db_name') . ", " . PMA_backquote('table_name'); + " WHERE db_name = '" . PMA_sqlAddSlashes($GLOBALS['db']) . "' " . + " ORDER BY db_name, table_name"; $sql_result = PMA_query_as_controluser($sql_query); @@ -615,9 +615,9 @@ if (PMA_DBI_num_rows($sql_result) > 0) { $sql_query = " SELECT * FROM " . PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) . "." . PMA_backquote($GLOBALS['cfg']['Server']['tracking']) . - " WHERE " . PMA_backquote('db_name') . " = '" . PMA_sqlAddSlashes($_REQUEST['db']) . "' ". - " AND " . PMA_backquote('table_name') . " = '" . PMA_sqlAddSlashes($_REQUEST['table']) ."' ". - " ORDER BY ". PMA_backquote('version') . " DESC "; + " WHERE db_name = '" . PMA_sqlAddSlashes($_REQUEST['db']) . "' ". + " AND table_name = '" . PMA_sqlAddSlashes($_REQUEST['table']) ."' ". + " ORDER BY version DESC "; $sql_result = PMA_query_as_controluser($sql_query); From 4e715a2d0c361c46df9d831dbcfc0017f283e502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 00:04:48 +0200 Subject: [PATCH 138/188] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index 961a0e4260..d45f9bd820 100644 --- a/po/es.po +++ b/po/es.po @@ -11918,6 +11918,8 @@ msgid "" "long_query_time is set to 10 seconds or more, thus only slow queries that " "take above 10 seconds are logged." msgstr "" +"«long_query_time» está configurado a 10 segundos o más, por lo que sólo " +"aquellas consultas que tomen más 10 segundos serán registradas." #: po/advisory_rules.php:27 msgid "" From cc4743d396e4754d30a81458e4ecb4aca33fc9d0 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:05:26 +0200 Subject: [PATCH 139/188] 'comment' is not a reserved keyword, remove PMA_backquote --- libraries/Table.class.php | 4 ++-- libraries/import/docsql.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/Table.class.php b/libraries/Table.class.php index 512ca2e782..d018cd762f 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -910,7 +910,7 @@ class PMA_Table if ($GLOBALS['cfgRelation']['commwork']) { // Get all comments and MIME-Types for current table $comments_copy_query = 'SELECT - column_name, ' . PMA_backquote('comment') . ($GLOBALS['cfgRelation']['mimework'] ? ', mimetype, transformation, transformation_options' : '') . ' + column_name, comment' . ($GLOBALS['cfgRelation']['mimework'] ? ', mimetype, transformation, transformation_options' : '') . ' FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['column_info']) . ' WHERE db_name = \'' . PMA_sqlAddSlashes($source_db) . '\' AND @@ -920,7 +920,7 @@ class PMA_Table // Write every comment as new copied entry. [MIME] while ($comments_copy_row = PMA_DBI_fetch_assoc($comments_copy_rs)) { $new_comment_query = 'REPLACE INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['column_info']) - . ' (db_name, table_name, column_name, ' . PMA_backquote('comment') . ($GLOBALS['cfgRelation']['mimework'] ? ', mimetype, transformation, transformation_options' : '') . ') ' + . ' (db_name, table_name, column_name, comment' . ($GLOBALS['cfgRelation']['mimework'] ? ', mimetype, transformation, transformation_options' : '') . ') ' . ' VALUES(' . '\'' . PMA_sqlAddSlashes($target_db) . '\',' . '\'' . PMA_sqlAddSlashes($target_table) . '\',' diff --git a/libraries/import/docsql.php b/libraries/import/docsql.php index 4ba089a5ec..4710940c23 100644 --- a/libraries/import/docsql.php +++ b/libraries/import/docsql.php @@ -66,7 +66,7 @@ if ($data === true && !$error && !$timeout_passed) { $qry = ' INSERT INTO ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . ' - (db_name, table_name, column_name, ' . PMA_backquote('comment') . ') + (db_name, table_name, column_name, comment) VALUES ( \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\', \'' . PMA_sqlAddSlashes(trim($tab)) . '\', From 73485871c7770dcbe263dcb08aec54c18f70678b Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:05:51 +0200 Subject: [PATCH 140/188] PMA_backquote is not needed here --- libraries/schema/User_Schema.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php index aa17c4717b..5d925cc187 100644 --- a/libraries/schema/User_Schema.class.php +++ b/libraries/schema/User_Schema.class.php @@ -685,7 +685,7 @@ class PMA_User_Schema . ' FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['relation']) . ' WHERE master_db = \'' . $db . '\'' . ' GROUP BY master_table' - . ' ORDER BY ' . PMA_backquote('COUNT(master_table)') . ' DESC '; + . ' ORDER BY COUNT(master_table) DESC'; $master_tables_rs = PMA_query_as_controluser($master_tables, false, PMA_DBI_QUERY_STORE); if ($master_tables_rs && PMA_DBI_num_rows($master_tables_rs) > 0) { /* first put all the master tables at beginning From fd441451832312cb5c76c46be80d075f0e8fa435 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:07:57 +0200 Subject: [PATCH 141/188] Add missing PMA_sqlAddSlashes --- libraries/schema/User_Schema.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php index 5d925cc187..51694aaf6c 100644 --- a/libraries/schema/User_Schema.class.php +++ b/libraries/schema/User_Schema.class.php @@ -683,7 +683,7 @@ class PMA_User_Schema */ $master_tables = 'SELECT COUNT(master_table), master_table' . ' FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['relation']) - . ' WHERE master_db = \'' . $db . '\'' + . ' WHERE master_db = \'' . PMA_sqlAddSlashes($db) . '\'' . ' GROUP BY master_table' . ' ORDER BY COUNT(master_table) DESC'; $master_tables_rs = PMA_query_as_controluser($master_tables, false, PMA_DBI_QUERY_STORE); From 824fac0da5af56dbad589cebe47a1f3587d022fc Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:09:04 +0200 Subject: [PATCH 142/188] Import missing variable into method's scope --- libraries/schema/User_Schema.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php index 51694aaf6c..986efada4d 100644 --- a/libraries/schema/User_Schema.class.php +++ b/libraries/schema/User_Schema.class.php @@ -441,6 +441,7 @@ class PMA_User_Schema */ private function _deleteTables($db, $chpage, $tabExist) { + global $table; $_strtrans = ''; $_strname = ''; $shoot = false; From 3782a6c89b1ef507d6a777e68509870c7ac3020c Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:34:44 +0200 Subject: [PATCH 143/188] Remove JS function: getElement --- js/functions.js | 20 -------------------- libraries/schema/User_Schema.class.php | 16 ++++++++-------- 2 files changed, 8 insertions(+), 28 deletions(-) diff --git a/js/functions.js b/js/functions.js index ee83b8acfd..d1c554436c 100644 --- a/js/functions.js +++ b/js/functions.js @@ -902,26 +902,6 @@ function goToUrl(selObj, goToLocation) eval("document.location.href = '" + goToLocation + "pos=" + selObj.options[selObj.selectedIndex].value + "'"); } -/** - * getElement - */ -function getElement(e,f) -{ - if(document.layers){ - f=(f)?f:self; - if(f.document.layers[e]) { - return f.document.layers[e]; - } - for(W=0;W TableDragInit(); } function TableDragInit() { - myid = getElement('pdflayout'); + myid = $('#pdflayout')[0]; } From 553f6b2f9a037d89f573732ce2635823f20a5ddc Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:40:53 +0200 Subject: [PATCH 144/188] Fix comments --- libraries/Tracker.class.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index aa176eafb7..5d24b78b3d 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -254,7 +254,7 @@ class PMA_Tracker * @param string $tablename name of table * @param string $version version * @param string $tracking_set set of tracking statements - * @param string $is_view if table is a view + * @param bool $is_view if table is a view * * @return int result of version insertion */ @@ -469,11 +469,11 @@ class PMA_Tracker * * @static * - * @param string $dbname name of database - * @param string $tablename name of table - * @param string $version version - * @param string $type type of data(DDL || DML) - * @param string || array $new_data the new tracking data + * @param string $dbname name of database + * @param string $tablename name of table + * @param string $version version + * @param string $type type of data(DDL || DML) + * @param string|array $new_data the new tracking data * * @return bool result of change */ @@ -890,7 +890,6 @@ class PMA_Tracker /** * Analyzes a given SQL statement and saves tracking data. * - * * @static * @param string $query a SQL query */ @@ -898,7 +897,7 @@ class PMA_Tracker { // If query is marked as untouchable, leave if (strstr($query, "/*NOTRACK*/")) { - return false; + return; } if (! (substr($query, -1) == ';')) { @@ -912,7 +911,7 @@ class PMA_Tracker // $dbname can be empty, for example when coming from Synchronize // and this is a query for the remote server if (empty($dbname)) { - return false; + return; } // If we found a valid statement From 0fb5a8857c4b57dd1713a8f51114a4eb21e8ecf8 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 00:45:47 +0200 Subject: [PATCH 145/188] Fix div icon --- setup/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/styles.css b/setup/styles.css index 07979b429c..5ec7b16e8b 100644 --- a/setup/styles.css +++ b/setup/styles.css @@ -123,7 +123,7 @@ div.notice[id^=version_check] h4 { div.warning { border-color: #C00; background-color: #FFC; - background-image: url(../themes/original/img/s_warn.png); + background-image: url(../themes/original/img/s_notice.png); } div.warning h4 { From 1ea24eb0836b303bda715b4f91cfd34f8a1d4287 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 01:04:51 +0200 Subject: [PATCH 146/188] Better variable name --- libraries/config/FormDisplay.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/config/FormDisplay.class.php b/libraries/config/FormDisplay.class.php index 37258787a2..e3010fcf2e 100644 --- a/libraries/config/FormDisplay.class.php +++ b/libraries/config/FormDisplay.class.php @@ -467,10 +467,10 @@ class FormDisplay } $this->errors = array(); - foreach ($forms as $form) { + foreach ($forms as $form_name) { /* @var $form Form */ - if (isset($this->forms[$form])) { - $form = $this->forms[$form]; + if (isset($this->forms[$form_name])) { + $form = $this->forms[$form_name]; } else { continue; } From 6b65e1943b0dabfb6d3b142e5029392d6d728e45 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 08:14:42 +0200 Subject: [PATCH 147/188] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index e566c425d6..8c6afa60a6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-15 23:56+0200\n" +"PO-Revision-Date: 2011-08-16 08:14+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9377,6 +9377,8 @@ msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" +"Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu " +"değişkenlerinde öneriler sağlayabilir." #: server_status.php:810 msgid "" From b1061a8c9886d5ddb5ee5679376265b1530b1145 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 08:19:16 +0200 Subject: [PATCH 148/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 8c6afa60a6..36ad8bf433 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 08:14+0200\n" +"PO-Revision-Date: 2011-08-16 08:19+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12008,7 +12008,7 @@ msgstr "" #: po/advisory_rules.php:98 #, php-format msgid "Current query cache size: %s" -msgstr "" +msgstr "Şu anki sorgu önbelleği boyutu: %s" #: po/advisory_rules.php:100 msgid "Query cache min result size" From cf7a73e9d3d265e889868462ab6e595d5e53040f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 08:19:42 +0200 Subject: [PATCH 149/188] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 36ad8bf433..9bdfed7bf4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -12033,7 +12033,7 @@ msgstr "" #: po/advisory_rules.php:103 msgid "query_cache_limit is set to 1 MiB" -msgstr "" +msgstr "query_cache_limit 1 MiB'a ayarlı" #: po/advisory_rules.php:105 msgid "Percentage of sorts that cause temporary tables" From d06ae900737cc6f471f4eafe2159fd85cc9aab0f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 08:21:30 +0200 Subject: [PATCH 150/188] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9bdfed7bf4..b0ec0df2bd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 08:19+0200\n" +"PO-Revision-Date: 2011-08-16 08:21+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12072,7 +12072,7 @@ msgstr "Satırları sırala" #: po/advisory_rules.php:116 msgid "There are lots of rows being sorted." -msgstr "" +msgstr "Birçok sıralanmış satır var." #: po/advisory_rules.php:117 msgid "" From b0b96cb49ed7ac5475d8e3f3676619d0bf46bf26 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:02:40 +0200 Subject: [PATCH 151/188] Translation update done using Pootle. --- po/ja.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index c84ddfa8ad..742bb6b3ee 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-13 12:52+0200\n" +"PO-Revision-Date: 2011-08-16 09:02+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11699,6 +11699,8 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" +"{log_slow_queries} " +"を「ON」に設定することで、遅いクエリのログへの記録が有効になります。これは、パフォーマンスの悪いクエリの切り分けに役立つでしょう。" #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" From af0eee10175f8f4370495bb69182f5384e42c63b Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:04:38 +0200 Subject: [PATCH 152/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 742bb6b3ee..7e0d38ed70 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:02+0200\n" +"PO-Revision-Date: 2011-08-16 09:04+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11704,7 +11704,7 @@ msgstr "" #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" -msgstr "" +msgstr "log_slow_queries が「OFF」に設定されています。" #: po/advisory_rules.php:35 #, fuzzy From 7b34965e21408f3189f07cf20eac2d475a952bdd Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:21:37 +0200 Subject: [PATCH 153/188] Translation update done using Pootle. --- po/ja.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 7e0d38ed70..b6caff9257 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:04+0200\n" +"PO-Revision-Date: 2011-08-16 09:21+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12116,6 +12116,8 @@ msgid "" "scan, including join queries that do not use indexes. Add indexes where " "applicable." msgstr "" +"多くのクエリがインデックスを使用しない結合クエリを含んでいるために、結果のソート、テーブルの全スキャン、のいずれかもしくは両方を必要としていることを示し" +"ています。該当箇所にインデックスを追加してください。" #: po/advisory_rules.php:133 #, php-format From 1dd44c2f752cab5b7f286e20f9a8e0e0d89e55bb Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:27:46 +0200 Subject: [PATCH 154/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index b6caff9257..abd056b3b4 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:21+0200\n" +"PO-Revision-Date: 2011-08-16 09:27+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12108,7 +12108,7 @@ msgstr "" #: po/advisory_rules.php:131 msgid "The rate of reading data from a fixed position is high." -msgstr "" +msgstr "決まった位置のデータを読み込む割合が高いです。" #: po/advisory_rules.php:132 msgid "" From 33309958c06651a1970437d1efab4a602edd2576 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:43:07 +0200 Subject: [PATCH 155/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index abd056b3b4..9ee17741d4 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:27+0200\n" +"PO-Revision-Date: 2011-08-16 09:43+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12124,7 +12124,7 @@ msgstr "" msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " "per hour" -msgstr "" +msgstr "決まった位置を読み込む割合の平均:%s。推奨値は、1 時間当たり 1 未満です。" #: po/advisory_rules.php:135 #, fuzzy From 23fc2ed3d1ee938a9710776142cef33f64b152d9 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:48:29 +0200 Subject: [PATCH 156/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 9ee17741d4..3ec2a83389 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:43+0200\n" +"PO-Revision-Date: 2011-08-16 09:48+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12142,7 +12142,7 @@ msgstr "テーブルの行リンクを表示する場所" msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." -msgstr "" +msgstr "多くのクエリがテーブルの全スキャンを行っていることを示しています。該当箇所にインデックスを追加してください。" #: po/advisory_rules.php:138 #, php-format From 99eccb59a3de686fa8ffcfb06090220e4e888b9f Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:51:23 +0200 Subject: [PATCH 157/188] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 3ec2a83389..a6dee5f340 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:48+0200\n" +"PO-Revision-Date: 2011-08-16 09:51+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12133,10 +12133,9 @@ msgid "Rate of reading next table row" msgstr "テーブルの行リンクを表示する場所" #: po/advisory_rules.php:136 -#, fuzzy #| msgid "Where to show the table row links" msgid "The rate of reading the next table row is high." -msgstr "テーブルの行リンクを表示する場所" +msgstr "テーブルの次行を読み込む割合が高いです。" #: po/advisory_rules.php:137 msgid "" From daa97248212fd920ddfcb18127587c3abc94a000 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:54:28 +0200 Subject: [PATCH 158/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index a6dee5f340..492542150e 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:51+0200\n" +"PO-Revision-Date: 2011-08-16 09:54+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12147,7 +12147,7 @@ msgstr "多くのクエリがテーブルの全スキャンを行っているこ #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -msgstr "" +msgstr "テーブルの次行を読み込む割合:%s。推奨値は、1 時間当たり 1 未満です。" #: po/advisory_rules.php:140 msgid "tmp_table_size vs. max_heap_table_size" From 497b50a3b062a36a5abe384570b206ef6260318c Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:54:44 +0200 Subject: [PATCH 159/188] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 492542150e..871573fcf7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -12127,10 +12127,9 @@ msgid "" msgstr "決まった位置を読み込む割合の平均:%s。推奨値は、1 時間当たり 1 未満です。" #: po/advisory_rules.php:135 -#, fuzzy #| msgid "Where to show the table row links" msgid "Rate of reading next table row" -msgstr "テーブルの行リンクを表示する場所" +msgstr "テーブルの次行を読み込む割合" #: po/advisory_rules.php:136 #| msgid "Where to show the table row links" From 01afe667edcdba14fca063e92d8d28ab71d6d92b Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 09:55:48 +0200 Subject: [PATCH 160/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 871573fcf7..2fb47a99da 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:54+0200\n" +"PO-Revision-Date: 2011-08-16 09:55+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12104,7 +12104,7 @@ msgstr "" #: po/advisory_rules.php:130 msgid "Rate of reading fixed position" -msgstr "" +msgstr "決まった位置を読み込む割合" #: po/advisory_rules.php:131 msgid "The rate of reading data from a fixed position is high." From bbdd25479fabaf08379a62e08f53ae8195ba4a42 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:01:51 +0200 Subject: [PATCH 161/188] Translation update done using Pootle. --- po/ja.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 2fb47a99da..8941d61098 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 09:55+0200\n" +"PO-Revision-Date: 2011-08-16 10:01+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12337,6 +12337,8 @@ msgid "" "Consider increasing {open_files_limit}, and check the error log when " "restarting after changing open_files_limit." msgstr "" +"{open_files_limit} 増やすことを検討してください。open_files_limit " +"を変更して再起動した場合は、エラーログを確認するようにしてください。" #: po/advisory_rules.php:183 #, php-format From 50535720d145fbaf552604d157c1cdbc111b73c4 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:03:24 +0200 Subject: [PATCH 162/188] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 8941d61098..370a6c94dd 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:01+0200\n" +"PO-Revision-Date: 2011-08-16 10:03+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12304,10 +12304,9 @@ msgid "Rate of table open" msgstr "テーブルを作成" #: po/advisory_rules.php:176 -#, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." -msgstr "現在保留されている書き込みの数" +msgstr "テーブルを開く割合が高いです。" #: po/advisory_rules.php:177 msgid "" From f6acd4cdbf92406bb2214373a3993f6bc95a0224 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:03:41 +0200 Subject: [PATCH 163/188] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 370a6c94dd..6de9ac8c63 100644 --- a/po/ja.po +++ b/po/ja.po @@ -12298,10 +12298,9 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:175 -#, fuzzy #| msgid "Create table" msgid "Rate of table open" -msgstr "テーブルを作成" +msgstr "テーブルを開く割合" #: po/advisory_rules.php:176 #| msgid "The current number of pending writes." From 17200698171fc8508d4eca9a558e7a288df5c9a2 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:06:17 +0200 Subject: [PATCH 164/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 6de9ac8c63..f2c3400625 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:03+0200\n" +"PO-Revision-Date: 2011-08-16 10:06+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12316,7 +12316,7 @@ msgstr "" #: po/advisory_rules.php:178 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" +msgstr "テーブルを開く割合: %s。推奨値は 1 時間当たり 10 未満です。" #: po/advisory_rules.php:180 #, fuzzy From e37a6fff77ad4659cbf929458a15afd5dcce6f8c Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:07:42 +0200 Subject: [PATCH 165/188] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index f2c3400625..3ef04a0b04 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:06+0200\n" +"PO-Revision-Date: 2011-08-16 10:07+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12345,10 +12345,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:185 -#, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" -msgstr "インポートするファイルの形式" +msgstr "ファイルを開く割合" #: po/advisory_rules.php:186 #, fuzzy From 07b347d7c7de1ec5a70cd08c59c6feb3d5ed3dc6 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:08:01 +0200 Subject: [PATCH 166/188] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 3ef04a0b04..11dca18f97 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:07+0200\n" +"PO-Revision-Date: 2011-08-16 10:08+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12350,10 +12350,9 @@ msgid "Rate of open files" msgstr "ファイルを開く割合" #: po/advisory_rules.php:186 -#, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." -msgstr "保留中のログファイルへの fsync 回数" +msgstr "ファイルを開く割合が高いです。" #: po/advisory_rules.php:188 #, php-format From 412f90c158d9e496d9e48c4bbe0ec9b6332413ec Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:08:39 +0200 Subject: [PATCH 167/188] Translation update done using Pootle. --- po/ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 11dca18f97..bbe5051561 100644 --- a/po/ja.po +++ b/po/ja.po @@ -12357,7 +12357,7 @@ msgstr "ファイルを開く割合が高いです。" #: po/advisory_rules.php:188 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" +msgstr "ファイルを開く割合: %s。推奨値は 1 時間当たり 5 未満です。" #: po/advisory_rules.php:190 #, fuzzy, php-format From 7bda0bb6128aff85a4d21162c545cfacc50d6a43 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:11:06 +0200 Subject: [PATCH 168/188] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index bbe5051561..544a15208a 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:08+0200\n" +"PO-Revision-Date: 2011-08-16 10:11+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12390,10 +12390,9 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" #: po/advisory_rules.php:200 -#, fuzzy #| msgid "Key cache" msgid "Thread cache" -msgstr "キーキャッシュ" +msgstr "スレッドキャッシュ" #: po/advisory_rules.php:201 msgid "" From 11fe8ad53b40ae1014d5595beafbb098f3515021 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:12:21 +0200 Subject: [PATCH 169/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 544a15208a..c9b82625a1 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:11+0200\n" +"PO-Revision-Date: 2011-08-16 10:12+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12406,7 +12406,7 @@ msgstr "" #: po/advisory_rules.php:203 msgid "The thread cache is set to 0" -msgstr "" +msgstr "スレッドキャッシュは 0 に設定されています。" #: po/advisory_rules.php:205 #, fuzzy, php-format From 3258ea16899891b0387d151904a3398e2e8ab952 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:19:29 +0200 Subject: [PATCH 170/188] Translation update done using Pootle. --- po/ja.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index c9b82625a1..78f1a38c6f 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:12+0200\n" +"PO-Revision-Date: 2011-08-16 10:19+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12312,6 +12312,8 @@ msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." msgstr "" +"テーブルを開くことは、コストがかかるディスクへの入出力を必要とします。{table_open_cache} " +"大きくすることで、これを緩和できることがあります。" #: po/advisory_rules.php:178 #, php-format From 8164ab6f9ed21d029cf4aae59d62bdc69da99a20 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:21:50 +0200 Subject: [PATCH 171/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 78f1a38c6f..c4aef2b37b 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:19+0200\n" +"PO-Revision-Date: 2011-08-16 10:21+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12242,7 +12242,7 @@ msgstr "" #: po/advisory_rules.php:158 msgid "key_buffer_size is 0" -msgstr "" +msgstr "key_buffer_size は 0 です。" #: po/advisory_rules.php:160 #, fuzzy, php-format From 28efbb60e679c11fa7b87872bdfdecbadeedc147 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:22:56 +0200 Subject: [PATCH 172/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index c4aef2b37b..7825dc0c9e 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:21+0200\n" +"PO-Revision-Date: 2011-08-16 10:22+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11994,7 +11994,7 @@ msgstr "" #: po/advisory_rules.php:103 msgid "query_cache_limit is set to 1 MiB" -msgstr "" +msgstr "query_cache_limit は 1 MiB に設定されています。" #: po/advisory_rules.php:105 #, fuzzy From be80ee7bbaa8d4d2965dd83529fe87cb002527a9 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:24:32 +0200 Subject: [PATCH 173/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 7825dc0c9e..c98329b841 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:22+0200\n" +"PO-Revision-Date: 2011-08-16 10:24+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11826,7 +11826,7 @@ msgstr "" #: po/advisory_rules.php:68 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" -msgstr "" +msgstr "query_cache_size が 0 に設定されているか、query_cache_type が「OFF」に設定されています。" #: po/advisory_rules.php:71 msgid "Suboptimal caching method." From c7516966519b1190f88a8772f05ed2ac5f35299b Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:38:50 +0200 Subject: [PATCH 174/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index c98329b841..abb76226c2 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:24+0200\n" +"PO-Revision-Date: 2011-08-16 10:38+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11614,7 +11614,7 @@ msgstr "" msgid "" "Let the server run for a longer time until it has executed a greater amount " "of queries." -msgstr "" +msgstr "実行されたクエリが十分な量になるまで、長時間サーバを稼動させたほうがいいでしょう。" #: po/advisory_rules.php:13 #, php-format From 8d58e981055372c39b393bc05968da6f59d7afaf Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 10:42:12 +0200 Subject: [PATCH 175/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index abb76226c2..6d73cb1c7d 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:38+0200\n" +"PO-Revision-Date: 2011-08-16 10:42+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11596,7 +11596,7 @@ msgstr "" #: po/advisory_rules.php:8 #, php-format msgid "The uptime is only %s" -msgstr "" +msgstr "%s しか稼動していません。" #: po/advisory_rules.php:10 msgid "Questions below 1,000" From 28f5ec80f398758ef21746fd8d57aca60efabfc6 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 11:21:53 +0200 Subject: [PATCH 176/188] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 6d73cb1c7d..546d556e64 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@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 10:42+0200\n" +"PO-Revision-Date: 2011-08-16 11:21+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11650,7 +11650,7 @@ msgstr "遅いクエリの割合" #: po/advisory_rules.php:21 msgid "" "There is a high percentage of slow queries compared to the server uptime." -msgstr "遅いクエリの割合が高い場合は、サーバの稼働時間と比較してあります。" +msgstr "遅いクエリの割合が高いので、サーバの稼働時間と比較してあります。" #: po/advisory_rules.php:23 #, php-format From 5bef74287dce3e09f072c441112dcc872c73752e Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Tue, 16 Aug 2011 13:13:43 +0300 Subject: [PATCH 177/188] Run monitor when tab is focused --- js/server_status_monitor.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/server_status_monitor.js b/js/server_status_monitor.js index f8a179d9f7..7ac2498810 100644 --- a/js/server_status_monitor.js +++ b/js/server_status_monitor.js @@ -1869,4 +1869,9 @@ $(function() { $('a[href="#clearMonitorConfig"]').show(); } +}); + +// Run the monitor once loaded +$(function() { + $('a[href="#pauseCharts"]').trigger('click'); }); \ No newline at end of file From 63342fdf4a36b1c7282bcf3cc90f31ad61687953 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Tue, 16 Aug 2011 13:14:17 +0300 Subject: [PATCH 178/188] Hide js feature elements when js is disabled --- js/server_status.js | 8 ++++---- themes/original/css/theme_right.css.php | 3 +++ themes/pmahomme/css/theme_right.css.php | 3 +++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/js/server_status.js b/js/server_status.js index 870f9b1205..bcb25b8f90 100644 --- a/js/server_status.js +++ b/js/server_status.js @@ -15,6 +15,9 @@ // Add a tablesorter parser to properly handle thousands seperated numbers and SI prefixes $(function() { + // Show all javascript related parts of the page + $('.jsfeature').show(); + jQuery.tablesorter.addParser({ id: "fancyNumber", is: function(s) { @@ -110,7 +113,7 @@ $(function() { menuResize(); // Load Server status monitor if (ui.tab.hash == '#statustabs_charting' && ! monitorLoaded) { - $('div#statustabs_charting').append( + $('div#statustabs_charting').append( //PMA_messages['strLoadingMonitor'] + ' ' + '' ); @@ -144,9 +147,6 @@ $(function() { tabStatus[$(this).attr('id')] = 'static'; }); - // Display button links - $('div.buttonlinks').show(); - // Handles refresh rate changing $('.buttonlinks select').change(function() { var chart = tabChart[$(this).parents('div.ui-tabs-panel').attr('id')]; diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 81d01de4a9..83590f927d 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1126,6 +1126,9 @@ img.sortableIcon { .buttonlinks { float: ; white-space: nowrap; +} + +.jsfeature { display: none; /* Made visible with js */ } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 3cd5dc2ce2..805041939e 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1348,6 +1348,9 @@ img.sortableIcon { .buttonlinks { float: ; white-space: nowrap; +} + +.jsfeature { display: none; /* Made visible with js */ } From 32724b30773492dba6c1bc5fb3a30589042eca6c Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Tue, 16 Aug 2011 13:14:48 +0300 Subject: [PATCH 179/188] Replace external advisory urls with url.php?url=sdf&token=... --- libraries/advisor.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/advisor.class.php b/libraries/advisor.class.php index 5d2ed60132..18c447db7f 100644 --- a/libraries/advisor.class.php +++ b/libraries/advisor.class.php @@ -129,7 +129,7 @@ class Advisor // Replaces external Links with PMA_linkURL() generated links $rule['recommendation'] = preg_replace( '#href=("|\')(https?://[^\1]+)\1#ie', - '\'href="\' . PMA_linkURL("\2") . \'"\'', + '\'href="url.php?url=\' . urlencode("\2") . \'&token='.$_SESSION[' PMA_token '].'"\'', $rule['recommendation'] ); break; From 2a54778c3a45b77f0efd72db872c11c2666e70b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 16 Aug 2011 12:31:01 +0200 Subject: [PATCH 180/188] Revert "Replace external advisory urls with url.php?url=sdf&token=..." This reverts commit 32724b30773492dba6c1bc5fb3a30589042eca6c. --- libraries/Advisor.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index 97298e21ad..bf4fd41b73 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -151,7 +151,7 @@ class Advisor // Replaces external Links with PMA_linkURL() generated links $rule['recommendation'] = preg_replace( '#href=("|\')(https?://[^\1]+)\1#ie', - '\'href="url.php?url=\' . urlencode("\2") . \'&token='.$_SESSION[' PMA_token '].'"\'', + '\'href="\' . PMA_linkURL("\2") . \'"\'', $rule['recommendation'] ); break; From 39b0f4d34bff1815ff37241ea4c47698e6d4f935 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Tue, 16 Aug 2011 12:35:43 +0100 Subject: [PATCH 181/188] Fixed wrong destination page on "Drop Routine" action --- libraries/rte/rte_list.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/rte/rte_list.lib.php b/libraries/rte/rte_list.lib.php index 3b6177dbbd..01af4ced17 100644 --- a/libraries/rte/rte_list.lib.php +++ b/libraries/rte/rte_list.lib.php @@ -188,7 +188,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') . ' href="sql.php?' . $url_query . '&sql_query=' . urlencode($sql_drop) - . '&goto=db_events.php' . urlencode("?db={$db}") + . '&goto=db_routines.php' . urlencode("?db={$db}") . '" >' . $titles['Drop'] . "
\n"; } else { $retval .= " {$titles['NoDrop']}\n"; From 4e4456e9b87720ea9e1c426e9efc381356b68c3d Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Tue, 16 Aug 2011 12:36:38 +0100 Subject: [PATCH 182/188] Fixed wrong permission check for "Drop Routine" action --- libraries/rte/rte_list.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/rte/rte_list.lib.php b/libraries/rte/rte_list.lib.php index 01af4ced17..c39fd45143 100644 --- a/libraries/rte/rte_list.lib.php +++ b/libraries/rte/rte_list.lib.php @@ -183,7 +183,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') . '">' . $titles['Export'] . "\n"; $retval .= " \n"; $retval .= " \n"; - if (PMA_currentUserHasPrivilege('EVENT', $db)) { + if (PMA_currentUserHasPrivilege('ALTER ROUTINE', $db)) { $retval .= ' Date: Tue, 16 Aug 2011 14:30:46 +0200 Subject: [PATCH 185/188] Add some missing @return tags in tests --- test/libraries/common/PMA_expandUserString_test.php | 2 ++ test/libraries/common/PMA_extractFieldSpec_test.php | 2 ++ .../common/PMA_foreignKeySupported_test.php | 2 ++ .../common/PMA_formatNumberByteDown_test.php | 5 ++++- .../common/PMA_localisedDateTimespan_test.php | 5 ++++- test/libraries/common/PMA_printableBitValue_test.php | 3 ++- test/libraries/common/PMA_quoting_slashing_test.php | 6 ++++++ test/libraries/common/PMA_stringOperations_test.php | 12 ++++++++---- 8 files changed, 30 insertions(+), 7 deletions(-) diff --git a/test/libraries/common/PMA_expandUserString_test.php b/test/libraries/common/PMA_expandUserString_test.php index 748ddfe9f8..39cc66409e 100644 --- a/test/libraries/common/PMA_expandUserString_test.php +++ b/test/libraries/common/PMA_expandUserString_test.php @@ -59,6 +59,8 @@ class PMA_expandUserString_test extends PHPUnit_Extensions_OutputTestCase /** * Data provider + * + * @return array */ public function provider() { diff --git a/test/libraries/common/PMA_extractFieldSpec_test.php b/test/libraries/common/PMA_extractFieldSpec_test.php index ab789f48bc..eeb79c4cd0 100644 --- a/test/libraries/common/PMA_extractFieldSpec_test.php +++ b/test/libraries/common/PMA_extractFieldSpec_test.php @@ -30,6 +30,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Extensions_OutputTestCase /** * Data provider + * + * @return array */ public function provider() { diff --git a/test/libraries/common/PMA_foreignKeySupported_test.php b/test/libraries/common/PMA_foreignKeySupported_test.php index e0ebd2e8d5..f9c30499d1 100644 --- a/test/libraries/common/PMA_foreignKeySupported_test.php +++ b/test/libraries/common/PMA_foreignKeySupported_test.php @@ -17,6 +17,8 @@ class PMA_foreignKeySupported_test extends PHPUnit_Framework_TestCase { /** * data provider for foreign key supported test + * + * @return array */ public function foreignkeySupportedDataProvider() { return array( diff --git a/test/libraries/common/PMA_formatNumberByteDown_test.php b/test/libraries/common/PMA_formatNumberByteDown_test.php index f0265c6233..18ab8ba96d 100644 --- a/test/libraries/common/PMA_formatNumberByteDown_test.php +++ b/test/libraries/common/PMA_formatNumberByteDown_test.php @@ -47,8 +47,9 @@ class PMA_formatNumberByteDown_test extends PHPUnit_Framework_TestCase /** * format number data provider + * + * @return array */ - public function formatNumberDataProvider() { return array( array(10, 2, 2, '10 '), @@ -72,6 +73,8 @@ class PMA_formatNumberByteDown_test extends PHPUnit_Framework_TestCase /** * format byte down data provider + * + * @return array */ public function formatByteDownDataProvider() { return array( diff --git a/test/libraries/common/PMA_localisedDateTimespan_test.php b/test/libraries/common/PMA_localisedDateTimespan_test.php index 92f980cc87..4ed29093e3 100644 --- a/test/libraries/common/PMA_localisedDateTimespan_test.php +++ b/test/libraries/common/PMA_localisedDateTimespan_test.php @@ -54,6 +54,8 @@ class PMA_localisedDateTimespan_test extends PHPUnit_Framework_TestCase /** * data provider for localised date test + * + * @return array */ public function localisedDateDataProvider() { return array( @@ -72,8 +74,9 @@ class PMA_localisedDateTimespan_test extends PHPUnit_Framework_TestCase /** * data provider for localised timestamp test + * + * @return array */ - public function timespanFormatDataProvider() { return array( array(1258, '0 days, 0 hours, 20 minutes and 58 seconds'), diff --git a/test/libraries/common/PMA_printableBitValue_test.php b/test/libraries/common/PMA_printableBitValue_test.php index d211981d67..20d4f4ff1f 100644 --- a/test/libraries/common/PMA_printableBitValue_test.php +++ b/test/libraries/common/PMA_printableBitValue_test.php @@ -18,8 +18,9 @@ class PMA_printableBitValue_test extends PHPUnit_Framework_TestCase /** * data provider for printable bit value test + * + * @return array */ - public function printableBitValueDataProvider() { return array( array('testtest', 64, '0111010001100101011100110111010001110100011001010111001101110100'), diff --git a/test/libraries/common/PMA_quoting_slashing_test.php b/test/libraries/common/PMA_quoting_slashing_test.php index 4ebecc0867..d4e7104bdf 100644 --- a/test/libraries/common/PMA_quoting_slashing_test.php +++ b/test/libraries/common/PMA_quoting_slashing_test.php @@ -35,6 +35,8 @@ class PMA_quoting_slashing_test extends PHPUnit_Framework_TestCase /** * data provider for unQuote test + * + * @return array */ public function unQuoteProvider() { return array( @@ -55,6 +57,8 @@ class PMA_quoting_slashing_test extends PHPUnit_Framework_TestCase /** * data provider for unQuote test with chosen quote + * + * @return array */ public function unQuoteSelectedProvider() { return array( @@ -75,6 +79,8 @@ class PMA_quoting_slashing_test extends PHPUnit_Framework_TestCase /** * data provider for backquote test + * + * @return array */ public function backquoteDataProvider() { return array( diff --git a/test/libraries/common/PMA_stringOperations_test.php b/test/libraries/common/PMA_stringOperations_test.php index ca43335389..3664b44070 100644 --- a/test/libraries/common/PMA_stringOperations_test.php +++ b/test/libraries/common/PMA_stringOperations_test.php @@ -41,8 +41,9 @@ class PMA_stringOperations_test extends PHPUnit_Framework_TestCase /** * data provider for flipstring test + * + * @return array */ - public function flipStringDataProvider() { return array( array('test', "t
\ne
\ns
\nt"), @@ -61,8 +62,9 @@ class PMA_stringOperations_test extends PHPUnit_Framework_TestCase /** * data provider for userDir test + * + * @return array */ - public function userDirDataProvider() { return array( array('/var/pma_tmp/%u/', "/var/pma_tmp/root/"), @@ -83,8 +85,9 @@ class PMA_stringOperations_test extends PHPUnit_Framework_TestCase /** * data provider for replace binary content test + * + * @return array */ - public function replaceBinaryContentsDataProvider() { return array( array("\x000", '\00'), @@ -104,8 +107,9 @@ class PMA_stringOperations_test extends PHPUnit_Framework_TestCase /** * data provider for duplicate first newline test + * + * @return array */ - public function duplicateFirstNewlineDataProvider() { return array( array('test', 'test'), From df9b8c2729decf39321771452bc1884b979f31ef Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 14:31:52 +0200 Subject: [PATCH 186/188] Fix comments for functions with missing @return tag --- libraries/Advisor.class.php | 10 ++++++++++ libraries/Config.class.php | 9 +++++++-- libraries/Error_Handler.class.php | 1 + libraries/File.class.php | 5 ++++- libraries/List_Database.class.php | 1 + libraries/PMA.php | 6 ++++++ libraries/Theme.class.php | 2 ++ libraries/Theme_Manager.class.php | 10 +++++++++- libraries/auth/cookie.auth.lib.php | 1 + libraries/blobstreaming.lib.php | 10 ++++++++++ libraries/blowfish.php | 1 + libraries/database_interface.lib.php | 1 + libraries/db_structure.lib.php | 8 ++++---- libraries/file_listing.php | 16 ++++++++-------- libraries/grab_globals.lib.php | 5 +++-- libraries/mime.lib.php | 3 +++ libraries/select_lang.lib.php | 5 +++++ libraries/sysinfo.lib.php | 3 +++ scripts/signon-script.php | 3 +++ 19 files changed, 82 insertions(+), 18 deletions(-) diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index bf4fd41b73..26696bd340 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -85,6 +85,9 @@ class Advisor /** * Escapes percent string to be used in format string. + * + * @param string $str + * @return string */ function escapePercent($str) { @@ -93,6 +96,10 @@ class Advisor /** * Wrapper function for translating. + * + * @param string $str + * @param mixed $param + * @return string */ function translate($str, $param = null) { @@ -109,6 +116,9 @@ class Advisor /** * Splits justification to text and formula. + * + * @param string $rule + * @return array */ function splitJustification($rule) { diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 803e0c0aff..f3908564d2 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -334,6 +334,7 @@ class PMA_Config * should be called on object creation * * @param string $source config file + * @return bool */ function load($source = null) { @@ -698,6 +699,8 @@ class PMA_Config * $cfg['PmaAbsoluteUri'] is a required directive else cookies won't be * set properly and, depending on browsers, inserting or updating a * record might fail + * + * @return bool */ function checkPmaAbsoluteUri() { @@ -937,7 +940,7 @@ class PMA_Config } /** - * @static + * @return bool */ public function isHttps() { @@ -964,6 +967,8 @@ class PMA_Config * * Please note that this just detects what we see, so * it completely ignores things like reverse proxies. + * + * @return bool */ function detectHttps() { @@ -1012,7 +1017,7 @@ class PMA_Config } /** - * @static + * @return string */ public function getCookiePath() { diff --git a/libraries/Error_Handler.class.php b/libraries/Error_Handler.class.php index 1a9cdb0169..ac132fa2fc 100644 --- a/libraries/Error_Handler.class.php +++ b/libraries/Error_Handler.class.php @@ -127,6 +127,7 @@ class PMA_Error_Handler * * @todo finish! * @param PMA_Error $error + * @return bool */ protected function _logError($error) { diff --git a/libraries/File.class.php b/libraries/File.class.php index 66a88b8043..592127b3e5 100644 --- a/libraries/File.class.php +++ b/libraries/File.class.php @@ -189,6 +189,7 @@ class PMA_File /** * @access public + * @return bool */ function isUploaded() { @@ -591,7 +592,7 @@ class PMA_File } /** - * + * @return bool */ function open() { @@ -688,6 +689,8 @@ class PMA_File * http://bugs.php.net/bug.php?id=29532 * bzip reads a maximum of 8192 bytes on windows systems * @todo this function is unused + * @param int $max_size + * @return bool|string */ function getNextChunk($max_size = null) { diff --git a/libraries/List_Database.class.php b/libraries/List_Database.class.php index a89077394f..e9907cfaef 100644 --- a/libraries/List_Database.class.php +++ b/libraries/List_Database.class.php @@ -90,6 +90,7 @@ require_once './libraries/List.class.php'; * * @todo we could also search mysql tables if all fail? * @param string $like_db_name usally a db_name containing wildcards + * @return array */ protected function _retrieve($like_db_name = null) { diff --git a/libraries/PMA.php b/libraries/PMA.php index 4f148b7df4..ea2c27e8d2 100644 --- a/libraries/PMA.php +++ b/libraries/PMA.php @@ -44,6 +44,9 @@ class PMA * magic access to protected/inaccessible members/properties * * @see http://php.net/language.oop5.overloading + * + * @param string $param + * @return mixed */ public function __get($param) { @@ -66,6 +69,9 @@ class PMA * magic access to protected/inaccessible members/properties * * @see http://php.net/language.oop5.overloading + * + * @param string $param + * @param mixed $value */ public function __set($param, $value) { diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php index f6b08a06d4..87f6a3e9b5 100644 --- a/libraries/Theme.class.php +++ b/libraries/Theme.class.php @@ -130,6 +130,7 @@ class PMA_Theme * checks image path for existance - if not found use img from original theme * * @access public + * @return bool */ function checkImgPath() { @@ -282,6 +283,7 @@ class PMA_Theme * * @access public * @param string $type left, right or print + * @return bool */ function loadCss(&$type) { diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index 174c031650..93f5ecfc6d 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -38,7 +38,7 @@ class PMA_Theme_Manager var $active_theme = ''; /** - * @var object PMA_Theme active theme + * @var PMA_Theme PMA_Theme active theme */ var $theme = null; @@ -193,6 +193,7 @@ class PMA_Theme_Manager /** * save theme in cookie * + * @return bool true */ function setThemeCookie() { @@ -224,6 +225,8 @@ class PMA_Theme_Manager /** * read all themes + * + * @return bool true */ function loadThemes() { @@ -259,6 +262,7 @@ class PMA_Theme_Manager * checks if given theme name is a known theme * * @param string $theme name fo theme to check for + * @return bool */ function checkTheme($theme) { @@ -273,6 +277,7 @@ class PMA_Theme_Manager * returns HTML selectbox, with or without form enclosed * * @param boolean $form whether enclosed by from tags or not + * @return string */ function getHtmlSelectBox($form = true) { @@ -351,6 +356,9 @@ class PMA_Theme_Manager /** * prints css data + * + * @param string $type + * @return bool */ function printCss($type) { diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index 4615c55ff9..c2e50c0671 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -80,6 +80,7 @@ if (function_exists('mcrypt_encrypt')) { * Returns blowfish secret or generates one if needed. * * @access public + * @return string */ function PMA_get_blowfish_secret() { diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index 5cfae23d42..d3827f9a2d 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -4,6 +4,11 @@ * @package BLOBStreaming */ +/** + * Initializes PBMS database + * + * @return bool + */ function initPBMSDatabase() { $query = "create database IF NOT EXISTS pbms;"; // If no other choice then try this. @@ -379,6 +384,11 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) * BLOB streaming on a per table or database basis. So in anticipation of this * PMA_BS_IsTablePBMSEnabled() passes in the table and database name even though * they are not currently needed. + * + * @param string $db_name + * @param string $tbl_name + * @param string $tbl_type + * @return bool */ function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) { diff --git a/libraries/blowfish.php b/libraries/blowfish.php index 69abf5215d..0c04106831 100644 --- a/libraries/blowfish.php +++ b/libraries/blowfish.php @@ -321,6 +321,7 @@ class Horde_Cipher_blowfish * Set the key to be used for en/decryption. * * @param string $key The key to use. + * @return bool */ public function setKey($key) { diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 1873ef11b6..58307fea39 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -23,6 +23,7 @@ define('PMA_DBI_GETVAR_GLOBAL', 2); * Checks one of the mysql extensions * * @param string $extension mysql extension to check + * @return bool */ function PMA_DBI_checkMysqlExtension($extension = 'mysql') { diff --git a/libraries/db_structure.lib.php b/libraries/db_structure.lib.php index 179e752a08..d2702eb128 100644 --- a/libraries/db_structure.lib.php +++ b/libraries/db_structure.lib.php @@ -65,10 +65,10 @@ function PMA_TableHeader($db_is_information_schema = false, $replication = false /** * Creates a clickable column header for table information * - * @param string title to use for the link - * @param string corresponds to sortable data name mapped in libraries/db_info.inc.php - * @param string initial sort order - * @returns string link to be displayed in the table header + * @param string $title title to use for the link + * @param string $sort corresponds to sortable data name mapped in libraries/db_info.inc.php + * @param string $initial_sort_order + * @return string link to be displayed in the table header */ function PMA_SortableTableHeader($title, $sort, $initial_sort_order = 'ASC') { diff --git a/libraries/file_listing.php b/libraries/file_listing.php index 720ba821fa..5d9058acea 100644 --- a/libraries/file_listing.php +++ b/libraries/file_listing.php @@ -10,9 +10,9 @@ /** * Returns array of filtered file names * - * @param string directory to list - * @param string regular expression to match files - * @returns array sorted file list on success, false on failure + * @param string $dir directory to list + * @param string $expression regular expression to match files + * @return array sorted file list on success, false on failure */ function PMA_getDirContent($dir, $expression = '') { @@ -39,10 +39,10 @@ function PMA_getDirContent($dir, $expression = '') /** * Returns options of filtered file names * - * @param string directory to list - * @param string regullar expression to match files - * @param string currently active choice - * @returns array sorted file list on success, false on failure + * @param string $dir directory to list + * @param string $extensions regullar expression to match files + * @param string $active currently active choice + * @return array sorted file list on success, false on failure */ function PMA_getFileSelectOptions($dir, $extensions = '', $active = '') { @@ -64,7 +64,7 @@ function PMA_getFileSelectOptions($dir, $extensions = '', $active = '') /** * Get currently supported decompressions. * - * @returns string | separated list of extensions usable in PMA_getDirContent + * @return string | separated list of extensions usable in PMA_getDirContent */ function PMA_supportedDecompressions() { diff --git a/libraries/grab_globals.lib.php b/libraries/grab_globals.lib.php index aafd1690b4..993ca9d921 100644 --- a/libraries/grab_globals.lib.php +++ b/libraries/grab_globals.lib.php @@ -16,8 +16,9 @@ if (! defined('PHPMYADMIN')) { * copy values from one array to another, usually from a superglobal into $GLOBALS * * @param array $array values from - * @param array $target values to - * @param boolean $sanitize prevent importing key names in $_import_blacklist + * @param array &$target values to + * @param bool $sanitize prevent importing key names in $_import_blacklist + * @return bool */ function PMA_recursive_extract($array, &$target, $sanitize = true) { diff --git a/libraries/mime.lib.php b/libraries/mime.lib.php index f394b8fcfd..e9eb386dde 100644 --- a/libraries/mime.lib.php +++ b/libraries/mime.lib.php @@ -9,6 +9,9 @@ /** * Tries to detect MIME type of content. + * + * @param string &$test + * @return string */ function PMA_detectMIME(&$test) { diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index f4030ef66c..62b1ea7d83 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -11,6 +11,9 @@ if (! defined('PHPMYADMIN')) { /** * Returns language name + * + * @param string $tmplang + * @return string */ function PMA_langName($tmplang) { @@ -182,6 +185,8 @@ function PMA_langDetect($str, $envType) * traditional) must be detected before 'zh' (chinese simplified) for * example. * + * @param string $lang + * @return array */ function PMA_langDetails($lang) { diff --git a/libraries/sysinfo.lib.php b/libraries/sysinfo.lib.php index bc0192f34c..96ac0e2939 100644 --- a/libraries/sysinfo.lib.php +++ b/libraries/sysinfo.lib.php @@ -9,6 +9,9 @@ * @package phpMyAdmin */ +/** + * @return array + */ function getSysInfo() { $supported = array('Linux','WINNT'); diff --git a/scripts/signon-script.php b/scripts/signon-script.php index e57ca1f1f5..201d21762f 100644 --- a/scripts/signon-script.php +++ b/scripts/signon-script.php @@ -16,6 +16,9 @@ * This function returns username and password. * * It can optionally use configured username as parameter. + * + * @param string $user + * @return array */ function get_login_credentials($user) { From f2842a22bf179b93a7eeebd034ed9302fb781e97 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 14:35:02 +0200 Subject: [PATCH 187/188] Fox comment --- libraries/common.lib.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 4850e4153f..eee6035a88 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -2953,10 +2953,9 @@ function PMA_expandUserString($string, $escape = null, $updates = array()) * function that generates a json output for an ajax request and ends script * execution * - * @param bool $message message string containing the html of the message - * @param bool $success success whether the ajax request was successfull - * @param array $extra_data extra_data optional - any other data as part of the json request - * + * @param PMA_Message|string $message message string containing the html of the message + * @param bool $success success whether the ajax request was successfull + * @param array $extra_data extra_data optional - any other data as part of the json request */ function PMA_ajaxResponse($message, $success = true, $extra_data = array()) { From 8f1aca48180621de54a24472a6c10af412fdd947 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Tue, 16 Aug 2011 14:02:16 +0100 Subject: [PATCH 188/188] MySQL allows a function and a procedure with the same name in the same db. This case was unhandled. --- libraries/rte/rte_export.lib.php | 21 +++++++++++---------- libraries/rte/rte_list.lib.php | 6 +++++- libraries/rte/rte_routines.lib.php | 20 +++++++++++++------- 3 files changed, 29 insertions(+), 18 deletions(-) diff --git a/libraries/rte/rte_export.lib.php b/libraries/rte/rte_export.lib.php index d4d8f99a2f..8cac214ce6 100644 --- a/libraries/rte/rte_export.lib.php +++ b/libraries/rte/rte_export.lib.php @@ -70,16 +70,17 @@ function PMA_RTN_handleExport() { global $_GET, $db; - if (! empty($_GET['export_item']) && ! empty($_GET['item_name'])) { - $item_name = $_GET['item_name']; - $type = PMA_DBI_fetch_value( - "SELECT ROUTINE_TYPE " . - "FROM INFORMATION_SCHEMA.ROUTINES " . - "WHERE ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "' " . - "AND SPECIFIC_NAME='" . PMA_sqlAddSlashes($item_name) . "';" - ); - $export_data = PMA_DBI_get_definition($db, $type, $item_name); - PMA_RTE_handleExport($item_name, $export_data); + if ( ! empty($_GET['export_item']) + && ! empty($_GET['item_name']) + && ! empty($_GET['item_type']) + ) { + if ($_GET['item_type'] == 'FUNCTION' || $_GET['item_type'] == 'PROCEDURE') { + $export_data = PMA_DBI_get_definition( + $db, + $_GET['item_type'], + $_GET['item_name']); + PMA_RTE_handleExport($_GET['item_name'], $export_data); + } } } // end PMA_RTN_handleExport() diff --git a/libraries/rte/rte_list.lib.php b/libraries/rte/rte_list.lib.php index c39fd45143..19e8e64b1e 100644 --- a/libraries/rte/rte_list.lib.php +++ b/libraries/rte/rte_list.lib.php @@ -117,7 +117,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') $sql_drop = sprintf('DROP %s IF EXISTS %s', $routine['ROUTINE_TYPE'], PMA_backquote($routine['SPECIFIC_NAME'])); - + $type_link = "item_type={$routine['ROUTINE_TYPE']}"; $retval = " \n"; $retval .= " \n"; @@ -136,6 +136,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') . $url_query . '&edit_item=1' . '&item_name=' . urlencode($routine['SPECIFIC_NAME']) + . '&' . $type_link . '">' . $titles['Edit'] . "
\n"; } else { $retval .= " {$titles['NoEdit']}\n"; @@ -150,6 +151,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') // otherwise we can execute it directly. $routine_details = PMA_RTN_getDataFromName( $routine['SPECIFIC_NAME'], + $routine['ROUTINE_TYPE'], false ); if ($routine !== false) { @@ -168,6 +170,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') . $url_query . '&' . $execute_action . '=1' . '&item_name=' . urlencode($routine['SPECIFIC_NAME']) + . '&' . $type_link . '">' . $titles['Execute'] . "\n"; } } else { @@ -180,6 +183,7 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') . $url_query . '&export_item=1' . '&item_name=' . urlencode($routine['SPECIFIC_NAME']) + . '&' . $type_link . '">' . $titles['Export'] . "\n"; $retval .= " \n"; $retval .= " \n"; diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index 3e6360321f..8cd052923e 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -304,7 +304,9 @@ function PMA_RTN_handleEditor() $extra_data = array(); if ($message->isSuccess()) { $columns = "`SPECIFIC_NAME`, `ROUTINE_NAME`, `ROUTINE_TYPE`, `DTD_IDENTIFIER`, `ROUTINE_DEFINITION`"; - $where = "ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "' AND ROUTINE_NAME='" . PMA_sqlAddSlashes($_REQUEST['item_name']) . "'"; + $where = "ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "' " + . "AND ROUTINE_NAME='" . PMA_sqlAddSlashes($_REQUEST['item_name']) . "'" + . "AND ROUTINE_TYPE='" . PMA_sqlAddSlashes($_REQUEST['item_type']) . "'"; $routine = PMA_DBI_fetch_single_row("SELECT $columns FROM `INFORMATION_SCHEMA`.`ROUTINES` WHERE $where;"); $extra_data['name'] = htmlspecialchars(strtoupper($_REQUEST['item_name'])); $extra_data['new_row'] = PMA_RTN_getRowForList($routine); @@ -343,7 +345,7 @@ function PMA_RTN_handleEditor() } else if (! empty($_REQUEST['edit_item'])) { $title = __("Edit routine"); if (! $operation && ! empty($_REQUEST['item_name']) && empty($_REQUEST['editor_process_edit'])) { - $routine = PMA_RTN_getDataFromName($_REQUEST['item_name']); + $routine = PMA_RTN_getDataFromName($_REQUEST['item_name'], $_REQUEST['item_type']); if ($routine !== false) { $routine['item_original_name'] = $routine['item_name']; $routine['item_original_type'] = $routine['item_type']; @@ -501,12 +503,13 @@ function PMA_RTN_getDataFromRequest() * the "Edit routine" form given the name of a routine. * * @param string $name The name of the routine. + * @param string $type Type of routine (ROUTINE|PROCEDURE) * @param bool $all Whether to return all data or just * the info about parameters. * * @return array Data necessary to create the routine editor. */ -function PMA_RTN_getDataFromName($name, $all = true) +function PMA_RTN_getDataFromName($name, $type, $all = true) { global $param_directions, $param_sqldataaccess, $db; @@ -517,7 +520,8 @@ function PMA_RTN_getDataFromName($name, $all = true) . "ROUTINE_DEFINITION, IS_DETERMINISTIC, SQL_DATA_ACCESS, " . "ROUTINE_COMMENT, SECURITY_TYPE"; $where = "ROUTINE_SCHEMA='" . PMA_sqlAddSlashes($db) . "' " - . "AND SPECIFIC_NAME='" . PMA_sqlAddSlashes($name) . "'"; + . "AND SPECIFIC_NAME='" . PMA_sqlAddSlashes($name) . "'" + . "AND ROUTINE_TYPE='" . PMA_sqlAddSlashes($type) . "'"; $query = "SELECT $fields FROM INFORMATION_SCHEMA.ROUTINES WHERE $where;"; $routine = PMA_DBI_fetch_single_row($query); @@ -1002,7 +1006,7 @@ function PMA_RTN_getQueryFromRequest() $warned_about_dir = false; $warned_about_name = false; $warned_about_length = false; - if (! empty($_REQUEST['item_param_name']) + if ( ! empty($_REQUEST['item_param_name']) && ! empty($_REQUEST['item_param_type']) && ! empty($_REQUEST['item_param_length']) && is_array($_REQUEST['item_param_name']) @@ -1124,7 +1128,7 @@ function PMA_RTN_handleExecute() */ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['item_name'])) { // Build the queries - $routine = PMA_RTN_getDataFromName($_REQUEST['item_name'], false); + $routine = PMA_RTN_getDataFromName($_REQUEST['item_name'], $_REQUEST['item_type'], false); if ($routine !== false) { $queries = array(); $end_query = array(); @@ -1279,7 +1283,7 @@ function PMA_RTN_handleExecute() /** * Display the execute form for a routine. */ - $routine = PMA_RTN_getDataFromName($_GET['item_name'], false); + $routine = PMA_RTN_getDataFromName($_GET['item_name'], $_GET['item_type'], true); if ($routine !== false) { $form = PMA_RTN_getExecuteForm($routine); if ($GLOBALS['is_ajax_request'] == true) { @@ -1336,6 +1340,8 @@ function PMA_RTN_getExecuteForm($routine) $retval .= "
\n"; $retval .= "