@@ -17,9 +17,8 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/fnmatch.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!fnmatch` --- Unix filename pattern matching"
22
- msgstr ":mod:`fnmatch` --- 유닉스 파일명 패턴 일치"
21
+ msgstr ":mod:`! fnmatch` --- 유닉스 파일명 패턴 일치"
23
22
24
23
#: ../../library/fnmatch.rst:7
25
24
msgid "**Source code:** :source:`Lib/fnmatch.py`"
@@ -109,18 +108,17 @@ msgid ""
109
108
msgstr ""
110
109
111
110
#: ../../library/fnmatch.rst:61
112
- #, fuzzy
113
111
msgid ""
114
112
"Test whether the filename string *name* matches the pattern string *pat*,"
115
113
" returning ``True`` or ``False``. Both parameters are case-normalized "
116
114
"using :func:`os.path.normcase`. :func:`fnmatchcase` can be used to "
117
115
"perform a case-sensitive comparison, regardless of whether that's "
118
116
"standard for the operating system."
119
117
msgstr ""
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
+ "있습니다."
124
122
125
123
#: ../../library/fnmatch.rst:67
126
124
msgid ""
@@ -137,35 +135,40 @@ msgid ""
137
135
" if fnmatch.fnmatch(file, '*.txt'):\n"
138
136
" print(file)"
139
137
msgstr ""
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)"
140
144
141
145
#: ../../library/fnmatch.rst:80
142
- #, fuzzy
143
146
msgid ""
144
147
"Test whether the filename string *name* matches the pattern string *pat*,"
145
148
" returning ``True`` or ``False``; the comparison is case-sensitive and "
146
149
"does not apply :func:`os.path.normcase`."
147
150
msgstr ""
148
- "*filename *\\ 이 *pattern *\\ 과 일치하는지를 검사하여, :const:` True` 나 :const:` False`\\ 를"
149
- " 반환합니다; 비교는 대소 문자를 구분하며, :func:`os.path.normcase`\\ 를 적용하지 않습니다."
151
+ "파일명 문자열 *name *\\ 이 패턴 문자열 *pat *\\ 와 일치하는지를 검사하여, `` True`` 나 `` False`` \\ 를 "
152
+ "반환합니다; 비교는 대소 문자를 구분하며, :func:`os.path.normcase`\\ 를 적용하지 않습니다."
150
153
151
154
#: ../../library/fnmatch.rst:87
152
- #, fuzzy
153
155
msgid ""
154
156
"Construct a list from those elements of the :term:`iterable` of filename "
155
157
"strings *names* that match the pattern string *pat*. It is the same as "
156
158
"``[n for n in names if fnmatch(n, pat)]``, but implemented more "
157
159
"efficiently."
158
160
msgstr ""
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 )]``\\ 과 같지만, 더 효율적으로 구현됩니다."
161
163
162
164
#: ../../library/fnmatch.rst:95
163
- #, fuzzy
164
165
msgid ""
165
166
"Return the shell-style pattern *pat* converted to a regular expression "
166
167
"for using with :func:`re.match`. The pattern is expected to be a "
167
168
":class:`str`."
168
- msgstr "셸 스타일의 *pattern*\\ 을 :func:`re.match`\\ 에서 사용하기 위해 정규식으로 변환한 값을 반환합니다."
169
+ msgstr ""
170
+ "셸 스타일의 패턴 *pat*\\ 를 :func:`re.match`\\ 에서 사용하기 위해 정규식으로 변환한 값을 반환합니다. 패턴은 "
171
+ ":class:`str`\\ 일 것으로 기대합니다."
169
172
170
173
#: ../../library/fnmatch.rst:98
171
174
msgid "Example:"
@@ -181,45 +184,45 @@ msgstr "유닉스 셸 스타일 경로 확장."
181
184
182
185
#: ../../library/fnmatch.rst:9
183
186
msgid "filenames"
184
- msgstr ""
187
+ msgstr "파일명 "
185
188
186
189
#: ../../library/fnmatch.rst:9
187
190
msgid "wildcard expansion"
188
- msgstr ""
191
+ msgstr "와일드카드 확장 "
189
192
190
193
#: ../../library/fnmatch.rst:11 ../../library/fnmatch.rst:41
191
194
msgid "module"
192
- msgstr ""
195
+ msgstr "모듈 "
193
196
194
197
#: ../../library/fnmatch.rst:11
195
198
msgid "re"
196
- msgstr ""
199
+ msgstr "re "
197
200
198
201
#: ../../library/fnmatch.rst:19
199
202
msgid "* (asterisk)"
200
- msgstr ""
203
+ msgstr "* (애스터리스크) "
201
204
202
205
#: ../../library/fnmatch.rst:19
203
206
msgid "in glob-style wildcards"
204
- msgstr ""
207
+ msgstr "glob 스타일 와일드카드 "
205
208
206
209
#: ../../library/fnmatch.rst:19
207
210
msgid "? (question mark)"
208
- msgstr ""
211
+ msgstr "? (물음표) "
209
212
210
213
#: ../../library/fnmatch.rst:19
211
214
msgid "[] (square brackets)"
212
- msgstr ""
215
+ msgstr "[] (대괄호) "
213
216
214
217
#: ../../library/fnmatch.rst:19
215
218
msgid "! (exclamation)"
216
- msgstr ""
219
+ msgstr "! (느낌표) "
217
220
218
221
#: ../../library/fnmatch.rst:19
219
222
msgid "- (minus)"
220
- msgstr ""
223
+ msgstr "- (마이너스) "
221
224
222
225
#: ../../library/fnmatch.rst:41
223
226
msgid "glob"
224
- msgstr ""
227
+ msgstr "glob "
225
228
0 commit comments