10000 [skip ci] Update .po files · python/python-docs-ja@cde299d · GitHub
[go: up one dir, main page]

Skip to content

Commit cde299d

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 1f820ec commit cde299d

File tree

2 files changed

+14
-33
lines changed

2 files changed

+14
-33
lines changed

howto/logging.po

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.7\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
21+
"POT-Creation-Date: 2019-01-24 10:27+0900\n"
2222
"PO-Revision-Date: 2017-02-16 17:45+0000\n"
2323
"Last-Translator: tomo, 2018\n"
2424
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -999,30 +999,20 @@ msgid ""
999999
"The :func:`fileConfig` function takes a default parameter, "
10001000
"``disable_existing_loggers``, which defaults to ``True`` for reasons of "
10011001
"backward compatibility. This may or may not be what you want, since it will "
1002-
"cause any loggers existing before the :func:`fileConfig` call to be disabled"
1003-
" unless they (or an ancestor) are explicitly named in the configuration. "
1004-
"Please refer to the reference documentation for more information, and "
1005-
"specify ``False`` for this parameter if you wish."
1006-
msgstr ""
1007-
":func:`fileConfig` 関数はデフォルト引数 ``disable_existing_loggers`` "
1008-
"を取り、後方互換性のためにデフォルト値は ``True`` "
1009-
"になっています。これはあなたの望むものかもしれませんし、そうでないかもしれません。というのは、設定で明示的に指定したクラス (もしくはその親クラス) "
1010-
"を除いて、 :func:`fileConfig` "
1011-
"が呼び出される前に存在したロガーを無効化してしまうからです。より詳細なことはリファレンスを参照し、望むならこの引数に ``False`` "
1012-
"を指定してください。"
1002+
"cause any non-root loggers existing before the :func:`fileConfig` call to be"
1003+
" disabled unless they (or an ancestor) are explicitly named in the "
1004+
"configuration. Please refer to the reference documentation for more "
1005+
"information, and specify ``False`` for this parameter if you wish."
1006+
msgstr ""
10131007

10141008
#: ../../howto/logging.rst:703
10151009
msgid ""
10161010
"The dictionary passed to :func:`dictConfig` can also specify a Boolean value"
10171011
" with key ``disable_existing_loggers``, which if not specified explicitly in"
1018-
" the dictionary also defaults to being interpreted as ``True``. This leads "
1012+
" the dictionary also defaults to being interpreted as ``True``. This leads "
10191013
"to the logger-disabling behaviour described above, which may not be what you"
10201014
" want - in which case, provide the key explicitly with a value of ``False``."
10211015
msgstr ""
1022-
":func:`dictConfig` に渡した辞書で、キー ``disable_existing_loggers`` "
1023-
"にブール値を指定することができ、辞書で指定しなかった場合はデフォルトで ``True`` "
1024-
"と解釈されます。こうすると上で説明したロガー無効化が動作しますが、これはあなたが望んだものでないかもしれません - その場合は、明示的にキーに "
1025-
"``False`` を指定してください。"
10261016

10271017
#: ../../howto/logging.rst:713
10281018
msgid ""
@@ -1154,14 +1144,12 @@ msgid ""
11541144
"If for some reason you *don't* want these messages printed in the absence of"
11551145
" any logging configuration, you can attach a do-nothing handler to the top-"
11561146
"level logger for your library. This avoids the message being printed, since "
1157-
"a handler will be always be found for the library's events: it just doesn't "
1147+
"a handler will always be found for the library's events: it just doesn't "
11581148
"produce any output. If the library user configures logging for application "
11591149
"use, presumably that configuration will add some handlers, and if levels are"
11601150
" suitably configured then logging calls made in library code will send "
11611151
"output to those handlers, as normal."
11621152
msgstr ""
1163-
"何らかの理由で、ロギング設定がなされていないときにメッセージを表示 *させたくない* "
1164-
"なら、あなたのライブラリのトップレベルロガーに何もしないハンドラを取り付けられます。このハンドラは何も処理しないというだけで、全てのライブラリイベントに対してハンドラが見つかるので、メッセージが表示されることを防げます。ライブラリのユーザがアプリケーションでの使用のためにロギングを設定したら、それはおそらくハンドラを追加する設定でしょうが、そしてレベルが適切に設定されたら、ライブラリコード内でなされたロギングの呼び出しは、通常通りそのハンドラに出力を送るようになります。"
11651153

11661154
#: ../../howto/logging.rst:811
11671155
msgid ""

library/logging.config.po

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.7\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
17+
"POT-Creation-Date: 2019-01-24 10:27+0900\n"
1818
"PO-Revision-Date: 2017-02-16 23:16+0000\n"
1919
"Last-Translator: tomo, 2017\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -198,14 +198,10 @@ msgstr "ConfigParser に渡されるデフォルト値をこの引数で指定
198198
msgid ""
199199
"If specified as ``False``, loggers which exist when this call is made are "
200200
"left enabled. The default is ``True`` because this enables old behaviour in "
201-
"a backward-compatible way. This behaviour is to disable any existing loggers"
202-
" unless they or their ancestors are explicitly named in the logging "
203-
"configuration."
201+
"a backward-compatible way. This behaviour is to disable any existing non-"
202+
"root loggers unless they or their ancestors are explicitly named in the "
203+
"logging configuration."
204204
msgstr ""
205-
"``False`` "
206-
"が指定された場合は、この呼び出しが行われたときに存在するロガーは有効のまま残されます。後方互換性のあるやり方で古い振る舞いを保つので、デフォルト値は "
207-
"``True`` "
208-
"になっています。そのような振る舞いでは、既存のロガーまたはそれらのロガーの先祖がロギング設定の中で明示的に名付けられていない限り、既存のロガーを無効にします。"
209205

210206
#: ../../library/logging.config.rst:114
211207
msgid ""
@@ -529,14 +525,11 @@ msgstr ""
529525

530526
#: ../../library/logging.config.rst:311
531527
msgid ""
532-
"*disable_existing_loggers* - whether any existing loggers are to be "
533-
"disabled. This setting mirrors the parameter of the same name in "
528+
"*disable_existing_loggers* - whether any existing non-root loggers are to be"
529+
" disabled. This setting mirrors the parameter of the same name in "
534530
":func:`fileConfig`. If absent, this parameter defaults to ``True``. This "
535531
"value is ignored if *incremental* is ``True``."
536532
msgstr ""
537-
"*disable_existing_loggers* - 既存のロガーをすべて無効にするべきかどうかです。この設定は、 "
538-
":func:`fileConfig` における同じ名前のパラメータと同じです。設定されていなければ、このパラメータのデフォルトは ``True`` "
539-
"です。この値は、 *incremental* が ``True`` なら無視されます。"
540533

541534
#: ../../library/logging.config.rst:319
542535
msgid "Incremental Configuration"

0 commit comments

Comments
 (0)
0