@@ -17,12 +17,10 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/binascii.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!binascii` --- Convert between binary and ASCII"
22
- msgstr ":mod:`binascii` --- 바이너리와 ASCII 간의 변환"
21
+ msgstr ":mod:`! binascii` --- 바이너리와 ASCII 간의 변환"
23
22
24
23
#: ../../library/binascii.rst:13
25
- #, fuzzy
26
24
msgid ""
27
25
"The :mod:`binascii` module contains a number of methods to convert "
28
26
"between binary and various ASCII-encoded binary representations. "
@@ -32,9 +30,8 @@ msgid ""
32
30
"higher-level modules."
33
31
msgstr ""
34
32
":mod:`binascii` 모듈에는 바이너리와 다양한 ASCII 인코딩 바이너리 표현 사이를 변환하는 여러 가지 방법이 포함되어 "
35
- "있습니다. 일반적으로 이러한 함수는 직접 사용하지 않고, 대신 :mod:`uu`, :mod:`base64` 또는 "
36
- ":mod:`binhex`\\ 와 같은 래퍼 모듈을 사용합니다. :mod:`binascii` 모듈에는 고수준 모듈에서 사용하는 보다 "
37
- "빠른 속도를 위해 C로 작성된 저수준 함수가 들어 있습니다."
33
+ "있습니다. 일반적으로 이러한 함수는 직접 사용하지 않고, 대신 :mod:`base64`\\ 와 같은 래퍼 모듈을 사용합니다. "
34
+ ":mod:`binascii` 모듈에는 고수준 모듈에서 사용하는 보다 빠른 속도를 위해 C로 작성된 저수준 함수가 들어 있습니다."
38
35
39
36
#: ../../library/binascii.rst:22
40
37
msgid ""
@@ -113,9 +110,8 @@ msgid "Does not start with a padding."
113
110
msgstr ""
114
111
115
112
#: ../../library/binascii.rst:66
116
- #, fuzzy
117
113
msgid "Added the *strict_mode* parameter."
118
- msgstr "*backtick * 매개 변수가 추가되었습니다."
114
+ msgstr "*strict_mode * 매개 변수가 추가되었습니다."
119
115
120
116
#: ../../library/binascii.rst:72
121
117
msgid ""
@@ -170,17 +166,16 @@ msgstr ""
170
166
" 이 CRC는 binhex4 형식에서 사용됩니다."
171
167
172
168
#: ../../library/binascii.rst:110
173
- #, fuzzy
174
169
msgid ""
175
170
"Compute CRC-32, the unsigned 32-bit checksum of *data*, starting with an "
176
171
"initial CRC of *value*. The default initial CRC is zero. The algorithm "
177
172
"is consistent with the ZIP file checksum. Since the algorithm is "
178
173
"designed for use as a checksum algorithm, it is not suitable for use as a"
179
174
" general hash algorithm. Use as follows::"
180
175
msgstr ""
181
- "초기 CRC *value*\\ 로 시작하는, *data*\\ 의 32비트 체크섬인 CRC-32를 계산합니다. 기본 초기 CRC는 "
182
- "0입니다. 이 알고리즘은 ZIP 파일 체크섬과 일치합니다. 이 알고리즘은 체크섬 알고리즘으로 사용하도록 설계되었으므로, 일반 해시 "
183
- "알고리즘으로 사용하기에 적합하지 않습니다. 다음과 같이 사용하십시오::"
176
+ "초기 CRC *value*\\ 로 시작하는, *data*\\ 의 부호 없는 32비트 체크섬인 CRC-32를 계산합니다. 기본 초기 "
177
+ "CRC는 0입니다. 이 알고리즘은 ZIP 파일 체크섬과 일치합니다. 이 알고리즘은 체크섬 알고리즘으로 사용하도록 설계되었으므로, "
178
+ "일반 해시 알고리즘으로 사용하기에 적합하지 않습니다. 다음과 같이 사용하십시오::"
184
179
185
180
#: ../../library/binascii.rst:116
186
181
#, python-brace-format
@@ -191,6 +186,11 @@ msgid ""
191
186
"crc = binascii.crc32(b\" world\" , crc)\n"
192
187
"print('crc32 = {:#010x}'.format(crc))"
193
188
msgstr ""
189
+ "print(binascii.crc32(b\" hello world\" ))\n"
190
+ "# 또는, 두 조각으로:\n"
191
+ "crc = binascii.crc32(b\" hello\" )\n"
192
+ "crc = binascii.crc32(b\" world\" , crc)\n"
193
+ "print('crc32 = {:#010x}'.format(crc))"
194
194
195
195
#: ../../library/binascii.rst:122
196
196
msgid "The result is always unsigned."
@@ -281,11 +281,11 @@ msgstr "MIME 전자 우편 메시지에 사용되는 quoted-printable 인코딩
281
281
282
282
#: ../../library/binascii.rst:8
283
283
msgid "module"
284
- msgstr ""
284
+ msgstr "모듈 "
285
285
286
286
#: ../../library/binascii.rst:8
287
287
msgid "base64"
288
- msgstr ""
288
+ msgstr "base64 "
289
289
290
290
#~ msgid ""
291
291
#~ "Convert binhex4 formatted ASCII data to"
0 commit comments