Skip to content

Commit 9f2c4b6

Browse files
committed
#900 - remove fuzzy flags
1 parent c84f1ef commit 9f2c4b6

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed

library/gzip.po

+26-21
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/gzip.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!gzip` --- Support for :program:`gzip` files"
22-
msgstr ":mod:`gzip` --- :program:`gzip` 파일 지원"
21+
msgstr ":mod:`!gzip` --- :program:`gzip` 파일 지원"
2322

2423
#: ../../library/gzip.rst:7
2524
msgid "**Source code:** :source:`Lib/gzip.py`"
@@ -132,7 +131,6 @@ msgid "Accepts a :term:`path-like object`."
132131
msgstr ":term:`경로류 객체 <path-like object>`\\를 받아들입니다."
133132

134133
#: ../../library/gzip.rst:64
135-
#, fuzzy
136134
msgid ""
137135
"An exception raised for invalid gzip files. It inherits from "
138136
":exc:`OSError`. :exc:`EOFError` and :exc:`zlib.error` can also be raised "
@@ -142,16 +140,15 @@ msgstr ""
142140
":exc:`zlib.error`\\도 유효하지 않은 gzip 파일에 대해서 발생할 수 있습니다."
143141

144142
#: ../../library/gzip.rst:72
145-
#, fuzzy
146143
msgid ""
147144
"Constructor for the :class:`GzipFile` class, which simulates most of the "
148145
"methods of a :term:`file object`, with the exception of the "
149146
":meth:`~io.IOBase.truncate` method. At least one of *fileobj* and "
150147
"*filename* must be given a non-trivial value."
151148
msgstr ""
152-
":meth:`truncate` 메서드를 제외하고, 대부분 :term:`파일 객체 <file object>` 메서드를 흉내 내는 "
153-
":class:`GzipFile` 클래스의 생성자입니다. *fileobj*\\와 *filename* 중 적어도 하나는 의미 있는 값을"
154-
" 부여해야 합니다."
149+
":meth:`~io.IOBase.truncate` 메서드를 제외하고, 대부분 :term:`파일 객체 <file object>` "
150+
"메서드를 흉내 내는 :class:`GzipFile` 클래스의 생성자입니다. *fileobj*\\와 *filename* 중 적어도 "
151+
"하나는 의미 있는 값을 부여해야 합니다."
155152

156153
#: ../../library/gzip.rst:77
157154
msgid ""
@@ -224,7 +221,6 @@ msgid "See below for the :attr:`mtime` attribute that is set when decompressing.
224221
msgstr ""
225222

226223
#: ../../library/gzip.rst:110
227-
#, fuzzy
228224
msgid ""
229225
"Calling a :class:`GzipFile` object's :meth:`!close` method does not close"
230226
" *fileobj*, since you might wish to append more material after the "
@@ -233,34 +229,30 @@ msgid ""
233229
" buffer using the :class:`io.BytesIO` object's "
234230
":meth:`~io.BytesIO.getvalue` method."
235231
msgstr ""
236-
":class:`GzipFile` 객체의 :meth:`close` 메서드를 호출해도 *fileobj*\\를 닫지 않습니다, 압축된 "
232+
":class:`GzipFile` 객체의 :meth:`!close` 메서드를 호출해도 *fileobj*\\를 닫지 않습니다, 압축된 "
237233
"데이터 뒤에 뭔가 추가하기를 원할 수 있기 때문입니다. 또한, 이는 *fileobj*\\로 쓰기 위해 열린 "
238234
":class:`io.BytesIO` 객체를 전달하고, :class:`io.BytesIO` 객체의 "
239235
":meth:`~io.BytesIO.getvalue` 메서드를 사용하여 결과 메모리 버퍼를 얻을 수 있도록 합니다."
240236

241237
#: ../../library/gzip.rst:116
242-
#, fuzzy
243238
msgid ""
244239
":class:`GzipFile` supports the :class:`io.BufferedIOBase` interface, "
245240
"including iteration and the :keyword:`with` statement. Only the "
246241
":meth:`~io.IOBase.truncate` method isn't implemented."
247242
msgstr ""
248243
":class:`GzipFile`\\은 이터레이션과 :keyword:`with` 문을 포함하여 "
249-
":class:`io.BufferedIOBase` 인터페이스를 지원합니다. :meth:`truncate` 메서드 만 구현되지 "
250-
"않습니다."
244+
":class:`io.BufferedIOBase` 인터페이스를 지원합니다. :meth:`~io.IOBase.truncate` 메서드 "
245+
"만 구현되지 않습니다."
251246

252247
#: ../../library/gzip.rst:120
253248
msgid ":class:`GzipFile` also provides the following method and attribute:"
254249
msgstr ":class:`GzipFile`\\은 다음 메서드와 어트리뷰트도 제공합니다:"
255250

256251
#: ../../library/gzip.rst:124
257-
#, fuzzy
258252
msgid ""
259253
"Read *n* uncompressed bytes without advancing the file position. The "
260254
"number of bytes returned may be more or less than requested."
261-
msgstr ""
262-
"파일 위치를 전진시키지 않고 압축되지 않은 *n* 바이트를 읽습니다. 호출을 만족시키기 위해 압축된 스트림에 대해 최대 한 번의 "
263-
"읽기가 수행됩니다. 반환된 바이트 수는 요청한 것보다 많거나 적을 수 있습니다."
255+
msgstr "파일 위치를 전진시키지 않고 압축되지 않은 *n* 바이트를 읽습니다. 반환된 바이트 수는 요청한 것보다 많거나 적을 수 있습니다."
264256

265257
#: ../../library/gzip.rst:127
266258
msgid ""
@@ -281,15 +273,14 @@ msgid "In previous versions it was an integer ``1`` or ``2``."
281273
msgstr ""
282274

283275
#: ../../library/gzip.rst:143
284-
#, fuzzy
285276
msgid ""
286277
"When decompressing, this attribute is set to the last timestamp in the "
287278
"most recently read header. It is an integer, holding the number of "
288279
"seconds since the Unix epoch (00:00:00 UTC, January 1, 1970). The initial"
289280
" value before reading any headers is ``None``."
290281
msgstr ""
291-
"압축을 풀 때, 가장 최근에 읽은 헤더의 마지막 수정 시간 필드의 값을 이 어트리뷰트에서 정수로 읽을 수 있습니다. 헤더를 읽기 "
292-
"전의 초깃값은 ``None``\\입니다."
282+
"압축을 풀 때, 이 어트리뷰트는 가장 최근에 읽은 헤더의 마지막 타임스탬프로 설정됩니다. 유닉스 에포크 (1970-01-01 "
283+
"00:00:00 UTC) 이후의 시간(초)를 나타내는 정수입니다. 헤더를 읽기 전의 초깃값은 ``None``\\입니다."
293284

294285
#: ../../library/gzip.rst:150
295286
msgid ""
@@ -394,6 +385,9 @@ msgid ""
394385
"with gzip.open('/home/joe/file.txt.gz', 'rb') as f:\n"
395386
" file_content = f.read()"
396387
msgstr ""
388+
"import gzip\n"
389+
"with gzip.open('/home/joe/file.txt.gz', 'rb') as f:\n"
390+
" file_content = f.read()"
397391

398392
#: ../../library/gzip.rst:229
399393
msgid "Example of how to create a compressed GZIP file::"
@@ -406,6 +400,10 @@ msgid ""
406400
"with gzip.open('/home/joe/file.txt.gz', 'wb') as f:\n"
407401
" f.write(content)"
408402
msgstr ""
403+
"import gzip\n"
404+
"content = b\"Lots of content here\"\n"
405+
"with gzip.open('/home/joe/file.txt.gz', 'wb') as f:\n"
406+
" f.write(content)"
409407

410408
#: ../../library/gzip.rst:236
411409
msgid "Example of how to GZIP compress an existing file::"
@@ -419,6 +417,11 @@ msgid ""
419417
" with gzip.open('/home/joe/file.txt.gz', 'wb') as f_out:\n"
420418
" shutil.copyfileobj(f_in, f_out)"
421419
msgstr ""
420+
"import gzip\n"
421+
"import shutil\n"
422+
"with open('/home/joe/file.txt', 'rb') as f_in:\n"
423+
" with gzip.open('/home/joe/file.txt.gz', 'wb') as f_out:\n"
424+
" shutil.copyfileobj(f_in, f_out)"
422425

423426
#: ../../library/gzip.rst:244
424427
msgid "Example of how to GZIP compress a binary string::"
@@ -430,6 +433,9 @@ msgid ""
430433
"s_in = b\"Lots of content here\"\n"
431434
"s_out = gzip.compress(s_in)"
432435
msgstr ""
436+
"import gzip\n"
437+
"s_in = b\"Lots of content here\"\n"
438+
"s_out = gzip.compress(s_in)"
433439

434440
#: ../../library/gzip.rst:252
435441
msgid "Module :mod:`zlib`"
@@ -466,9 +472,8 @@ msgid "Command line options"
466472
msgstr "명령 줄 옵션"
467473

468474
#: ../../library/gzip.rst:279
469-
#, fuzzy
470475
msgid "If *file* is not specified, read from :data:`sys.stdin`."
471-
msgstr "*file*\\이 지정되지 않으면, :attr:`sys.stdin`\\에서 읽습니다."
476+
msgstr "*file*\\이 지정되지 않으면, :data:`sys.stdin`\\에서 읽습니다."
472477

473478
#: ../../library/gzip.rst:283
474479
msgid "Indicates the fastest compression method (less compression)."

0 commit comments

Comments
 (0)