Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit84c60aa

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent859aff6 commit84c60aa

File tree

2 files changed

+4338
-4341
lines changed

2 files changed

+4338
-4341
lines changed

‎library/logging.po

Lines changed: 17 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.7\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2019-06-20 11:41+0900\n"
14+
"POT-Creation-Date:2019-10-05 03:41+0000\n"
1515
"PO-Revision-Date:2019-09-01 02:44+0000\n"
1616
"Last-Translator:tomo, 2019\n"
1717
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -239,14 +239,11 @@ msgstr ""
239239

240240
#:../../library/logging.rst:129
241241
msgid""
242-
"Indicates if a message of severity *lvl* would be processed by this logger. "
243-
"This method checks first the module-level level set by "
244-
"``logging.disable(lvl)`` and then the logger's effective level asdetermined"
245-
" by :meth:`getEffectiveLevel`."
242+
"Indicates if a message of severity *level* would be processed by this "
243+
"logger.This method checks first the module-level level set by "
244+
"``logging.disable(level)`` and then the logger's effective level as "
245+
"determined by :meth:`getEffectiveLevel`."
246246
msgstr""
247-
"深刻度が *lvl* のメッセージが、このロガーで処理されることになっているかどうかを示します。このメソッドはまず、 "
248-
"``logging.disable(lvl)`` で設定されるモジュールレベルの深刻度レベルを調べ、次にロガーの実効レベルを "
249-
":meth:`getEffectiveLevel` で調べます。"
250247

251248
#:../../library/logging.rst:137
252249
msgid""
@@ -438,10 +435,9 @@ msgstr ""
438435

439436
#:../../library/logging.rst:263
440437
msgid""
441-
"Logs a message with integer level *lvl* on this logger. The other arguments "
442-
"are interpreted as for :meth:`debug`."
438+
"Logs a message with integer level *level* on this logger. The other "
439+
"argumentsare interpreted as for :meth:`debug`."
443440
msgstr""
444-
"整数で表したレベル *lvl* のメッセージをこのロガーで記録します。その他の引数は :meth:`debug` と同じように解釈されます。"
445441

446442
#:../../library/logging.rst:269
447443
msgid""
@@ -1737,53 +1733,41 @@ msgstr ""
17371733

17381734
#:../../library/logging.rst:1046
17391735
msgid""
1740-
"Provides an overriding level *lvl* for all loggers which takes precedence "
1736+
"Provides an overriding level *level* for all loggers which takes precedence "
17411737
"over the logger's own level. When the need arises to temporarily throttle "
17421738
"logging output down across the whole application, this function can be "
1743-
"useful. Its effect is to disable all logging calls of severity *lvl* and "
1739+
"useful. Its effect is to disable all logging calls of severity *level* and "
17441740
"below, so that if you call it with a value of INFO, then all INFO and DEBUG "
17451741
"events would be discarded, whereas those of severity WARNING and above would"
17461742
" be processed according to the logger's effective level. If "
17471743
"``logging.disable(logging.NOTSET)`` is called, it effectively removes this "
17481744
"overriding level, so that logging output again depends on the effective "
17491745
"levels of individual loggers."
17501746
msgstr""
1751-
"全てのロガーのレベル *lvl* "
1752-
"を上書きし、これはロガー自身の出力レベルよりも優先されます。アプリケーション全体を横断するログ出力を一時的に調整する必要が生じたら、この関数は便利でしょう。これの効果は重大度"
1753-
" *lvl* 以下の全てのロギング呼び出しを無効にすることですので、INFO で呼び出しをすれば、INFO と DEBUG "
1754-
"イベントが捨てられる一方で、重大度 WARNING 以上のものは、ロガーの有効レベルに基いて処理されます。 "
1755-
"``logging.disable(logging.NOTSET)`` "
1756-
"が呼び出されると、この上書きレベルは削除され、ログ出力は再び個々のロガーの有効レベルに依存するようになります。"
17571747

