Skip to content

Commit 1a96e43

Browse files
committed
#978 - remove fuzzy flags
1 parent f507d68 commit 1a96e43

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

library/binascii.po

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/binascii.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!binascii` --- Convert between binary and ASCII"
22-
msgstr ":mod:`binascii` --- 바이너리와 ASCII 간의 변환"
21+
msgstr ":mod:`!binascii` --- 바이너리와 ASCII 간의 변환"
2322

2423
#: ../../library/binascii.rst:13
25-
#, fuzzy
2624
msgid ""
2725
"The :mod:`binascii` module contains a number of methods to convert "
2826
"between binary and various ASCII-encoded binary representations. "
@@ -32,9 +30,8 @@ msgid ""
3230
"higher-level modules."
3331
msgstr ""
3432
":mod:`binascii` 모듈에는 바이너리와 다양한 ASCII 인코딩 바이너리 표현 사이를 변환하는 여러 가지 방법이 포함되어 "
35-
"있습니다. 일반적으로 이러한 함수는 직접 사용하지 않고, 대신 :mod:`uu`, :mod:`base64` 또는 "
36-
":mod:`binhex`\\와 같은 래퍼 모듈을 사용합니다. :mod:`binascii` 모듈에는 고수준 모듈에서 사용하는 보다 "
37-
"빠른 속도를 위해 C로 작성된 저수준 함수가 들어 있습니다."
33+
"있습니다. 일반적으로 이러한 함수는 직접 사용하지 않고, 대신 :mod:`base64`\\와 같은 래퍼 모듈을 사용합니다. "
34+
":mod:`binascii` 모듈에는 고수준 모듈에서 사용하는 보다 빠른 속도를 위해 C로 작성된 저수준 함수가 들어 있습니다."
3835

3936
#: ../../library/binascii.rst:22
4037
msgid ""
@@ -113,9 +110,8 @@ msgid "Does not start with a padding."
113110
msgstr ""
114111

115112
#: ../../library/binascii.rst:66
116-
#, fuzzy
117113
msgid "Added the *strict_mode* parameter."
118-
msgstr "*backtick* 매개 변수가 추가되었습니다."
114+
msgstr "*strict_mode* 매개 변수가 추가되었습니다."
119115

120116
#: ../../library/binascii.rst:72
121117
msgid ""
@@ -170,17 +166,16 @@ msgstr ""
170166
" 이 CRC는 binhex4 형식에서 사용됩니다."
171167

172168
#: ../../library/binascii.rst:110
173-
#, fuzzy
174169
msgid ""
175170
"Compute CRC-32, the unsigned 32-bit checksum of *data*, starting with an "
176171
"initial CRC of *value*. The default initial CRC is zero. The algorithm "
177172
"is consistent with the ZIP file checksum. Since the algorithm is "
178173
"designed for use as a checksum algorithm, it is not suitable for use as a"
179174
" general hash algorithm. Use as follows::"
180175
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+
"일반 해시 알고리즘으로 사용하기에 적합하지 않습니다. 다음과 같이 사용하십시오::"
184179

185180
#: ../../library/binascii.rst:116
186181
#, python-brace-format
@@ -191,6 +186,11 @@ msgid ""
191186
"crc = binascii.crc32(b\" world\", crc)\n"
192187
"print('crc32 = {:#010x}'.format(crc))"
193188
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))"
194194

195195
#: ../../library/binascii.rst:122
196196
msgid "The result is always unsigned."
@@ -281,11 +281,11 @@ msgstr "MIME 전자 우편 메시지에 사용되는 quoted-printable 인코딩
281281

282282
#: ../../library/binascii.rst:8
283283
msgid "module"
284-
msgstr ""
284+
msgstr "모듈"
285285

286286
#: ../../library/binascii.rst:8
287287
msgid "base64"
288-
msgstr ""
288+
msgstr "base64"
289289

290290
#~ msgid ""
291291
#~ "Convert binhex4 formatted ASCII data to"

0 commit comments

Comments
 (0)