@@ -19,7 +19,7 @@ msgid ""
19
19
msgstr ""
20
20
"Project-Id-Version :Python 3.8\n "
21
21
"Report-Msgid-Bugs-To :\n "
22
- "POT-Creation-Date :2019-09-01 14:24 +0000\n "
22
+ "POT-Creation-Date :2019-10-04 11:35 +0000\n "
23
23
"PO-Revision-Date :2017-02-16 23:17+0000\n "
24
24
"Last-Translator :tomo, 2019\n "
25
25
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -247,14 +247,11 @@ msgstr ""
247
247
248
248
#: ../../library/logging.rst:129
249
249
msgid ""
250
- "Indicates if a message of severity *lvl * would be processed by this logger. "
251
- "This method checks first the module-level level set by "
252
- "``logging.disable(lvl )`` and then the logger's effective level asdetermined "
253
- " by :meth:`getEffectiveLevel`."
250
+ "Indicates if a message of severity *level * would be processed by this "
251
+ "logger. This method checks first the module-level level set by "
252
+ "``logging.disable(level )`` and then the logger's effective level as "
253
+ "determined by :meth:`getEffectiveLevel`."
254
254
msgstr ""
255
- "深刻度が *lvl* のメッセージが、このロガーで処理されることになっているかどうかを示します。このメソッドはまず、 "
256
- "``logging.disable(lvl)`` で設定されるモジュールレベルの深刻度レベルを調べ、次にロガーの実効レベルを "
257
- ":meth:`getEffectiveLevel` で調べます。"
258
255
259
256
#: ../../library/logging.rst:137
260
257
msgid ""
@@ -455,10 +452,9 @@ msgstr ""
455
452
456
453
#: ../../library/logging.rst:274
457
454
msgid ""
458
- "Logs a message with integer level *lvl * on this logger. The other arguments "
459
- "are interpreted as for :meth:`debug`."
455
+ "Logs a message with integer level *level * on this logger. The other "
456
+ "arguments are interpreted as for :meth:`debug`."
460
457
msgstr ""
461
- "整数で表したレベル *lvl* のメッセージをこのロガーで記録します。その他の引数は :meth:`debug` と同じように解釈されます。"
462
458
463
459
#: ../../library/logging.rst:280
464
460
msgid ""
@@ -1779,53 +1775,41 @@ msgstr ""
1779
1775
1780
1776
#: ../../library/logging.rst:1068
1781
1777
msgid ""
1782
- "Provides an overriding level *lvl * for all loggers which takes precedence "
1778
+ "Provides an overriding level *level * for all loggers which takes precedence "
1783
1779
"over the logger's own level. When the need arises to temporarily throttle "
1784
1780
"logging output down across the whole application, this function can be "
1785
- "useful. Its effect is to disable all logging calls of severity *lvl * and "
1781
+ "useful. Its effect is to disable all logging calls of severity *level * and "
1786
1782
"below, so that if you call it with a value of INFO, then all INFO and DEBUG "
1787
1783
"events would be discarded, whereas those of severity WARNING and above would"
1788
1784
" be processed according to the logger's effective level. If "
1789
1785
"``logging.disable(logging.NOTSET)`` is called, it effectively removes this "
1790
1786
"overriding level, so that logging output again depends on the effective "
1791
1787
"levels of individual loggers."
1792
1788
msgstr ""
1793
- "全てのロガーのレベル *lvl* "
1794
- "を上書きし、これはロガー自身の出力レベルよりも優先されます。アプリケーション全体を横断するログ出力を一時的に調整する必要が生じたら、この関数は便利でしょう。これの効果は重大度"
1795
- " *lvl* 以下の全てのロギング呼び出しを無効にすることですので、INFO で呼び出しをすれば、INFO と DEBUG "
1796
- "イベントが捨てられる一方で、重大度 WARNING 以上のものは、ロガーの有効レベルに基いて処理されます。 "
1797
- "``logging.disable(logging.NOTSET)`` "
1798
- "が呼び出されると、この上書きレベルは削除され、ログ出力は再び個々のロガーの有効レベルに依存するようになります。"
1799
1789
1800
1790
#: ../../library/logging.rst:1079
1801
1791
msgid ""
1802
1792
"Note that if you have defined any custom logging level higher than "
1803
1793
"``CRITICAL`` (this is not recommended), you won't be able to rely on the "
1804
- "default value for the *lvl * parameter, but will have to explicitly supply a "
1805
- "suitable value."
1794
+ "default value for the *level * parameter, but will have to explicitly supply "
1795
+ "a suitable value."
1806
1796
msgstr ""
1807
- "``CRITICAL`` より高い独自のログレベル (これは推奨されません) を定義した場合は、 *lvl* "
1808
- "引数のデフォルト値を当てにできなくなり、適切な値を明示的に与える必要があります。"
1809
1797
1810
1798
#: ../../library/logging.rst:1084
1811
1799
msgid ""
1812
- "The *lvl * parameter was defaulted to level ``CRITICAL``. See Issue #28524 "
1800
+ "The *level * parameter was defaulted to level ``CRITICAL``. See Issue #28524 "
1813
1801
"for more information about this change."
1814
1802
msgstr ""
1815
- "*lvl* 引数のデフォルトが ``CRITICAL`` レベルになりました。\n"
1816
- "この変更についてのより詳しいことは issue #28524 を参照してください。"
1817
1803
1818
1804
#: ../../library/logging.rst:1090
1819
1805
msgid ""
1820
- "Associates level *lvl * with text *levelName* in an internal dictionary, "
1806
+ "Associates level *level * with text *levelName* in an internal dictionary, "
1821
1807
"which is used to map numeric levels to a textual representation, for example"
1822
1808
" when a :class:`Formatter` formats a message. This function can also be used"
1823
1809
" to define your own levels. The only constraints are that all levels used "
1824
1810
"must be registered using this function, levels should be positive integers "
1825
1811
"and they should increase in increasing order of severity."
1826
1812
msgstr ""
1827
- "内部的な辞書の中でレベル *lvl* をテキスト *levelName* に関連付けます。これは例えば :class:`Formatter` "
1828
- "でメッセージを書式化する際のように、数字のレベルをテキスト表現に対応付ける際に用いられます。この関数は自作のレベルを定義するために使うこともできます。使われるレベルに対する唯一の制限は、レベルは正の整数でなくてはならず、メッセージの深刻度が上がるに従ってレベルの数も上がらなくてはならないということです。"
1829
1813
1830
1814
#: ../../library/logging.rst:1097
1831
1815
msgid ""
@@ -1835,20 +1819,15 @@ msgstr "独自のレベルを定義したい場合、 :ref:`custom-levels` の
1835
1819
1836
1820
#: ../../library/logging.rst:1102
1837
1821
msgid ""
1838
- "Returns the textual representation of logging level *lvl *. If the level is "
1839
- "one of the predefined levels :const:`CRITICAL`, :const:`ERROR`, "
1822
+ "Returns the textual representation of logging level *level *. If the level is"
1823
+ " one of the predefined levels :const:`CRITICAL`, :const:`ERROR`, "
1840
1824
":const:`WARNING`, :const:`INFO` or :const:`DEBUG` then you get the "
1841
1825
"corresponding string. If you have associated levels with names using "
1842
- ":func:`addLevelName` then the name you have associated with *lvl * is "
1826
+ ":func:`addLevelName` then the name you have associated with *level * is "
1843
1827
"returned. If a numeric value corresponding to one of the defined levels is "
1844
1828
"passed in, the corresponding string representation is returned. Otherwise, "
1845
- "the string 'Level %s' %lvl is returned."
1829
+ "the string 'Level %s' %level is returned."
1846
1830
msgstr ""
1847
- "ログ記録レベル *lvl* のテキスト表現を返します。レベルが定義済みのレベル :const:`CRITICAL`, :const:`ERROR`, "
1848
- ":const:`WARNING`, :const:`INFO`, :const:`DEBUG` のいずれかである場合、対応する文字列が返されます。 "
1849
- ":func:`addLevelName` を使ってレベルに名前を関連付けていた場合、 *lvl* "
1850
- "に関連付けられた名前が返されます。定義済みのレベルに対応する数値を指定した場合、レベルに対応した文字列表現を返します。そうでない場合、文字列 "
1851
- "'Level %s' % lvl を返します。"
1852
1831
1853
1832
#: ../../library/logging.rst:1110
1854
1833
msgid ""