@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.7\n "
13
13
"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 "
15
15
"PO-Revision-Date : 2019-09-01 02:44+0000\n "
16
16
"Last-Translator : tomo, 2019\n "
17
17
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -239,14 +239,11 @@ msgstr ""
239
239
240
240
#: ../../library/logging.rst:129
241
241
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 as determined "
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`."
246
246
msgstr ""
247
- "深刻度が *lvl* のメッセージが、このロガーで処理されることになっているかどうかを示します。このメソッドはまず、 "
248
- "``logging.disable(lvl)`` で設定されるモジュールレベルの深刻度レベルを調べ、次にロガーの実効レベルを "
249
- ":meth:`getEffectiveLevel` で調べます。"
250
247
251
248
#: ../../library/logging.rst:137
252
249
msgid ""
@@ -438,10 +435,9 @@ msgstr ""
438
435
439
436
#: ../../library/logging.rst:263
440
437
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
+ "arguments are interpreted as for :meth:`debug`."
443
440
msgstr ""
444
- "整数で表したレベル *lvl* のメッセージをこのロガーで記録します。その他の引数は :meth:`debug` と同じように解釈されます。"
445
441
446
442
#: ../../library/logging.rst:269
447
443
msgid ""
@@
8000
-1737,53 +1733,41 @@ msgstr ""
1737
1733
1738
1734
#: ../../library/logging.rst:1046
1739
1735
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 "
1741
1737
"over the logger's own level. When the need arises to temporarily throttle "
1742
1738
"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 "
1744
1740
"below, so that if you call it with a value of INFO, then all INFO and DEBUG "
1745
1741
"events would be discarded, whereas those of severity WARNING and above would"
1746
1742
" be processed according to the logger's effective level. If "
1747
1743
"``logging.disable(logging.NOTSET)`` is called, it effectively removes this "
1748
1744
"overriding level, so that logging output again depends on the effective "
1749
1745
"levels of individual loggers."
1750
1746
msgstr ""
1751
- "全てのロガーのレベル *lvl* "
1752
- "を上書きし、これはロガー自身の出力レベルよりも優先されます。アプリケーション全体を横断するログ出力を一時的に調整する必要が生じたら、この関数は便利でしょう。これの効果は重大度"
1753
- " *lvl* 以下の全てのロギング呼び出しを無効にすることですので、INFO で呼び出しをすれば、INFO と DEBUG "
1754
- "イベントが捨てられる一方で、重大度 WARNING 以上のものは、ロガーの有効レベルに基いて処理されます。 "
1755
- "``logging.disable(logging.NOTSET)`` "
1756
- "が呼び出されると、この上書きレベルは削除され、ログ出力は再び個々のロガーの有効レベルに依存するようになります。"
1757
1747
1758
1748
#: ../../library/logging.rst:1057
1759
1749
msgid ""
1760
1750
"Note that if you have defined any custom logging level higher than "
1761
1751
"``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
+ "a suitable value."
1764
1754
msgstr ""
1765
- "``CRITICAL`` より高い独自のログレベル (これは推奨されません) を定義した場合は、 *lvl* "
1766
- "引数のデフォルト値を当てにできなくなり、適切な値を明示的に与える必要があります。"
1767
1755
1768
1756
#: ../../library/logging.rst:1062
1769
1757
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 "
1771
1759
"for more information about this change."
1772
1760
msgstr ""
1773
- "*lvl* 引数のデフォルトが ``CRITICAL`` レベルになりました。\n"
1774
- "この変更についてのより詳しいことは issue #28524 を参照してください。"
1775
1761
1776
1762
#: ../../library/logging.rst:1068
1777
1763
msgid ""
1778
- "Associates level *lvl * with text *levelName* in an internal dictionary, "
1764
+ "Associates level *level * with text *levelName* in an internal dictionary, "
1779
1765
"which is used to map numeric levels to a textual representation, for example"
1780
1766
" when a :class:`Formatter` formats a message. This function can also be used"
1781
1767
" to define your own levels. The only constraints are that all levels used "
1782
1768
"must be registered using this function, levels should be positive integers "
1783
1769
"and they should increase in increasing order of severity."
1784
1770
msgstr ""
1785
- "内部的な辞書の中でレベル *lvl* をテキスト *levelName* に関連付けます。これは例えば :class:`Formatter` "
1786
- "でメッセージを書式化する際のように、数字のレベルをテキスト表現に対応付ける際に用いられます。この関数は自作のレベルを定義するために使うこともできます。使われるレベルに対する唯一の制限は、レベルは正の整数でなくてはならず、メッセージの深刻度が上がるに従ってレベルの数も上がらなくてはならないということです。"
1787
1771
1788
1772
#: ../../library/logging.rst:1075
1789
1773
msgid ""
@@ -1793,20 +1777,15 @@ msgstr "独自のレベルを定義したい場合、 :ref:`custom-levels` の
1793
1777
1794
1778
#: ../../library/logging.rst:1080
1795
1779
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`, "
1798
1782
":const:`WARNING`, :const:`INFO` or :const:`DEBUG` then you get the "
1799
1783
"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 "
1801
1785
"returned. If a numeric value corresponding to one of the defined levels is "
1802
1786
"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."
1804
1788
msgstr ""
1805
- "ログ記録レベル *lvl* のテキスト表現を返します。レベルが定義済みのレベル :const:`CRITICAL`, :const:`ERROR`, "
1806
- ":const:`WARNING`, :const:`INFO`, :const:`DEBUG` のいずれかである場合、対応する文字列が返されます。 "
1807
- ":func:`addLevelName` を使ってレベルに名前を関連付けていた場合、 *lvl* "
1808
- "に関連付けられた名前が返されます。定義済みのレベルに対応する数値を指定した場合、レベルに対応した文字列表現を返します。そうでない場合、文字列 "
1809
- "'Level %s' % lvl を返します。"
1810
1789
1811
1790
#: ../../library/logging.rst:1088
1812
1791
msgid ""
0 commit comments