@@ -26,252 +26,14 @@ msgid ""
26
26
":ref:`removed in Python 3.13 <whatsnew313-pep594>` after being deprecated"
27
27
" in Python 3.11. The removal was decided in :pep:`594`."
28
28
msgstr ""
29
+ "이 모듈은 더는 파이썬 표준 라이브러리에 포함되지 않습니다. 파이썬 3.11 에서 폐지된 후 :ref:`파이썬 3.13 에서 제거 "
30
+ "<whatsnew313-pep594>`\\ 되었습니다. 제거는 :pep:`594` 에서 결정되었습니다."
29
31
30
32
#: ../../library/chunk.rst:14
31
33
msgid ""
32
34
"The last version of Python that provided the :mod:`!chunk` module was "
33
35
"`Python 3.12 <https://docs.python.org/3.12/library/chunk.html>`_."
34
36
msgstr ""
35
-
36
- #~ msgid "**Source code:** :source:`Lib/chunk.py`"
37
- #~ msgstr "**소스 코드:** :source:`Lib/chunk.py`"
38
-
39
- #~ msgid ""
40
- #~ "This module provides an interface for"
41
- #~ " reading files that use EA IFF "
42
- #~ "85 chunks. [#]_ This format is "
43
- #~ "used in at least the Audio "
44
- #~ "Interchange File Format (AIFF/AIFF-C) and "
45
- #~ "the Real Media File Format (RMFF). "
46
- #~ "The WAVE audio file format is "
47
- #~ "closely related and can also be "
48
- #~ "read using this module."
49
- #~ msgstr ""
50
- #~ "이 모듈은 EA IFF 85 청크를 사용하는 파일을"
51
- #~ " 읽기 위한 인터페이스를 제공합니다. [#]_ 이 형식은"
52
- #~ " 적어도 AIFF/AIFF-C (Audio Interchange File"
53
- #~ " Format) 와 RMFF (Real Media File "
54
- #~ "Format)에서 사용됩니다. WAVE 오디오 파일 형식은 "
55
- #~ "밀접하게 관련되어 있으며 이 모듈을 사용하여 읽을 "
56
- #~ "수도 있습니다."
57
-
58
- #~ msgid "A chunk has the following structure:"
59
- #~ msgstr "청크의 구조는 다음과 같습니다:"
60
-
61
- #~ msgid "Offset"
62
- #~ msgstr "오프셋"
63
-
64
- #~ msgid "Length"
65
- #~ msgstr "길이"
66
-
67
- #~ msgid "Contents"
68
- #~ msgstr "내용"
69
-
70
- #~ msgid "0"
71
- #~ msgstr "0"
72
-
73
- #~ msgid "4"
74
- #~ msgstr "4"
75
-
76
- #~ msgid "Chunk ID"
77
- #~ msgstr "청크 ID"
78
-
79
- #~ msgid "Size of chunk in big-endian byte order, not including the header"
80
- #~ msgstr "빅 엔디안 바이트 순서로 청크의 크기. 헤더는 포함하지 않습니다."
81
-
82
- #~ msgid "8"
83
- #~ msgstr "8"
84
-
85
- #~ msgid "*n*"
86
- #~ msgstr "*n*"
87
-
88
- #~ msgid "Data bytes, where *n* is the size given in the preceding field"
89
- #~ msgstr "데이터 바이트. 여기서 *n*\\은 앞 필드에서 주어진 크기입니다."
90
-
91
- #~ msgid "8 + *n*"
92
- #~ msgstr "8 + *n*"
93
-
94
- #~ msgid "0 or 1"
95
- #~ msgstr "0 또는 1"
96
-
97
- #~ msgid "Pad byte needed if *n* is odd and chunk alignment is used"
98
- #~ msgstr "*n*\\가 홀수이고 청크 정렬이 사용된 경우 필요한 패드 바이트"
99
-
100
- #~ msgid "The ID is a 4-byte string which identifies the type of chunk."
101
- #~ msgstr "ID는 청크의 유형을 식별하는 4바이트 문자열입니다."
102
-
103
- #~ msgid ""
104
- #~ "The size field (a 32-bit value, "
105
- #~ "encoded using big-endian byte order) "
106
- #~ "gives the size of the chunk data,"
107
- #~ " not including the 8-byte header."
108
- #~ msgstr ""
109
- #~ "크기 필드(빅 엔디안 바이트 순서를 사용하여 인코딩된 "
110
- #~ "32비트 값)는 청크 데이터의 크기를 제공하며, 8바이트"
111
- #~ " 헤더는 포함하지 않습니다."
112
-
113
- #~ msgid ""
114
- #~ "Usually an IFF-type file consists "
115
- #~ "of one or more chunks. The "
116
- #~ "proposed usage of the :class:`Chunk` "
117
- #~ "class defined here is to instantiate "
118
- #~ "an instance at the start of each"
119
- #~ " chunk and read from the instance "
120
- #~ "until it reaches the end, after "
121
- #~ "which a new instance can be "
122
- #~ "instantiated. At the end of the "
123
- #~ "file, creating a new instance will "
124
- #~ "fail with an :exc:`EOFError` exception."
125
- #~ msgstr ""
126
- #~ "일반적으로 IFF 형식의 파일은 하나 이상의 청크로 "
127
- #~ "구성됩니다. 여기에 정의된 :class:`Chunk` 클래스의 제안"
128
- #~ " 된 사용법은 각 청크의 시작 부분에서 인스턴스를 "
129
- #~ "만들고 끝까지 도달할 때까지 인스턴스에서 읽는 것입니다."
130
- #~ " 그다음에 새 인스턴스를 만들 수 있습니다. 파일의"
131
- #~ " 끝에서, 새 인스턴스를 만드는 것은 :exc:`EOFError`"
132
- #~ " 예외로 실패합니다."
133
-
134
- #~ msgid ""
135
- #~ "Class which represents a chunk. The "
136
- #~ "*file* argument is expected to be "
137
- #~ "a file-like object. An instance "
138
- #~ "of this class is specifically allowed."
139
- #~ " The only method that is needed "
140
- #~ "is :meth:`~io.IOBase.read`. If the methods"
141
- #~ " :meth:`~io.IOBase.seek` and :meth:`~io.IOBase.tell`"
142
- #~ " are present and don't raise an "
143
- #~ "exception, they are also used. If "
144
- #~ "these methods are present and raise "
145
- #~ "an exception, they are expected to "
146
- #~ "not have altered the object. If "
147
- #~ "the optional argument *align* is true,"
148
- #~ " chunks are assumed to be aligned "
149
- #~ "on 2-byte boundaries. If *align* is "
150
- #~ "false, no alignment is assumed. The "
151
- #~ "default value is true. If the "
152
- #~ "optional argument *bigendian* is false, "
153
- #~ "the chunk size is assumed to be"
154
- #~ " in little-endian order. This is "
155
- #~ "needed for WAVE audio files. The "
156
- #~ "default value is true. If the "
157
- #~ "optional argument *inclheader* is true, "
158
- #~ "the size given in the chunk header"
159
- #~ " includes the size of the header."
160
- #~ " The default value is false."
161
- #~ msgstr ""
162
- #~ "청크를 나타내는 클래스. *file* 인자는 파일류 객체를"
163
- #~ " 기대합니다. 이 클래스의 인스턴스가 특별히 허용됩니다. "
164
- #~ "필요한 유일한 메서드는 :meth:`~io.IOBase.read`\\입니다. "
165
- #~ ":meth:`~io.IOBase.seek` 와 :meth:`~io.IOBase.tell` "
166
- #~ "메서드가 있고 예외를 발생시키지 않으면 이것들도 사용됩니다."
167
- #~ " 이러한 메서드가 존재하고, 예외가 발생하면, 객체가 "
168
- #~ "변경되지 않았을 것으로 기대합니다. 선택적 인자 "
169
- #~ "*align*\\이 참이면, 청크는 2바이트 경계에서 정렬되는 "
170
- #~ "것으로 가정합니다. *align*\\이 거짓이면 정렬을 가정하지 "
171
- #~ "않습니다. 기본값은 참입니다. 선택적 인자 *bigendian*\\이"
172
- #~ " 거짓이면 청크 크기는 리틀 엔디안 순서로 간주합니다."
173
- #~ " 이것은 WAVE 오디오 파일에 필요합니다. 기본값은 "
174
- #~ "참입니다. 선택적 인자 *inclheader*\\가 참이면, 청크 "
175
- #~ "헤더에 주어진 크기는 헤더의 크기를 포함합니다. 기본값은"
176
- #~ " 거짓입니다."
177
-
178
- #~ msgid "A :class:`Chunk` object supports the following methods:"
179
- #~ msgstr ":class:`Chunk` 객체는 다음 메서드를 지원합니다:"
180
-
181
- #~ msgid ""
182
- #~ "Returns the name (ID) of the "
183
- #~ "chunk. This is the first 4 bytes"
184
- #~ " of the chunk."
185
- #~ msgstr "청크의 이름(ID)을 돌려줍니다. 이것은 청크의 처음 4바이트입니다."
186
-
187
- #~ msgid "Returns the size of the chunk."
188
- #~ msgstr "청크의 크기를 돌려줍니다."
189
-
190
- #~ msgid ""
191
- #~ "Close and skip to the end of "
192
- #~ "the chunk. This does not close "
193
- #~ "the underlying file."
194
- #~ msgstr "닫고 청크의 끝으로 건너뜁니다. 하부 파일을 닫지 않습니다."
195
-
196
- #~ msgid ""
197
- #~ "The remaining methods will raise "
198
- #~ ":exc:`OSError` if called after the "
199
- #~ ":meth:`close` method has been called. "
200
- #~ "Before Python 3.3, they used to "
201
- #~ "raise :exc:`IOError`, now an alias of"
202
- #~ " :exc:`OSError`."
203
- #~ msgstr ""
204
- #~ "나머지 메서드는 :meth:`close` 메서드가 호출된 후에 "
205
- #~ "호출되면 :exc:`OSError`\\를 발생시킵니다. 파이썬 3.3 "
206
- #~ "이전에는 :exc:`IOError`\\를 발생시켰습니다. 이제는 "
207
- #~ ":exc:`OSError`\\의 별칭입니다."
208
-
209
- #~ msgid "Returns ``False``."
210
- #~ msgstr "``False``\\를 반환합니다."
211
-
212
- #~ msgid ""
213
- #~ "Set the chunk's current position. The"
214
- #~ " *whence* argument is optional and "
215
- #~ "defaults to ``0`` (absolute file "
216
- #~ "positioning); other values are ``1`` "
217
- #~ "(seek relative to the current position)"
218
- #~ " and ``2`` (seek relative to the "
219
- #~ "file's end). There is no return "
220
- #~ "value. If the underlying file does "
221
- #~ "not allow seek, only forward seeks "
222
- #~ "are allowed."
223
- #~ msgstr ""
224
- #~ "청크의 현재 위치를 설정합니다. *whence* 인자는 선택"
225
- #~ " 사항이며 기본값은 ``0``\\(절대 파일 위치 지정)입니다;"
226
- #~ " 다른 값은 ``1``\\(현재 위치에 상대적인 탐색)과 "
227
- #~ "``2``\\(파일의 끝에 상대적인 탐색)입니다. 반환 값이 "
228
- #~ "없습니다. 하부 파일이 탐색을 허용하지 않으면, 정방향 "
229
- #~ "탐색만 허용됩니다."
230
-
231
- #~ msgid "Return the current position into the chunk."
232
- #~ msgstr "청크의 현재 위치를 반환합니다."
233
-
234
- #~ msgid ""
235
- #~ "Read at most *size* bytes from the"
236
- #~ " chunk (less if the read hits "
237
- #~ "the end of the chunk before "
238
- #~ "obtaining *size* bytes). If the *size*"
239
- #~ " argument is negative or omitted, "
240
- #~ "read all data until the end of "
241
- #~ "the chunk. An empty bytes object "
242
- #~ "is returned when the end of the"
243
- #~ " chunk is encountered immediately."
244
- #~ msgstr ""
245
- #~ "청크에서 최대 *size* 바이트를 읽습니다 (*size* "
246
- #~ "바이트를 얻기 전에 read가 청크 끝에 도달하면 "
247
- #~ "덜 읽을 수 있습니다). *size* 인자가 음수이거나 "
248
- #~ "생략되면, 청크의 끝까지 모든 데이터를 읽습니다. 청크의"
249
- #~ " 끝이 즉시 발견되면 빈 바이트열 객체가 반환됩니다."
250
-
251
- #~ msgid ""
252
- #~ "Skip to the end of the chunk. "
253
- #~ "All further calls to :meth:`read` for"
254
- #~ " the chunk will return ``b''``. If"
255
- #~ " you are not interested in the "
256
- #~ "contents of the chunk, this method "
257
- #~ "should be called so that the file"
258
- #~ " points to the start of the "
259
- #~ "next chunk."
260
- #~ msgstr ""
261
- #~ "청크의 끝으로 건너뜁니다. 청크에 대한 모든 추가 "
262
- #~ ":meth:`read` 호출은 ``b''``\\를 반환합니다. 청크의 "
263
- #~ "내용에 관심이 없으면, 파일이 다음 청크의 시작을 "
264
- #~ "가리키도록 이 메서드를 호출해야 합니다."
265
-
266
- #~ msgid "Footnotes"
267
- #~ msgstr "각주"
268
-
269
- #~ msgid ""
270
- #~ "\"EA IFF 85\" Standard for Interchange"
271
- #~ " Format Files, Jerry Morrison, Electronic"
272
- #~ " Arts, January 1985."
273
- #~ msgstr ""
274
- #~ "\"EA IFF 85\" Standard for Interchange"
275
- #~ " Format Files, Jerry Morrison, Electronic"
276
- #~ " Arts, 1985년 1월."
37
+ ":mod:`!chunk` 모듈을 제공한 마지막 파이썬 버전은 `파이썬 3.12 "
38
+ "<https://docs.python.org/ko/3.12/library/chunk.html>`_ 입니다."
277
39
0 commit comments