8
8
msgstr ""
9
9
"Project-Id-Version : Python 3.6\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2018-01-05 15:01+0000 \n "
11
+ "POT-Creation-Date : 2018-09-25 14:29+0900 \n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : tomo🐧, 2018\n "
14
14
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -52,47 +52,54 @@ msgstr ""
52
52
"モジュールは悪意を持って作成されたデータに対して安全ではありません。信頼できないデータや認証されていないデータをパースする必要がある場合は :ref"
53
53
":`xml-vulnerabilities` を参照してください。"
54
54
55
- #: ../../library/xml.dom.pulldom.rst:29
55
+ #: ../../library/xml.dom.pulldom.rst:30
56
+ msgid ""
57
+ "The SAX parser no longer processes general external entities by default to "
58
+ "increase security by default. To enable processing of external entities, "
59
+ "pass a custom parser instance in::"
60
+ msgstr ""
61
+
62
+ #: ../../library/xml.dom.pulldom.rst:43
56
63
msgid "Example::"
57
64
msgstr "以下はプログラム例です::"
58
65
59
- #: ../../library/xml.dom.pulldom.rst:40
66
+ #: ../../library/xml.dom.pulldom.rst:54
60
67
msgid "``event`` is a constant and can be one of:"
61
68
msgstr "``event`` は定数で以下の内の一つです:"
62
69
63
- #: ../../library/xml.dom.pulldom.rst:42
70
+ #: ../../library/xml.dom.pulldom.rst:56
64
71
msgid ":data:`START_ELEMENT`"
65
72
msgstr ":data:`START_ELEMENT`"
66
73
67
- #: ../../library/xml.dom.pulldom.rst:43
74
+ #: ../../library/xml.dom.pulldom.rst:57
68
75
msgid ":data:`END_ELEMENT`"
69
76
msgstr ":data:`END_ELEMENT`"
70
77
71
- #: ../../library/xml.dom.pulldom.rst:44
78
+ #: ../../library/xml.dom.pulldom.rst:58
72
79
msgid ":data:`COMMENT`"
73
80
msgstr ":data:`COMMENT`"
74
81
75
- #: ../../library/xml.dom.pulldom.rst:45
82
+ #: ../../library/xml.dom.pulldom.rst:59
76
83
msgid ":data:`START_DOCUMENT`"
77
84
msgstr ":data:`START_DOCUMENT`"
78
85
79
- #: ../../library/xml.dom.pulldom.rst:46
86
+ #: ../../library/xml.dom.pulldom.rst:60
80
87
msgid ":data:`END_DOCUMENT`"
81
88
msgstr ":data:`END_DOCUMENT`"
82
89
83
- #: ../../library/xml.dom.pulldom.rst:47
90
+ #: ../../library/xml.dom.pulldom.rst:61
84
91
msgid ":data:`CHARACTERS`"
85
92
msgstr ":data:`CHARACTERS`"
86
93
87
- #: ../../library/xml.dom.pulldom.rst:48
94
+ #: ../../library/xml.dom.pulldom.rst:62
88
95
msgid ":data:`PROCESSING_INSTRUCTION`"
89
96
msgstr ":data:`PROCESSING_INSTRUCTION`"
90
97
91
- #: ../../library/xml.dom.pulldom.rst:49
98
+ #: ../../library/xml.dom.pulldom.rst:63
92
99
msgid ":data:`IGNORABLE_WHITESPACE`"
93
100
msgstr ":data:`IGNORABLE_WHITESPACE`"
94
101
95
- #: ../../library/xml.dom.pulldom.rst:51
102
+ #: ../../library/xml.dom.pulldom.rst:65
96
103
msgid ""
97
104
"``node`` is an object of type :class:`xml.dom.minidom.Document`, "
98
105
":class:`xml.dom.minidom.Element` or :class:`xml.dom.minidom.Text`."
@@ -101,7 +108,7 @@ msgstr ""
101
108
":class:`xml.dom.minidom.Element` または :class:`xml.dom.minidom.Text` "
102
109
"のオブジェクトです。"
103
110
104
- #: ../../library/xml.dom.pulldom.rst:54
111
+ #: ../../library/xml.dom.pulldom.rst:68
105
112
msgid ""
106
113
"Since the document is treated as a \" flat\" stream of events, the document "
107
114
"\" tree\" is implicitly traversed and the desired elements are found "
@@ -118,11 +125,11 @@ msgstr ""
118
125
" (すなわち文章中の任意の点の場所を記憶する) か、 :func:`DOMEventStream.expandNode` メソッドを使用して DOM "
119
126
"関連の処理に切り替える必要があります。"
120
127
121
- #: ../../library/xml.dom.pulldom.rst:66 ../../library/xml.dom.pulldom.rst:71
128
+ #: ../../library/xml.dom.pulldom.rst:80 ../../library/xml.dom.pulldom.rst:85
122
129
msgid "Subclass of :class:`xml.sax.handler.ContentHandler`."
123
130
msgstr ":class:`xml.sax.handler.ContentHandler` のサブクラスです。"
124
131
125
- #: ../../library/xml.dom.pulldom.rst:76
132
+ #: ../../library/xml.dom.pulldom.rst:90
126
133
msgid ""
127
134
"Return a :class:`DOMEventStream` from the given input. *stream_or_string* "
128
135
"may be either a file name, or a file-like object. *parser*, if given, must "
@@ -137,32 +144,32 @@ msgstr ""
137
144
"オブジェクトでなければなりません。この関数はパーザの文書ハンドラを変えて名前空間のサポートを有効にします。パーザの他の設定 "
138
145
"(例えばエンティティリゾルバ) は前もってしておかなければなりません。"
139
146
140
- #: ../../library/xml.dom.pulldom.rst:83
147
+ #: ../../library/xml.dom.pulldom.rst:97
141
148
msgid ""
142
149
"If you have XML in a string, you can use the :func:`parseString` function "
143
150
"instead:"
144
151
msgstr "XML データを文字列で持っている場合、 :func:`parseString` を代わりに使うことができます:"
145
152
146
- #: ../../library/xml.dom.pulldom.rst:87
153
+ #: ../../library/xml.dom.pulldom.rst:101
147
154
msgid ""
148
155
"Return a :class:`DOMEventStream` that represents the (Unicode) *string*."
149
156
msgstr "(ユニコード) *string* を表す :class:`DOMEventStream` を返します。"
150
157
151
- #: ../../library/xml.dom.pulldom.rst:91
158
+ #: ../../library/xml.dom.pulldom.rst:105
152
159
msgid "Default value for the *bufsize* parameter to :func:`parse`."
153
160
msgstr ":func:`parse` の *bufsize* パラメタのデフォルト値です。"
154
161
155
- #: ../../library/xml.dom.pulldom.rst:93
162
+ #: ../../library/xml.dom.pulldom.rst:107
156
163
msgid ""
157
164
"The value of this variable can be changed before calling :func:`parse` and "
158
165
"the new value will take effect."
159
166
msgstr "この変数の値は :func:`parse` を呼び出す前に変更することができます。その場合、その新しい値が有効になります。"
160
167
161
- #: ../../library/xml.dom.pulldom.rst:99
168
+ #: ../../library/xml.dom.pulldom.rst:113
162
169
msgid "DOMEventStream Objects"
163
170
msgstr "DOMEventStream オブジェクト"
164
171
165
- #: ../../library/xml.dom.pulldom.rst:106
172
+ #: ../../library/xml.dom.pulldom.rst:120
166
173
msgid ""
167
174
"Return a tuple containing *event* and the current *node* as "
168
175
":class:`xml.dom.minidom.Document` if event equals :data:`START_DOCUMENT`, "
@@ -172,6 +179,6 @@ msgid ""
172
179
"children, unless :func:`expandNode` is called."
173
180
msgstr ""
174
181
175
- #: ../../library/xml.dom.pulldom.rst:116
182
+ #: ../../library/xml.dom.pulldom.rst:130
176
183
msgid "Expands all children of *node* into *node*. Example::"
177
184
msgstr "*node* の全子ノードを *node* に展開します。例::"
0 commit comments