Skip to content

Commit 015a6f8

Browse files
committed
#732 - remove fuzzy flags
1 parent 612a65a commit 015a6f8

File tree

1 file changed

+24
-16
lines changed

1 file changed

+24
-16
lines changed

library/zipimport.po

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

1919
#: ../../library/zipimport.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!zipimport` --- Import modules from Zip archives"
22-
msgstr ":mod:`zipimport` --- Zip 저장소에서 모듈 임포트"
21+
msgstr ":mod:`!zipimport` --- Zip 저장소에서 모듈 임포트"
2322

2423
#: ../../library/zipimport.rst:9
2524
msgid "**Source code:** :source:`Lib/zipimport.py`"
@@ -53,7 +52,6 @@ msgstr ""
5352
":file:`example.zip/lib/`\\는 저장소 내의 :file:`lib/` 서브 디렉터리에서만 임포트하도록 합니다."
5453

5554
#: ../../library/zipimport.rst:26
56-
#, fuzzy
5755
msgid ""
5856
"Any files may be present in the ZIP archive, but importers are only "
5957
"invoked for :file:`.py` and :file:`.pyc` files. ZIP import of dynamic "
@@ -63,14 +61,14 @@ msgid ""
6361
" that if a ZIP archive doesn't contain :file:`.pyc` files, importing may "
6462
"be rather slow."
6563
msgstr ""
66-
"모든 파일이 ZIP 저장소에 있을 수 있지만, :file:`.py` 와 :file:`.pyc` 파일만 임포트 할 수 있습니다. 동적"
67-
" 모듈(:file:`.pyd`, :file:`.so`)의 ZIP 임포트는 허용되지 않습니다. 저장소에 :file:`.py` 파일만 "
68-
"포함되어있으면, 파이썬은 해당 :file:`.pyc` 파일을 추가하여 저장소를 수정하지 않습니다. 즉, ZIP 저장소에 "
69-
":file:`.pyc` 파일이 포함되어 있지 않으면, 임포트가 다소 느릴 수 있습니다."
64+
"어떤 파일이든 ZIP 저장소에 있을 수 있지만, 임포터는 :file:`.py` 와 :file:`.pyc` 파일에 대해서만 "
65+
"호출됩니다. 동적 모듈(:file:`.pyd`, :file:`.so`)의 ZIP 임포트는 허용되지 않습니다. 저장소에 "
66+
":file:`.py` 파일만 포함되어있으면, 파이썬은 해당 :file:`.pyc` 파일을 추가하여 저장소를 수정하지 않습니다. 즉,"
67+
" ZIP 저장소에 :file:`.pyc` 파일이 포함되어 있지 않으면, 임포트가 다소 느릴 수 있습니다."
7068

7169
#: ../../library/zipimport.rst:33
7270
msgid "ZIP64 is supported"
73-
msgstr ""
71+
msgstr "ZIP64 를 지원합니다"
7472

7573
#: ../../library/zipimport.rst:36
7674
msgid "Previously, ZIP archives with an archive comment were not supported."
@@ -171,11 +169,10 @@ msgid "An implementation of :meth:`importlib.abc.PathEntryFinder.find_spec`."
171169
msgstr ""
172170

173171
#: ../../library/zipimport.rst:109
174-
#, fuzzy
175172
msgid ""
176173
"Return the code object for the specified module. Raise "
177174
":exc:`ZipImportError` if the module couldn't be imported."
178-
msgstr "지정된 모듈의 코드 객체를 반환합니다. 모듈을 찾을 수 없으면 :exc:`ZipImportError`\\를 발생시킵니다."
175+
msgstr "지정된 모듈의 코드 객체를 반환합니다. 모듈을 임포트할 수 없으면 :exc:`ZipImportError`\\를 발생시킵니다."
179176

180177
#: ../../library/zipimport.rst:115
181178
msgid ""
@@ -184,18 +181,16 @@ msgid ""
184181
msgstr "*pathname*\\와 관련된 데이터를 반환합니다. 파일을 찾을 수 없으면 :exc:`OSError`\\를 발생시킵니다."
185182

186183
#: ../../library/zipimport.rst:118
187-
#, fuzzy
188184
msgid ":exc:`IOError` used to be raised, it is now an alias of :exc:`OSError`."
189-
msgstr ":exc:`OSError` 대신 :exc:`IOError` 를 발생시켜왔습니다."
185+
msgstr ":exc:`IOError` 를 발생시켜왔습니다, 이제 :exc:`OSError`\\의 별칭입니다."
190186

191187
#: ../../library/zipimport.rst:124
192-
#, fuzzy
193188
msgid ""
194189
"Return the value ``__file__`` would be set to if the specified module was"
195190
" imported. Raise :exc:`ZipImportError` if the module couldn't be "
196191
"imported."
197192
msgstr ""
198-
"지정한 모듈이 임포트될 때 설정될 ``__file__``\\의 값을 반환합니다. 모듈을 찾을 수 없으면 "
193+
"지정한 모듈이 임포트될 때 설정될 ``__file__``\\의 값을 반환합니다. 모듈을 임포트할 수 없으면 "
199194
":exc:`ZipImportError`\\를 발생시킵니다."
200195

201196
#: ../../library/zipimport.rst:133
@@ -217,14 +212,13 @@ msgstr ""
217212
":exc:`ZipImportError`\\를 발생시킵니다."
218213

219214
#: ../../library/zipimport.rst:147
220-
#, fuzzy
221215
msgid ""
222216
"Load the module specified by *fullname*. *fullname* must be the fully "
223217
"qualified (dotted) module name. Returns the imported module on success, "
224218
"raises :exc:`ZipImportError` on failure."
225219
msgstr ""
226220
"*fullname*\\으로 지정된 모듈을 로드 합니다. *fullname*\\은 완전히 정규화된 (점으로 구분된) 모듈 이름이어야 "
227-
"합니다. 임포트 된 모듈을 반환하거나, 찾지 못하면 :exc:`ZipImportError`\\를 발생시킵니다."
221+
"합니다. 성공하면 임포트 된 모듈을 반환하고, 실패하면 :exc:`ZipImportError`\\를 발생시킵니다."
228222

229223
#: ../../library/zipimport.rst:153
230224
msgid "Use :meth:`exec_module` instead."
@@ -287,6 +281,20 @@ msgid ""
287281
">>> jwzthreading.__file__\n"
288282
"'example.zip/jwzthreading.py'"
289283
msgstr ""
284+
"$ unzip -l example.zip\n"
285+
"Archive: example.zip\n"
286+
" Length Date Time Name\n"
287+
" -------- ---- ---- ----\n"
288+
" 8467 11-26-02 22:30 jwzthreading.py\n"
289+
" -------- -------\n"
290+
" 8467 1 file\n"
291+
"$ ./python\n"
292+
"Python 2.3 (#1, Aug 1 2003, 19:54:32)\n"
293+
">>> import sys\n"
294+
">>> sys.path.insert(0, 'example.zip') # .zip 파일을 path 앞에 추가합니다\n"
295+
">>> import jwzthreading\n"
296+
">>> jwzthreading.__file__\n"
297+
"'example.zip/jwzthreading.py'"
290298

291299
#~ msgid ":pep:`302` - New Import Hooks"
292300
#~ msgstr ":pep:`302` - 새 임포트 훅"

0 commit comments

Comments
 (0)