@@ -881,17 +881,27 @@ msgid ""
881881"application's log file, while including in the log additional contextual "
882882"information such as client IP, HTTP request method and client username?"
883883msgstr ""
884+ "説明のため、同じ Python プロセス上で共通のライブラリを使っている独立した複数"
885+ "の web アプリケーションがあるとします。これらのアプリケーションが、クライアン"
886+ "トの IP アドレスや HTTP リクエストメソッド、およびクライアントのユーザー名の"
887+ "ようなコンテキスト依存の情報を追加情報として含んだ自身のログを、共通のライブ"
888+ "ラリ (と他のリクエスト処理のためのコード) から各アプリケーションのログファイ"
889+ "ルへ適切に振り向けるためにはどのようにしたら良いでしょうか?"
884890
885891#: ../../howto/logging-cookbook.rst:1011
886892msgid "Let's assume that the library can be simulated by the following code:"
887- msgstr ""
893+ msgstr "ここで、ライブラリは以下のコードで模することができるとします: "
888894
889895#: ../../howto/logging-cookbook.rst:1027
890896msgid ""
891897"We can simulate the multiple web applications by means of two simple "
892898"classes, ``Request`` and ``WebApp``. These simulate how real threaded web "
893899"applications work - each request is handled by a thread:"
894900msgstr ""
901+ "複数の web アプリケーションは2つの簡単なクラス, ``Request`` と ``WebApp``, に"
902+ "よって模倣することができます。これらは実際のスレッド化された web アプリケー"
903+ "ションがどのように動作するかを模擬的にあらわしています - すなわち各リクエスト"
904+ "はスレッドで処理される状況です:"
895905
896906#: ../../howto/logging-cookbook.rst:1171
897907msgid ""