@@ -17,9 +17,8 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/mimetypes.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!mimetypes` --- Map filenames to MIME types"
22
- msgstr ":mod:`mimetypes` --- 파일명을 MIME 유형에 매핑"
21
+ msgstr ":mod:`! mimetypes` --- 파일명을 MIME 유형에 매핑"
23
22
24
23
#: ../../library/mimetypes.rst:9
25
24
msgid "**Source code:** :source:`Lib/mimetypes.py`"
@@ -102,9 +101,8 @@ msgstr ""
102
101
"*strict*\\ 가 ``False``\\ 일 때, 추가로 표준이 아니지만, 일반적으로 사용되는 MIME 유형도 인식됩니다."
103
102
104
103
#: ../../library/mimetypes.rst:54
105
- #, fuzzy
106
104
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* \\ 에 대한 지원이 추가되었습니다."
108
106
109
107
#: ../../library/mimetypes.rst:57
110
108
msgid ""
@@ -113,17 +111,16 @@ msgid ""
113
111
msgstr ""
114
112
115
113
#: ../../library/mimetypes.rst:66
116
- #, fuzzy
117
114
msgid ""
118
115
"Guess the type of a file based on its path, given by *path*. Similar to "
119
116
"the :func:`guess_type` function, but accepts a path instead of URL. Path "
120
117
"can be a string, a bytes object or a :term:`path-like object`."
121
118
msgstr ""
122
- "*url*\\ 로 주어진 파일명, 경로 또는 URL에 기반한 파일의 유형을 추측합니다. URL은 문자열이나 :term:`경로류 객체 "
123
- "<path-like object>`\\ 일 수 있습니다."
119
+ "*path*\\ 로 주어진 경로에 기반하여 파일의 유형을 추측합니다. :func:`guess_type` 함수와 유사하지만, URL "
120
+ "대신 경로를 받습니다. 경로는 문자열, 바이트열 객체 혹은 :term:`경로류 객체 <path-like object>`\\ 일 수 "
121
+ "있습니다."
124
122
125
123
#: ../../library/mimetypes.rst:75
126
- #, fuzzy
127
124
msgid ""
128
125
"Guess the extensions for a file based on its MIME type, given by *type*. "
129
126
"The return value is a list of strings giving all possible filename "
@@ -134,7 +131,8 @@ msgid ""
134
131
msgstr ""
135
132
"*type*\\ 으로 주어진 MIME 유형을 기반으로 파일의 확장자를 추측합니다. 반환 값은 가능한 모든 파일명 확장자를 제공하는 "
136
133
"문자열 리스트인데, 선행 점(``'.'``)을 포함합니다. 확장자는 특정 데이터 스트림과 연관되었음이 보장되지는 않지만, "
137
- ":func:`guess_type`\\ 에 의해 MIME 유형 *type*\\ 으로 매핑됩니다."
134
+ ":func:`guess_type`\\ 과 :func:`guess_file_type`\\ 에 의해 MIME 유형 *type*\\ 으로 "
135
+ "매핑됩니다."
138
136
139
137
#: ../../library/mimetypes.rst:81 ../../library/mimetypes.rst:93
140
138
msgid ""
@@ -143,7 +141,6 @@ msgid ""
143
141
msgstr "선택적 *strict* 인자는 :func:`guess_type` 함수에서와 같은 의미를 가집니다."
144
142
145
143
#: ../../library/mimetypes.rst:86
146
- #, fuzzy
147
144
msgid ""
148
145
"Guess the extension for a file based on its MIME type, given by *type*. "
149
146
"The return value is a string giving a filename extension, including the "
@@ -154,8 +151,8 @@ msgid ""
154
151
msgstr ""
155
152
"*type*\\ 으로 주어진 MIME 유형을 기반으로 파일의 확장자를 추측합니다. 반환 값은 파일명 확장자를 제공하는 문자열인데, "
156
153
"선행 점(``'.'``)을 포함합니다. 확장자는 특정 데이터 스트림과 연관되었음이 보장되지는 않지만, "
157
- ":func:`guess_type`\\ 에 의해 MIME 유형 *type*\\ 으로 매핑됩니다. *type* \\ 에 대해 추측할 수 있는 "
158
- "확장이 없으면, ``None``\\ 이 반환됩니다."
154
+ ":func:`guess_type`\\ 과 :func:`guess_file_type` \\ 에 의해 MIME 유형 *type*\\ 으로 "
155
+ "매핑됩니다. *type* \\ 에 대해 추측할 수 있는 확장이 없으면, ``None``\\ 이 반환됩니다."
159
156
160
157
#: ../../library/mimetypes.rst:95
161
158
msgid ""
@@ -285,6 +282,16 @@ msgid ""
285
282
">>> mimetypes.types_map['.tgz']\n"
286
283
"'application/x-tar-gz'"
287
284
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'"
288
295
289
296
#: ../../library/mimetypes.rst:193
290
297
msgid "MimeTypes Objects"
@@ -375,11 +382,10 @@ msgid ""
375
382
msgstr ":func:`guess_type` 함수와 유사하고, 객체의 일부로 저장된 테이블을 사용합니다."
376
383
377
384
#: ../../library/mimetypes.rst:258
378
- #, fuzzy
379
385
msgid ""
380
386
"Similar to the :func:`guess_file_type` function, using the tables stored "
381
387
"as part of the object."
382
- msgstr ":func:`guess_type ` 함수와 유사하고, 객체의 일부로 저장된 테이블을 사용합니다."
388
+ msgstr ":func:`guess_file_type ` 함수와 유사하고, 객체의 일부로 저장된 테이블을 사용합니다."
383
389
384
390
#: ../../library/mimetypes.rst:266
385
391
msgid ""
@@ -424,25 +430,21 @@ msgstr "가용성"
424
430
#: ../../library/mimetypes.rst:11 ../../library/mimetypes.rst:31
425
431
#: ../../library/mimetypes.rst:64
426
432
msgid "MIME"
427
- msgstr ""
433
+ msgstr "MIME "
428
434
429
435
#: ../../library/mimetypes.rst:11
430
436
msgid "content type"
431
- msgstr ""
437
+ msgstr "콘텐츠 유형 "
432
438
433
439
#: ../../library/mimetypes.rst:31 ../../library/mimetypes.rst:64
434
440
msgid "headers"
435
- msgstr ""
441
+ msgstr "헤더 "
436
442
437
443
#: ../../library/mimetypes.rst:145
438
444
msgid "file"
439
- msgstr ""
445
+ msgstr "파일 "
440
446
441
447
#: ../../library/mimetypes.rst:145
442
- #, fuzzy
443
448
msgid "mime.types"
444
- msgstr "MimeTypes 객체"
445
-
446
- #~ msgid ":ref:`Availability <availability>`: Windows."
447
- #~ msgstr ":ref:`가용성 <availability>`: 윈도우."
449
+ msgstr "mime.types"
448
450
0 commit comments