@@ -17,9 +17,8 @@ msgstr ""
1717"Generated-By : Babel 2.17.0\n "
1818
1919#: ../../library/fnmatch.rst:2
20- #, fuzzy
2120msgid ":mod:`!fnmatch` --- Unix filename pattern matching"
22- msgstr ":mod:`fnmatch` --- 유닉스 파일명 패턴 일치"
21+ msgstr ":mod:`! fnmatch` --- 유닉스 파일명 패턴 일치"
2322
2423#: ../../library/fnmatch.rst:7
2524msgid "**Source code:** :source:`Lib/fnmatch.py`"
@@ -109,18 +108,17 @@ msgid ""
109108msgstr ""
110109
111110#: ../../library/fnmatch.rst:61
112- #, fuzzy
113111msgid ""
114112"Test whether the filename string *name* matches the pattern string *pat*,"
115113" returning ``True`` or ``False``. Both parameters are case-normalized "
116114"using :func:`os.path.normcase`. :func:`fnmatchcase` can be used to "
117115"perform a case-sensitive comparison, regardless of whether that's "
118116"standard for the operating system."
119117msgstr ""
120- "*filename* 문자열이 *pattern* 문자열과 일치하는지를 검사하여, :const:` True` 나 "
121- ":const:`False` \\ 를 반환합니다. 두 매개 변수는 모두 :func:`os.path.normcase`\\ 를 사용하여 대소 "
122- "문자를 정규화합니다. :func:`fnmatchcase`\\ 는 운영 체제의 표준인지에 관계없이, 대소문자를 구분하는 비교를 수행하는"
123- " 데 사용할 수 있습니다."
118+ "파일명 문자열 *name* \\ 이 패턴 문자열 *pat* \\ 와 일치하는지를 검사하여, `` True`` 나 ``False`` \\ 를 "
119+ "반환합니다. 두 매개 변수는 모두 :func:`os.path.normcase`\\ 를 사용하여 대소 문자를 정규화합니다. "
120+ ":func:`fnmatchcase`\\ 는 운영 체제의 표준인지에 관계없이, 대소문자를 구분하는 비교를 수행하는 데 사용할 수 "
121+ "있습니다."
124122
125123#: ../../library/fnmatch.rst:67
126124msgid ""
@@ -137,35 +135,40 @@ msgid ""
137135" if fnmatch.fnmatch(file, '*.txt'):\n"
138136" print(file)"
139137msgstr ""
138+ "import fnmatch\n"
139+ "import os\n"
140+ "\n"
141+ "for file in os.listdir('.'):\n"
142+ " if fnmatch.fnmatch(file, '*.txt'):\n"
143+ " print(file)"
140144
141145#: ../../library/fnmatch.rst:80
142- #, fuzzy
143146msgid ""
144147"Test whether the filename string *name* matches the pattern string *pat*,"
145148" returning ``True`` or ``False``; the comparison is case-sensitive and "
146149"does not apply :func:`os.path.normcase`."
147150msgstr ""
148- "*filename *\\ 이 *pattern *\\ 과 일치하는지를 검사하여, :const:` True` 나 :const:` False`\\ 를"
149- " 반환합니다; 비교는 대소 문자를 구분하며, :func:`os.path.normcase`\\ 를 적용하지 않습니다."
151+ "파일명 문자열 *name *\\ 이 패턴 문자열 *pat *\\ 와 일치하는지를 검사하여, `` True`` 나 `` False`` \\ 를 "
152+ "반환합니다; 비교는 대소 문자를 구분하며, :func:`os.path.normcase`\\ 를 적용하지 않습니다."
150153
151154#: ../../library/fnmatch.rst:87
152- #, fuzzy
153155msgid ""
154156"Construct a list from those elements of the :term:`iterable` of filename "
155157"strings *names* that match the pattern string *pat*. It is the same as "
156158"``[n for n in names if fnmatch(n, pat)]``, but implemented more "
157159"efficiently."
158160msgstr ""
159- "*pattern *\\ 에 일치하는 *names* 이터러블의 요소로 리스트를 구축합니다. ``[n for n in names if "
160- "fnmatch(n, pattern )]``\\ 과 같지만, 더 효율적으로 구현됩니다."
161+ "패턴 문자열 *pat *\\ 와 일치하는 파일명 문자열의 :term:`이터러블 <iterable>` * names* \\ 의 요소로 리스트를 "
162+ " 구축합니다. ``[n for n in names if fnmatch(n, pat )]``\\ 과 같지만, 더 효율적으로 구현됩니다."
161163
162164#: ../../library/fnmatch.rst:95
163- #, fuzzy
164165msgid ""
165166"Return the shell-style pattern *pat* converted to a regular expression "
166167"for using with :func:`re.match`. The pattern is expected to be a "
167168":class:`str`."
168- msgstr "셸 스타일의 *pattern*\\ 을 :func:`re.match`\\ 에서 사용하기 위해 정규식으로 변환한 값을 반환합니다."
169+ msgstr ""
170+ "셸 스타일의 패턴 *pat*\\ 를 :func:`re.match`\\ 에서 사용하기 위해 정규식으로 변환한 값을 반환합니다. 패턴은 "
171+ ":class:`str`\\ 일 것으로 기대합니다."
169172
170173#: ../../library/fnmatch.rst:98
171174msgid "Example:"
@@ -181,45 +184,45 @@ msgstr "유닉스 셸 스타일 경로 확장."
181184
182185#: ../../library/fnmatch.rst:9
183186msgid "filenames"
184- msgstr ""
187+ msgstr "파일명 "
185188
186189#: ../../library/fnmatch.rst:9
187190msgid "wildcard expansion"
188- msgstr ""
191+ msgstr "와일드카드 확장 "
189192
190193#: ../../library/fnmatch.rst:11 ../../library/fnmatch.rst:41
191194msgid "module"
192- msgstr ""
195+ msgstr "모듈 "
193196
194197#: ../../library/fnmatch.rst:11
195198msgid "re"
196- msgstr ""
199+ msgstr "re "
197200
198201#: ../../library/fnmatch.rst:19
199202msgid "* (asterisk)"
200- msgstr ""
203+ msgstr "* (애스터리스크) "
201204
202205#: ../../library/fnmatch.rst:19
203206msgid "in glob-style wildcards"
204- msgstr ""
207+ msgstr "glob 스타일 와일드카드 "
205208
206209#: ../../library/fnmatch.rst:19
207210msgid "? (question mark)"
208- msgstr ""
211+ msgstr "? (물음표) "
209212
210213#: ../../library/fnmatch.rst:19
211214msgid "[] (square brackets)"
212- msgstr ""
215+ msgstr "[] (대괄호) "
213216
214217#: ../../library/fnmatch.rst:19
215218msgid "! (exclamation)"
216- msgstr ""
219+ msgstr "! (느낌표) "
217220
218221#: ../../library/fnmatch.rst:19
219222msgid "- (minus)"
220- msgstr ""
223+ msgstr "- (마이너스) "
221224
222225#: ../../library/fnmatch.rst:41
223226msgid "glob"
224- msgstr ""
227+ msgstr "glob "
225228
0 commit comments