Skip to content

Commit f924ac7

Browse files
committed
#864 - remove fuzzy flags
1 parent 494bd6f commit f924ac7

File tree

1 file changed

+25
-23
lines changed

1 file changed

+25
-23
lines changed

library/mimetypes.po

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/mimetypes.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!mimetypes` --- Map filenames to MIME types"
22-
msgstr ":mod:`mimetypes` --- 파일명을 MIME 유형에 매핑"
21+
msgstr ":mod:`!mimetypes` --- 파일명을 MIME 유형에 매핑"
2322

2423
#: ../../library/mimetypes.rst:9
2524
msgid "**Source code:** :source:`Lib/mimetypes.py`"
@@ -102,9 +101,8 @@ msgstr ""
102101
"*strict*\\가 ``False``\\일 때, 추가로 표준이 아니지만, 일반적으로 사용되는 MIME 유형도 인식됩니다."
103102

104103
#: ../../library/mimetypes.rst:54
105-
#, fuzzy
106104
msgid "Added support for *url* being a :term:`path-like object`."
107-
msgstr ":term:`경로류 객체 <path-like object>` url에 대한 지원이 추가되었습니다."
105+
msgstr ":term:`경로류 객체 <path-like object>` *url*\\ 대한 지원이 추가되었습니다."
108106

109107
#: ../../library/mimetypes.rst:57
110108
msgid ""
@@ -113,17 +111,16 @@ msgid ""
113111
msgstr ""
114112

115113
#: ../../library/mimetypes.rst:66
116-
#, fuzzy
117114
msgid ""
118115
"Guess the type of a file based on its path, given by *path*. Similar to "
119116
"the :func:`guess_type` function, but accepts a path instead of URL. Path "
120117
"can be a string, a bytes object or a :term:`path-like object`."
121118
msgstr ""
122-
"*url*\\로 주어진 파일명, 경로 또는 URL에 기반한 파일의 유형을 추측합니다. URL은 문자열이나 :term:`경로류 객체 "
123-
"<path-like object>`\\일 수 있습니다."
119+
"*path*\\로 주어진 경로에 기반하여 파일의 유형을 추측합니다. :func:`guess_type` 함수와 유사하지만, URL "
120+
"대신 경로를 받습니다. 경로는 문자열, 바이트열 객체 혹은 :term:`경로류 객체 <path-like object>`\\일 수 "
121+
"있습니다."
124122

125123
#: ../../library/mimetypes.rst:75
126-
#, fuzzy
127124
msgid ""
128125
"Guess the extensions for a file based on its MIME type, given by *type*. "
129126
"The return value is a list of strings giving all possible filename "
@@ -134,7 +131,8 @@ msgid ""
134131
msgstr ""
135132
"*type*\\으로 주어진 MIME 유형을 기반으로 파일의 확장자를 추측합니다. 반환 값은 가능한 모든 파일명 확장자를 제공하는 "
136133
"문자열 리스트인데, 선행 점(``'.'``)을 포함합니다. 확장자는 특정 데이터 스트림과 연관되었음이 보장되지는 않지만, "
137-
":func:`guess_type`\\에 의해 MIME 유형 *type*\\으로 매핑됩니다."
134+
":func:`guess_type`\\과 :func:`guess_file_type`\\에 의해 MIME 유형 *type*\\으로 "
135+
"매핑됩니다."
138136

139137
#: ../../library/mimetypes.rst:81 ../../library/mimetypes.rst:93
140138
msgid ""
@@ -143,7 +141,6 @@ msgid ""
143141
msgstr "선택적 *strict* 인자는 :func:`guess_type` 함수에서와 같은 의미를 가집니다."
144142

145143
#: ../../library/mimetypes.rst:86
146-
#, fuzzy
147144
msgid ""
148145
"Guess the extension for a file based on its MIME type, given by *type*. "
149146
"The return value is a string giving a filename extension, including the "
@@ -154,8 +151,8 @@ msgid ""
154151
msgstr ""
155152
"*type*\\으로 주어진 MIME 유형을 기반으로 파일의 확장자를 추측합니다. 반환 값은 파일명 확장자를 제공하는 문자열인데, "
156153
"선행 점(``'.'``)을 포함합니다. 확장자는 특정 데이터 스트림과 연관되었음이 보장되지는 않지만, "
157-
":func:`guess_type`\\에 의해 MIME 유형 *type*\\으로 매핑됩니다. *type*\\에 대해 추측할 수 있는 "
158-
"확장이 없으면, ``None``\\이 반환됩니다."
154+
":func:`guess_type`\\과 :func:`guess_file_type`\\에 의해 MIME 유형 *type*\\으로 "
155+
"매핑됩니다. *type*\\에 대해 추측할 수 있는 확장이 없으면, ``None``\\이 반환됩니다."
159156

160157
#: ../../library/mimetypes.rst:95
161158
msgid ""
@@ -285,6 +282,16 @@ msgid ""
285282
">>> mimetypes.types_map['.tgz']\n"
286283
"'application/x-tar-gz'"
287284
msgstr ""
285+
">>> import mimetypes\n"
286+
">>> mimetypes.init()\n"
287+
">>> mimetypes.knownfiles\n"
288+
"['/etc/mime.types', '/etc/httpd/mime.types', ... ]\n"
289+
">>> mimetypes.suffix_map['.tgz']\n"
290+
"'.tar.gz'\n"
291+
">>> mimetypes.encodings_map['.gz']\n"
292+
"'gzip'\n"
293+
">>> mimetypes.types_map['.tgz']\n"
294+
"'application/x-tar-gz'"
288295

289296
#: ../../library/mimetypes.rst:193
290297
msgid "MimeTypes Objects"
@@ -375,11 +382,10 @@ msgid ""
375382
msgstr ":func:`guess_type` 함수와 유사하고, 객체의 일부로 저장된 테이블을 사용합니다."
376383

377384
#: ../../library/mimetypes.rst:258
378-
#, fuzzy
379385
msgid ""
380386
"Similar to the :func:`guess_file_type` function, using the tables stored "
381387
"as part of the object."
382-
msgstr ":func:`guess_type` 함수와 유사하고, 객체의 일부로 저장된 테이블을 사용합니다."
388+
msgstr ":func:`guess_file_type` 함수와 유사하고, 객체의 일부로 저장된 테이블을 사용합니다."
383389

384390
#: ../../library/mimetypes.rst:266
385391
msgid ""
@@ -424,25 +430,21 @@ msgstr "가용성"
424430
#: ../../library/mimetypes.rst:11 ../../library/mimetypes.rst:31
425431
#: ../../library/mimetypes.rst:64
426432
msgid "MIME"
427-
msgstr ""
433+
msgstr "MIME"
428434

429435
#: ../../library/mimetypes.rst:11
430436
msgid "content type"
431-
msgstr ""
437+
msgstr "콘텐츠 유형"
432438

433439
#: ../../library/mimetypes.rst:31 ../../library/mimetypes.rst:64
434440
msgid "headers"
435-
msgstr ""
441+
msgstr "헤더"
436442

437443
#: ../../library/mimetypes.rst:145
438444
msgid "file"
439-
msgstr ""
445+
msgstr "파일"
440446

441447
#: ../../library/mimetypes.rst:145
442-
#, fuzzy
443448
msgid "mime.types"
444-
msgstr "MimeTypes 객체"
445-
446-
#~ msgid ":ref:`Availability <availability>`: Windows."
447-
#~ msgstr ":ref:`가용성 <availability>`: 윈도우."
449+
msgstr "mime.types"
448450

0 commit comments

Comments
 (0)