55#
66# Translators:
77# tomo, 2018
8+ # Osamu NAKAMURA, 2019
89#
910#, fuzzy
1011msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314"Report-Msgid-Bugs-To : \n "
1415"POT-Creation-Date : 2019-01-01 10:14+0900\n "
1516"PO-Revision-Date : 2018-06-29 21:06+0000\n "
16- "Last-Translator : tomo, 2018 \n "
17+ "Last-Translator : Osamu NAKAMURA, 2019 \n "
1718"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
1819"MIME-Version : 1.0\n "
1920"Content-Type : text/plain; charset=UTF-8\n "
@@ -82,54 +83,56 @@ msgstr ""
8283
8384#: ../../library/contextvars.rst:49
8485msgid "The name of the variable. This is a read-only property."
85- msgstr ""
86+ msgstr "変数の名前。読み出し専用のプロパティです。 "
8687
8788#: ../../library/contextvars.rst:55
8889msgid "Return a value for the context variable for the current context."
89- msgstr ""
90+ msgstr "現在のコンテキストのコンテキスト変数の値を返します。 "
9091
9192#: ../../library/contextvars.rst:57
9293msgid ""
9394"If there is no value for the variable in the current context, the method "
9495"will:"
95- msgstr ""
96+ msgstr "現在のコンテキストのコンテキスト変数に値がなければ、メソッドは: "
9697
9798#: ../../library/contextvars.rst:60
9899msgid ""
99100"return the value of the *default* argument of the method, if provided; or"
100- msgstr ""
101+ msgstr "メソッドの *default* 引数に値が指定されていればその値を返します。さもなければ "
101102
102103#: ../../library/contextvars.rst:63
103104msgid ""
104105"return the default value for the context variable, if it was created with "
105106"one; or"
106- msgstr ""
107+ msgstr "コンテキスト変数が生成された時にデフォルト値が渡されていれば、その値を返します。さもなければ "
107108
108109#: ../../library/contextvars.rst:66
109110msgid "raise a :exc:`LookupError`."
110- msgstr ""
111+ msgstr ":exc:`LookupError` を送出します。 "
111112
112113#: ../../library/contextvars.rst:70
113114msgid ""
114115"Call to set a new value for the context variable in the current context."
115- msgstr ""
116+ msgstr "現在のコンテキストのコンテキスト変数に新しい値を設定する際に呼び出します。 "
116117
117118#: ../../library/contextvars.rst:73
118119msgid ""
119120"The required *value* argument is the new value for the context variable."
120- msgstr ""
121+ msgstr "*value* は必須の引数で、コンテキスト変数の新しい値を指定します。 "
121122
122123#: ../../library/contextvars.rst:76
123124msgid ""
124125"Returns a :class:`~contextvars.Token` object that can be used to restore the"
125126" variable to its previous value via the :meth:`ContextVar.reset` method."
126127msgstr ""
128+ ":class:`~contextvars.Token` オブジェクトを返します。このオブジェクトを :meth:`ContextVar.reset` "
129+ "メソッドに渡すことで、以前の値に戻すことができます。"
127130
128131#: ../../library/contextvars.rst:82
129132msgid ""
130133"Reset the context variable to the value it had before the "
131134":meth:`ContextVar.set` that created the *token* was used."
132- msgstr ""
135+ msgstr "コンテキスト変数の値を、 *token* を生成した :meth:`ContextVar.set` が呼び出される前の値にリセットします。 "
133136
134137#: ../../library/contextvars.rst:85
135138msgid "For example::"
@@ -141,31 +144,35 @@ msgid ""
141144"be passed to the :meth:`ContextVar.reset` method to revert the value of the "
142145"variable to what it was before the corresponding *set*."
143146msgstr ""
147+ "*Token* オブジェクトは、:meth:`ContextVar.set` メソッドによって返されるオブジェクトです。このオブジェクトを "
148+ ":meth:`ContextVar.reset` メソッドに渡すことで、対応する *set* を呼び出す前のコンテキスト変数の値に戻せます。"
144149
145150#: ../../library/contextvars.rst:106
146151msgid ""
147152"A read-only property. Points to the :class:`ContextVar` object that created"
148153" the token."
149- msgstr ""
154+ msgstr "読み出し専用のプロパティです。トークンを生成した :class:`ContextVar` オブジェクトを指します。 "
150155
151156#: ../../library/contextvars.rst:111
152157msgid ""
153158"A read-only property. Set to the value the variable had before the "
154159":meth:`ContextVar.set` method call that created the token. It points to "
155160":attr:`Token.MISSING` is the variable was not set before the call."
156161msgstr ""
162+ "読み出し専用のプロパティです。このトークンを返した :meth:`ContextVar.set` "
163+ "メソッドの呼び出し前に設定されていた値を返します。もし呼び出しの前に値が設定されていなければ :attr:`Token.MISSING` を返します。"
157164
158165#: ../../library/contextvars.rst:118
159166msgid "A marker object used by :attr:`Token.old_value`."
160- msgstr ""
167+ msgstr ":attr:`Token.old_value` で利用されるマーカーオブジェクトです。 "
161168
162169#: ../../library/contextvars.rst:122
163170msgid "Manual Context Management"
164- msgstr ""
171+ msgstr "マニュアルでのコンテキスト管理 "
165172
166173#: ../../library/contextvars.rst:126
167174msgid "Returns a copy of the current :class:`~contextvars.Context` object."
168- msgstr ""
175+ msgstr "現在の :class:`~contextvars.Context` オブジェクトのコピーを返します。 "
169176
170177#: ../../library/contextvars.rst:128
171178msgid ""
0 commit comments