diff --git a/ChangeLog b/ChangeLog index e648e2f442..f30beea9b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -phpMyAdmin - ChangeLog +phpMyAdmin - ChangeLog ====================== 3.5.0.0 (not yet released) @@ -29,6 +29,7 @@ - bug #3313210 [interface] Columns class sometimes changed for nothing - patch #3313326 [interface] Some tooltips do not disappear - bug #3315720 [search] Fix search in non unicode tables +- bug #3315741 [display] Inline query edit broken 3.4.2.0 (2011-06-07) - bug #3301249 [interface] Iconic table operations does not remove inline edit label diff --git a/js/functions.js b/js/functions.js index 4ad7c77c9a..1b09f63ee6 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1151,7 +1151,7 @@ function changeMIMEType(db, table, reference, mime_type) * Jquery Coding for inline editing SQL_QUERY */ $(document).ready(function(){ - $(".inline_edit_sql").click( function(){ + $(".inline_edit_sql").live('click', function(){ var db = $(this).prev().find("input[name='db']").val(); var table = $(this).prev().find("input[name='table']").val(); var token = $(this).prev().find("input[name='token']").val(); diff --git a/js/highcharts/exporting.js b/js/highcharts/exporting.js index 036c6ae5c7..171ea503ca 100644 --- a/js/highcharts/exporting.js +++ b/js/highcharts/exporting.js @@ -308,12 +308,9 @@ extend(Chart.prototype, { chart = this, canvas=createElement('canvas'); - if (typeof FlashCanvas != "undefined") { - FlashCanvas.initElement(canvas); - } - $('body').append(canvas); - $(canvas).hide(); + $(canvas).css('position','absolute'); + $(canvas).css('left','-10000px'); var submitData = function(chartData) { // merge the options @@ -352,11 +349,19 @@ extend(Chart.prototype, { if(options && options.type=='image/svg+xml') { submitData(chart.getSVG(chartOptions)); } else { + if (typeof FlashCanvas != "undefined") { + FlashCanvas.initElement(canvas); + } + // Generate data uri and submit once done canvg(canvas, chart.getSVG(chartOptions),{ ignoreAnimation:true, ignoreMouse:true, - renderCallback:function() { submitData(canvas.toDataURL()); } + renderCallback:function() { + // IE8 fix: flashcanvas doesn't update the canvas immediately, thus requiring setTimeout. + // See also http://groups.google.com/group/flashcanvas/browse_thread/thread/e36ff7a03e1bfb0a + setTimeout(function() { submitData(canvas.toDataURL()); }, 100); + } }); } }, diff --git a/po/en_GB.po b/po/en_GB.po index b5b3572ca8..ce8c8c8cd5 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-15 02:35+0200\n" +"PO-Revision-Date: 2011-06-15 16:58+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -4900,24 +4900,22 @@ msgid "Language" msgstr "Language" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Textarea columns" +msgstr "Restore column order" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Drag to reorder" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Click to select" +msgstr "Click to sort" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Click to mark/unmark" #: libraries/display_tbl.lib.php:425 #, php-format diff --git a/po/fr.po b/po/fr.po index 96b6d0a879..9228b925ce 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-09 22:13+0200\n" +"PO-Revision-Date: 2011-06-15 17:03+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -26,7 +26,7 @@ msgstr "Tout afficher" #: libraries/schema/Pdf_Relation_Schema.class.php:1114 #: libraries/schema/User_Schema.class.php:360 msgid "Page number:" -msgstr "Page n°: " +msgstr "Page n° : " #: browse_foreigners.php:133 msgid "" @@ -36,7 +36,7 @@ msgid "" msgstr "" "La fenêtre demandée depuis votre navigateur ne peut être rafraîchie. Il est " "possible que vous ayez fermé la fenêtre source , ou encore que votre " -"navigateur bloque les mises à jour inter-fenêtres pour des raisons de " +"navigateur bloque les mises à jour entre fenêtres pour des raisons de " "sécurité." #: browse_foreigners.php:151 libraries/common.lib.php:2763 @@ -1018,10 +1018,9 @@ msgstr "Ce n'est pas un nombre !" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:51 -#, fuzzy #| msgid "Log file count" msgid "Total count" -msgstr "Nombre de fichiers journal" +msgstr "Nombre total" #: js/messages.php:54 msgid "The host name is empty!" @@ -1058,24 +1057,22 @@ msgid "Close" msgstr "Fermer" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "Choix du serveur" +msgstr "Graphique du trafic en temps réel" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" -msgstr "" +msgstr "Graphique des connexions et processus en temps réel" #: js/messages.php:66 server_status.php:429 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "Afficher le graphique des requêtes" +msgstr "Graphique des requêtes en temps réel" #: js/messages.php:68 msgid "Static data" -msgstr "" +msgstr "Données statiques" #. l10n: Total number of queries #: js/messages.php:70 libraries/build_html_for_db.lib.php:45 @@ -1088,12 +1085,12 @@ msgstr "Total" #. l10n: Other, small valued, queries #: js/messages.php:72 server_status.php:592 msgid "Other" -msgstr "" +msgstr "Autres" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1375 msgid "," -msgstr " " +msgstr "  " #. l10n: Decimal separator #: js/messages.php:76 libraries/common.lib.php:1377 @@ -1108,7 +1105,7 @@ msgstr "Annuler" #: js/messages.php:83 msgid "Loading" -msgstr "Chargement" +msgstr "Chargement en cours" #: js/messages.php:84 msgid "Processing Request" @@ -4963,24 +4960,22 @@ msgid "Language" msgstr "Langue" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Taille horizontale pour une zone de texte" +msgstr "Restaurer l'ordre des colonnes" #: libraries/display_tbl.lib.php:411 msgid "Drag to reorder" -msgstr "" +msgstr "Faire glisser pour réordonner" #: libraries/display_tbl.lib.php:412 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Cliquer pour sélectionner" +msgstr "Cliquer pour trier" #: libraries/display_tbl.lib.php:413 msgid "Click to mark/unmark" -msgstr "" +msgstr "Cliquer pour marquer/enlever les marques" #: libraries/display_tbl.lib.php:425 #, php-format @@ -8349,71 +8344,62 @@ msgid "Runtime Information" msgstr "Informations sur le serveur" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "Choix du serveur" +msgstr "Trafic du serveur" #: server_status.php:372 msgid "Query statistics" msgstr "Statistiques sur les requêtes" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "Montrer l'état de l'esclave" +msgstr "Toutes les variables d'état" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Actualiser" +msgstr "Taux de rafraîchissement" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" -msgstr "Seconde" +msgstr "seconde" #: server_status.php:385 server_status.php:386 server_status.php:387 #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" -msgstr "Seconde" +msgstr "secondes" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" -msgstr "Minute" +msgstr "minutes" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Conserver le mot de passe" +msgstr "Contenant le mot :" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "Montrer les tables ouvertes" +msgstr "Afficher uniquement les valeurs d'alerte" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "Filtrer par catégorie..." #: server_status.php:468 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Liens connexes" +msgstr "Liens connexes:" #: server_status.php:513 server_status.php:545 server_status.php:666 #: server_status.php:711 @@ -8435,12 +8421,12 @@ msgstr "Type de requête" #. l10n: # = Amount of queries #: server_status.php:543 msgid "#" -msgstr "" +msgstr "#" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Trafic réseau depuis le démarrage : %s" #: server_status.php:623 #, php-format @@ -8525,10 +8511,9 @@ msgid "ID" msgstr "ID" #: server_status.php:846 -#, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Pour activer ou pas une connexion SSL vers le serveur MySQL." +msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." #: server_status.php:847 msgid "" @@ -8549,6 +8534,7 @@ msgstr "" msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" +"Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." #: server_status.php:850 msgid "" @@ -8976,6 +8962,7 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"Le nombre maximum de connexions simultanées depuis le démarrage du serveur." #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." @@ -9007,6 +8994,9 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Le nombre de blocs mémoire libres dans la cache de requêtes. Un nombre élevé " +"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par " +"la commande FLUSH QUERY CACHE." #: server_status.php:927 msgid "The amount of free memory for query cache." @@ -9750,10 +9740,9 @@ msgid "Line" msgstr "Ligne" #: tbl_chart.php:88 -#, fuzzy #| msgid "Inline" msgid "Spline" -msgstr "En ligne" +msgstr "Spline" #: tbl_chart.php:89 msgid "Pie" @@ -9764,50 +9753,43 @@ msgid "Stacked" msgstr "En piles" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Titre du rapport :" +msgstr "Titre du graphique" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "Axe des X" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "Requêtes SQL" +msgstr "Séries:" #: tbl_chart.php:115 -#, fuzzy #| msgid "Textarea columns" msgid "The remaining columns" -msgstr "Taille horizontale pour une zone de texte" +msgstr "Les colonnes restantes" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" msgstr "Étiquette pour l'axe des X" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Valeur" +msgstr "Valeurs en X" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Étiquette pour l'axe des Y" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Valeur" +msgstr "Valeurs en Y" #: tbl_create.php:56 #, php-format diff --git a/po/ja.po b/po/ja.po index 16b009ba28..f90d0f4ede 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-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-06-08 12:19+0200\n" +"PO-Revision-Date: 2011-06-15 12:47+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "MIME-Version: 1.0\n" @@ -1047,10 +1047,9 @@ msgid "Close" msgstr "閉じる" #: js/messages.php:64 server_status.php:397 -#, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" -msgstr "サーバの選択" +msgstr "リアルタイムでのトラフィックグラフ" #: js/messages.php:65 server_status.php:400 msgid "Live conn./process chart" @@ -3053,9 +3052,7 @@ msgstr "変更追跡機能" msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -msgstr "" -"データベースで行われた変更の追跡機能です。これには、 phpMyAdmin の設定保存場" -"所が必要です。" +msgstr "データベースで行われた変更の追跡機能です。これには、phpMyAdmin の設定保存場所が必要です。" #: libraries/config/messages.inc.php:208 msgid "Customize export options" @@ -3336,7 +3333,7 @@ msgstr "ロゴリンクのターゲット" #: libraries/config/messages.inc.php:286 msgid "Highlight server under the mouse cursor" -msgstr "マウスカーソルの下のサーバー名を強調表示します。" +msgstr "マウスカーソルの下のサーバ名を強調表示します。" #: libraries/config/messages.inc.php:287 msgid "Enable highlighting" @@ -3526,7 +3523,7 @@ msgstr "HTTP 転送の高速化のために GZip の出力バッファリング #: libraries/config/messages.inc.php:326 msgid "GZip output buffering" -msgstr "GZipの出力バッファリング" +msgstr "GZip の出力バッファリング" #: libraries/config/messages.inc.php:327 msgid "" @@ -4086,13 +4083,11 @@ msgstr "バージョンの自動作成" msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" -msgstr "" -"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/" -"kbd] としておくのがいいでしょう。" +msgstr "データベースにユーザ環境設定を保存しない場合は空欄にします。[kbd]pma_config[/kbd] としておくのがいいでしょう。" #: libraries/config/messages.inc.php:441 msgid "User preferences storage table" -msgstr "ユーザ設定保存テーブル" +msgstr "ユーザ環境設定保存テーブル" #: libraries/config/messages.inc.php:443 msgid "User for config auth" @@ -4945,7 +4940,7 @@ msgstr "水平" #: libraries/display_tbl.lib.php:437 msgid "horizontal (rotated headers)" -msgstr "水平 (ヘッダも回転)" +msgstr "水平 (縦ヘッダ)" #: libraries/display_tbl.lib.php:438 msgid "vertical" @@ -5056,7 +5051,7 @@ msgstr "グラフで表示する" #: libraries/display_tbl.lib.php:2473 msgid "Create view" -msgstr "ビューを作成" +msgstr "ビューを作成する" #: libraries/display_tbl.lib.php:2588 msgid "Link not found" @@ -6218,7 +6213,7 @@ msgstr "PDF の作成" #: libraries/relation.lib.php:121 msgid "Displaying Column Comments" -msgstr "列コメント表示機能" +msgstr "カラムコメント表示機能" #: libraries/relation.lib.php:126 msgid "" @@ -6243,7 +6238,7 @@ msgstr "永続的な『テーブルのユーザ設定』" #: libraries/relation.lib.php:155 msgid "User preferences" -msgstr "ユーザ設定" +msgstr "ユーザ環境設定" #: libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" @@ -6287,8 +6282,8 @@ msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -"念のため、設定ファイル (my.cnf) 内でサーバーIDがユニークであるか確認してくだ" -"さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。" +"念のため、設定ファイル (my.cnf) 内でサーバ ID がユニークであるか確認してください。もしそうでないならば、[mysqld] " +"セクションに以下の行を追加してください。" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 @@ -8029,12 +8024,9 @@ msgid "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" msgstr "" -"このサーバは、レプリケーションプロセスのマスタサーバーとして構成されていませ" -"ん。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全" -"てのデータベースをレプリケーションするモード(データベースの大部分をレプリ" -"ケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベース" -"を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ" -"りいずれかのモードを選択してください。" +"このサーバは、レプリケーションプロセスのマスタサーバとして構成されていません。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全て" +"のデータベースをレプリケーションするモード(データベースの大部分をレプリケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベースを無" +"視して、特定のデータベースだけのレプリケーションを許可するモード。以下よりいずれかのモードを選択してください。" #: server_replication.php:219 msgid "Replicate all databases; Ignore:" @@ -8062,9 +8054,8 @@ msgid "" "should see a message informing you, that this server is configured as " "master" msgstr "" -"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その" -"後、このサーバーマスタとして設定されていることを知らせるメッセージが" -"表示されます。" +"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その後、このサーバマスタとして設定されていることを知らせるメ" +"ッセージが表示されます。" #: server_replication.php:291 msgid "Slave SQL Thread not running!" @@ -8224,29 +8215,25 @@ msgid "Runtime Information" msgstr "ランタイム情報" #: server_status.php:371 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic" -msgstr "サーバの選択" +msgstr "サーバのトラフィック" #: server_status.php:372 msgid "Query statistics" msgstr "クエリの統計" #: server_status.php:373 -#, fuzzy #| msgid "See slave status table" msgid "All status variables" -msgstr "スレーブのステータステーブルを閲覧する" +msgstr "全ての状態変数" #: server_status.php:383 server_status.php:416 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "再描画" +msgstr "再描画間隔" #: server_status.php:384 server_status.php:417 -#, fuzzy #| msgid "Second" msgid "second" msgstr "秒" @@ -8255,7 +8242,6 @@ msgstr "秒" #: server_status.php:388 server_status.php:389 server_status.php:418 #: server_status.php:419 server_status.php:420 server_status.php:421 #: server_status.php:422 -#, fuzzy #| msgid "Second" msgid "seconds" msgstr "秒" @@ -8263,26 +8249,23 @@ msgstr "秒" #: server_status.php:390 server_status.php:391 server_status.php:392 #: server_status.php:393 server_status.php:423 server_status.php:424 #: server_status.php:425 server_status.php:426 -#, fuzzy #| msgid "Minute" msgid "minutes" msgstr "分" #: server_status.php:446 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "パスワードは変更しない" +msgstr "含まれている文字:" #: server_status.php:451 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "開いているテーブルを表示する" +msgstr "警告値のみ表示する" #: server_status.php:455 msgid "Filter by category..." -msgstr "" +msgstr "種別によるフィルタ..." #: server_status.php:468 #, fuzzy @@ -8315,7 +8298,7 @@ msgstr "" #: server_status.php:615 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "起動してからのネットワークトラフィック:%s" #: server_status.php:623 #, php-format @@ -8347,8 +8330,7 @@ msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -"サーバー上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" +"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" #: server_status.php:649 msgid "Replication status" @@ -8399,10 +8381,9 @@ msgid "ID" msgstr "ID" #: server_status.php:846 -#, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL サーバに接続するのに SSL を有効にするかどうか。" +msgstr "MySQL サーバへの接続を試みて失敗した回数。" #: server_status.php:847 msgid "" @@ -8420,7 +8401,7 @@ msgstr "一時バイナリログキャッシュを使用したトランザクシ #: server_status.php:849 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。" #: server_status.php:850 msgid "" @@ -8832,7 +8813,7 @@ msgstr "" msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." -msgstr "" +msgstr "サーバが起動してからの同時接続の最大数。" #: server_status.php:921 msgid "The number of rows waiting to be written in INSERT DELAYED queues." @@ -8864,6 +8845,8 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっていることを示しています。FLUSH QUERY CACHE " +"文を発行することによって解決できるかもしれません。" #: server_status.php:927 msgid "The amount of free memory for query cache." @@ -9188,9 +9171,7 @@ msgstr "" msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." -msgstr "" -"サーバーがHTTPS要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]" -"をたどり安全な接続を使用するようにしてください。" +msgstr "サーバが HTTPS 要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]をたどり安全な接続を使用するようにしてください。" #: setup/frames/index.inc.php:64 msgid "Insecure connection" @@ -9368,8 +9349,7 @@ msgstr "" #: setup/lib/index.lib.php:256 #, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "" -"Webサーバでサポートしている場合、この%sオプション%sを有効にするべきです。" +msgstr "ウェブサーバでサポートしている場合、この%sオプション%sを有効にするべきです。" #: setup/lib/index.lib.php:258 #, php-format @@ -9601,14 +9581,13 @@ msgid "Stacked" msgstr "積み上げ形式" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "レポートのタイトル:" +msgstr "グラフの題名" #: tbl_chart.php:99 msgid "X-Axis:" -msgstr "" +msgstr "横軸:" #: tbl_chart.php:113 #, fuzzy @@ -9623,28 +9602,24 @@ msgid "The remaining columns" msgstr "textarea の 1 行の文字数" #: tbl_chart.php:128 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "横軸のラベル" +msgstr "横軸のラベル:" #: tbl_chart.php:128 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "値" +msgstr "横軸の値" #: tbl_chart.php:129 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "縦軸のラベル" +msgstr "縦軸のラベル:" #: tbl_chart.php:129 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "値" +msgstr "縦軸の値" #: tbl_create.php:56 #, php-format @@ -9698,7 +9673,7 @@ msgstr "" #: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" -msgstr "インデックスに %s  の列を追加しました" +msgstr "インデックスに %s 個のカラムを追加する" #: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695 msgid "Column count has to be larger than zero." @@ -9736,7 +9711,7 @@ msgstr "(1 回)" #: tbl_operations.php:293 msgid "Move table to (database.table):" -msgstr "テーブルの移動先(database.table):" +msgstr "テーブルを (データベース).(テーブル) へ移動する:" #: tbl_operations.php:351 msgid "Table options" diff --git a/po/pt_BR.po b/po/pt_BR.po index b5916ddc0c..72eb80d057 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-06-15 08:36-0400\n" -"PO-Revision-Date: 2011-04-14 17:44+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-06-15 13:55+0200\n" +"Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n" "Language-Team: brazilian_portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -489,7 +489,7 @@ msgstr "Usar tabelas" #: db_qbe.php:662 #, php-format msgid "SQL query on database %s:" -msgstr "Consulta no Banco de Dados %s:" +msgstr "Consulta SQL ao Banco de Dados %s:" #: db_qbe.php:955 libraries/common.lib.php:1169 msgid "Submit Query" @@ -638,7 +638,7 @@ msgstr "Soma" #: db_structure.php:455 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "%s é o stored engine padrão neste servidor MySQL." +msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 #: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302 @@ -708,21 +708,18 @@ msgid "Analyze table" msgstr "Analizar tabela" #: db_structure.php:521 -#, fuzzy msgid "Add prefix to table" -msgstr "Sem bases" +msgstr "Adicionar prefixo à tabela" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Substituir os dados da tabela pelos do arquivo" +msgstr "Substituir prefixo da tabela" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Substituir os dados da tabela pelos do arquivo" +msgstr "Copiar tabela com o prefixo" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" @@ -787,7 +784,7 @@ msgstr "Versões" #: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676 msgid "Tracking report" -msgstr "Relatório de rastreamento" +msgstr "Relatório de monitoramento" #: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676 msgid "Structure snapshot" @@ -800,7 +797,7 @@ msgstr "Tabelas não monitoradas" #: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622 #: tbl_structure.php:624 msgid "Track table" -msgstr "Rastrear tabela" +msgstr "Monitorar tabela" #: db_tracking.php:229 msgid "Database Log" @@ -971,16 +968,14 @@ msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" +msgstr "Você está prestes à DESTRUIR completamente a tabela" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" +msgstr "Você está prestes à TRUNCAR completamente uma tabela!" #: js/messages.php:34 msgid "Dropping Event" @@ -988,7 +983,7 @@ msgstr "Remoção de eventos" #: js/messages.php:35 msgid "Dropping Procedure" -msgstr "Remoção de Procedures" +msgstr "Remoção de procedimentos" #: js/messages.php:37 msgid "Deleting tracking data" @@ -1004,7 +999,7 @@ msgstr "Esta operação pode ser demorada. Deseja prosseguir?" #: js/messages.php:42 msgid "You are about to DISABLE a BLOB Repository!" -msgstr "Você está prestes a desativar um repositório BLOB." +msgstr "Você está prestes a DESATIVAR um repositório BLOB." #: js/messages.php:43 #, php-format @@ -10361,7 +10356,7 @@ msgstr "Você não tem direitos suficientes para estar aqui agora!" #: user_password.php:110 msgid "The profile has been updated." -msgstr "A configuração foi atualizada." +msgstr "O perfíl foi atualizado." #: view_create.php:141 msgid "VIEW name" diff --git a/server_status.php b/server_status.php index 1b1ff34efd..480afc792c 100644 --- a/server_status.php +++ b/server_status.php @@ -21,15 +21,14 @@ require_once './libraries/common.inc.php'; * Ajax request */ -// Prevent ajax requests from being cached if (isset($_REQUEST['ajax_request'])) { - header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 - header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past - header_remove('Last-Modified'); + // Prevent ajax requests from being cached + header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1 + header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past + // Send correct charset + header('Content-Type: text/html; charset=UTF-8'); - if (isset($_REQUEST["query_chart"])) { - exit(createQueryChart()); - } + // real-time charting data if(isset($_REQUEST['chart_data'])) { switch($_REQUEST['type']) { case 'proc':