5
5
#
6
6
# Translators:
7
7
# tomo, 2018
8
+ # Osamu NAKAMURA, 2019
8
9
#
9
10
#, fuzzy
10
11
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
13
14
"Report-Msgid-Bugs-To : \n "
14
15
"POT-Creation-Date : 2019-01-01 10:14+0900\n "
15
16
"PO-Revision-Date : 2018-06-29 21:06+0000\n "
16
- "Last-Translator : tomo, 2018 \n "
17
+ "Last-Translator : Osamu NAKAMURA, 2019 \n "
17
18
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
18
19
"MIME-Version : 1.0\n "
19
20
"Content-Type : text/plain; charset=UTF-8\n "
@@ -82,54 +83,56 @@ msgstr ""
82
83
83
84
#: ../../library/contextvars.rst:49
84
85
msgid "The name of the variable. This is a read-only property."
85
- msgstr ""
86
+ msgstr "変数の名前。読み出し専用のプロパティです。 "
86
87
87
88
#: ../../library/contextvars.rst:55
88
89
msgid "Return a value for the context variable for the current context."
89
- msgstr ""
90
+ msgstr "現在のコンテキストのコンテキスト変数の値を返します。 "
90
91
91
92
#: ../../library/contextvars.rst:57
92
93
msgid ""
93
94
"If there is no value for the variable in the current context, the method "
94
95
"will:"
95
- msgstr ""
96
+ msgstr "現在のコンテキストのコンテキスト変数に値がなければ、メソッドは: "
96
97
97
98
#: ../../library/contextvars.rst:60
98
99
msgid ""
99
100
"return the value of the *default* argument of the method, if provided; or"
100
- msgstr ""
101
+ msgstr "メソッドの *default* 引数に値が指定されていればその値を返します。さもなければ "
101
102
102
103
#: ../../library/contextvars.rst:63
103
104
msgid ""
104
105
"return the default value for the context variable, if it was created with "
105
106
"one; or"
106
- msgstr ""
107
+ msgstr "コンテキスト変数が生成された時にデフォルト値が渡されていれば、その値を返します。さもなければ "
107
108
108
109
#: ../../library/contextvars.rst:66
109
110
msgid "raise a :exc:`LookupError`."
110
- msgstr ""
111
+ msgstr ":exc:`LookupError` を送出します。 "
111
112
112
113
#: ../../library/contextvars.rst:70
113
114
msgid ""
114
115
"Call to set a new value for the context variable in the current context."
115
- msgstr ""
116
+ msgstr "現在のコンテキストのコンテキスト変数に新しい値を設定する際に呼び出します。 "
116
117
117
118
#: ../../library/contextvars.rst:73
118
119
msgid ""
119
120
"The required *value* argument is the new value for the context variable."
120
- msgstr ""
121
+ msgstr "*value* は必須の引数で、コンテキスト変数の新しい値を指定します。 "
121
122
122
123
#: ../../library/contextvars.rst:76
123
124
msgid ""
124
125
"Returns a :class:`~contextvars.Token` object that can be used to restore the"
125
126
" variable to its previous value via the :meth:`ContextVar.reset` method."
126
127
msgstr ""
128
+ ":class:`~contextvars.Token` オブジェクトを返します。このオブジェクトを :meth:`ContextVar.reset` "
129
+ "メソッドに渡すことで、以前の値に戻すことができます。"
127
130
128
131
#: ../../library/contextvars.rst:82
129
132
msgid ""
130
133
"Reset the context variable to the value it had before the "
131
134
":meth:`ContextVar.set` that created the *token* was used."
132
- msgstr ""
135
+ msgstr "コンテキスト変数の値を、 *token* を生成した :meth:`ContextVar.set` が呼び出される前の値にリセットします。 "
133
136
134
137
#: ../../library/contextvars.rst:85
135
138
msgid "For example::"
@@ -141,31 +144,35 @@ msgid ""
141
144
"be passed to the :meth:`ContextVar.reset` method to revert the value of the "
142
145
"variable to what it was before the corresponding *set*."
143
146
msgstr ""
147
+ "*Token* オブジェクトは、:meth:`ContextVar.set` メソッドによって返されるオブジェクトです。このオブジェクトを "
148
+ ":meth:`ContextVar.reset` メソッドに渡すことで、対応する *set* を呼び出す前のコンテキスト変数の値に戻せます。"
144
149
145
150
#: ../../library/contextvars.rst:106
146
151
msgid ""
147
152
"A read-only property. Points to the :class:`ContextVar` object that created"
148
153
" the token."
149
- msgstr ""
154
+ msgstr "読み出し専用のプロパティです。トークンを生成した :class:`ContextVar` オブジェクトを指します。 "
150
155
151
156
#: ../../library/contextvars.rst:111
152
157
msgid ""
153
158
"A read-only property. Set to the value the variable had before the "
154
159
":meth:`ContextVar.set` method call that created the token. It points to "
155
160
":attr:`Token.MISSING` is the variable was not set before the call."
156
161
msgstr ""
162
+ "読み出し専用のプロパティです。このトークンを返した :meth:`ContextVar.set` "
163
+ "メソッドの呼び出し前に設定されていた値を返します。もし呼び出しの前に値が設定されていなければ :attr:`Token.MISSING` を返します。"
157
164
158
165
#: ../../library/contextvars.rst:118
159
166
msgid "A marker object used by :attr:`Token.old_value`."
160
- msgstr ""
167
+ msgstr ":attr:`Token.old_value` で利用されるマーカーオブジェクトです。 "
161
168
162
169
#: ../../library/contextvars.rst:122
163
170
msgid "Manual Context Management"
164
- msgstr ""
171
+ msgstr "マニュアルでのコンテキスト管理 "
165
172
166
173
#: ../../library/contextvars.rst:126
167
174
msgid "Returns a copy of the current :class:`~contextvars.Context` object."
168
- msgstr ""
175
+ msgstr "現在の :class:`~contextvars.Context` オブジェクトのコピーを返します。 "
169
176
170
177
#: ../../library/contextvars.rst:128
171
178
msgid ""
0 commit comments