17581748
#:../../library/logging.rst:1057
17591749
msgid""
17601750
"Note that if you have defined any custom logging level higher than "
17611751
"``CRITICAL`` (this is not recommended), you won't be able to rely on the "
1762-
"default value for the *lvl* parameter, but will have to explicitly supply a "
1763-
"suitable value."
1752+
"default value for the *level* parameter, but will have to explicitly supply "
1753+
"asuitable value."
17641754
msgstr""
1765-
"``CRITICAL`` より高い独自のログレベル (これは推奨されません) を定義した場合は、 *lvl* "
1766-
"引数のデフォルト値を当てにできなくなり、適切な値を明示的に与える必要があります。"
17671755

17681756
#:../../library/logging.rst:1062
17691757
msgid""
1770-
"The *lvl* parameter was defaulted to level ``CRITICAL``. See Issue #28524 "
1758+
"The *level* parameter was defaulted to level ``CRITICAL``. See Issue #28524 "
17711759
"for more information about this change."
17721760
msgstr""
1773-
"*lvl* 引数のデフォルトが ``CRITICAL`` レベルになりました。\n"
1774-
"この変更についてのより詳しいことは issue #28524 を参照してください。"
17751761

17761762
#:../../library/logging.rst:1068
17771763
msgid""
1778-
"Associates level *lvl* with text *levelName* in an internal dictionary, "
1764+
"Associates level *level* with text *levelName* in an internal dictionary, "
17791765
"which is used to map numeric levels to a textual representation, for example"
17801766
" when a :class:`Formatter` formats a message. This function can also be used"
17811767
" to define your own levels. The only constraints are that all levels used "
17821768
"must be registered using this function, levels should be positive integers "
17831769
"and they should increase in increasing order of severity."
17841770
msgstr""
1785-
"内部的な辞書の中でレベル *lvl* をテキスト *levelName* に関連付けます。これは例えば :class:`Formatter` "
1786-
"でメッセージを書式化する際のように、数字のレベルをテキスト表現に対応付ける際に用いられます。この関数は自作のレベルを定義するために使うこともできます。使われるレベルに対する唯一の制限は、レベルは正の整数でなくてはならず、メッセージの深刻度が上がるに従ってレベルの数も上がらなくてはならないということです。"
17871771

17881772
#:../../library/logging.rst:1075
17891773
msgid""
@@ -1793,20 +1777,15 @@ msgstr "独自のレベルを定義したい場合、 :ref:`custom-levels` の
17931777

17941778
#:../../library/logging.rst:1080
17951779
msgid""
1796-
"Returns the textual representation of logging level *lvl*. If the level is"
1797-
"one of the predefined levels :const:`CRITICAL`, :const:`ERROR`, "
1780+
"Returns the textual representation of logging level *level*. If the level is"
1781+
"one of the predefined levels :const:`CRITICAL`, :const:`ERROR`, "
17981782
":const:`WARNING`, :const:`INFO` or :const:`DEBUG` then you get the "
17991783
"corresponding string. If you have associated levels with names using "
1800-
":func:`addLevelName` then the name you have associated with *lvl* is "
1784+
":func:`addLevelName` then the name you have associated with *level* is "
18011785
"returned. If a numeric value corresponding to one of the defined levels is "
18021786
"passed in, the corresponding string representation is returned. Otherwise, "
1803-
"the string 'Level %s' %lvl is returned."
1787+
"the string 'Level %s' %level is returned."
18041788
msgstr""
1805-
"ログ記録レベル *lvl* のテキスト表現を返します。レベルが定義済みのレベル :const:`CRITICAL`, :const:`ERROR`, "
1806-
":const:`WARNING`, :const:`INFO`, :const:`DEBUG` のいずれかである場合、対応する文字列が返されます。 "
1807-
":func:`addLevelName` を使ってレベルに名前を関連付けていた場合、 *lvl* "
1808-
"に関連付けられた名前が返されます。定義済みのレベルに対応する数値を指定した場合、レベルに対応した文字列表現を返します。そうでない場合、文字列 "
1809-
"'Level %s' % lvl を返します。"
18101789

18111790
#:../../library/logging.rst:1088
18121791
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp