@@ -17,9 +17,8 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/pyclbr.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!pyclbr` --- Python module browser support"
22
- msgstr ":mod:`pyclbr` --- 파이썬 모듈 브라우저 지원"
21
+ msgstr ":mod:`! pyclbr` --- 파이썬 모듈 브라우저 지원"
23
22
24
23
#: ../../library/pyclbr.rst:9
25
24
msgid "**Source code:** :source:`Lib/pyclbr.py`"
@@ -100,13 +99,12 @@ msgid "Function Objects"
100
99
msgstr "Function 객체"
101
100
102
101
#: ../../library/pyclbr.rst:64
103
- #, fuzzy
104
102
msgid ""
105
103
"Class :class:`!Function` instances describe functions defined by def "
106
104
"statements. They have the following attributes:"
107
105
msgstr ""
108
- "클래스 :class:`Function` 인스턴스는 def 문으로 정의된 함수를 설명합니다. 다음과 같은 어트리뷰트를 가지고 있습니다 "
109
- " :"
106
+ "클래스 :class:`! Function` 인스턴스는 def 문으로 정의된 함수를 설명합니다. 다음과 같은 어트리뷰트를 가지고 "
107
+ "있습니다 :"
110
108
111
109
#: ../../library/pyclbr.rst:70
112
110
msgid "Name of the file in which the function is defined."
@@ -125,16 +123,14 @@ msgid "The line number in the file where the definition starts."
125
123
msgstr "정의가 시작되는 파일의 줄 번호."
126
124
127
125
#: ../../library/pyclbr.rst:90
128
- #, fuzzy
129
126
msgid "For top-level functions, ``None``. For nested functions, the parent."
130
- msgstr "최상위 함수면, None. 중첩된 함수면, 부모."
127
+ msgstr "최상위 함수면, `` None`` . 중첩된 함수면, 부모."
131
128
132
129
#: ../../library/pyclbr.rst:97
133
- #, fuzzy
134
130
msgid ""
135
131
"A :class:`dictionary <dict>` mapping names to descriptors for nested "
136
132
"functions and classes."
137
- msgstr "이름을 중첩된 함수와 클래스에 관한 설명자로 매핑하는 딕셔너리."
133
+ msgstr "이름을 중첩된 함수와 클래스에 관한 설명자로 매핑하는 :class:` 딕셔너리 <dict>` ."
138
134
139
135
#: ../../library/pyclbr.rst:105
140
136
msgid ""
@@ -147,14 +143,13 @@ msgid "Class Objects"
147
143
msgstr "Class 객체"
148
144
149
145
#: ../../library/pyclbr.rst:118
150
- #, fuzzy
151
146
msgid ""
152
147
"Class :class:`!Class` instances describe classes defined by class "
153
148
"statements. They have the same attributes as :class:`Functions "
154
149
"<Function>` and two more."
155
150
msgstr ""
156
- "클래스 :class:`Class` 인스턴스는 class 문으로 정의된 클래스를 설명합니다. Function과 같은 어트리뷰트에 더해 "
157
- " 두 개의 어트리뷰트가 더 있습니다."
151
+ "클래스 :class:`! Class` 인스턴스는 class 문으로 정의된 클래스를 설명합니다. :class:`Function "
152
+ "<Function>` \\ 과 같은 어트리뷰트에 더해 두 개의 어트리뷰트가 더 있습니다."
158
153
159
154
#: ../../library/pyclbr.rst:125
160
155
msgid "Name of the file in which the class is defined."
@@ -169,9 +164,8 @@ msgid "The name of the class."
169
164
msgstr "클래스의 이름."
170
165
171
166
#: ../../library/pyclbr.rst:145
172
- #, fuzzy
173
167
msgid "For top-level classes, ``None``. For nested classes, the parent."
174
- msgstr "최상위 클래스면, None. 중첩된 클래스면, 부모."
168
+ msgstr "최상위 클래스면, `` None`` . 중첩된 클래스면, 부모."
175
169
176
170
#: ../../library/pyclbr.rst:152
177
171
msgid ""
@@ -180,25 +174,23 @@ msgid ""
180
174
msgstr "이름을 중첩된 함수와 클래스에 관한 설명자로 매핑하는 딕셔너리."
181
175
182
176
#: ../../library/pyclbr.rst:160
183
- #, fuzzy
184
177
msgid ""
185
178
"A list of :class:`!Class` objects which describe the immediate base "
186
179
"classes of the class being described. Classes which are named as "
187
180
"superclasses but which are not discoverable by :func:`readmodule_ex` are "
188
181
"listed as a string with the class name instead of as :class:`!Class` "
189
182
"objects."
190
183
msgstr ""
191
- "설명되는 클래스의 직접적인 베이스 클래스를 설명하는 :class:`Class` 객체의 리스트. 슈퍼 클래스로 명명되었지만 "
192
- ":func:`readmodule_ex`\\ 가 찾을 수 없는 클래스는 :class:`Class` 객체가 아니라 클래스 이름을 담은 "
184
+ "설명되는 클래스의 직접적인 베이스 클래스를 설명하는 :class:`! Class` 객체의 리스트. 슈퍼 클래스로 명명되었지만 "
185
+ ":func:`readmodule_ex`\\ 가 찾을 수 없는 클래스는 :class:`! Class` 객체가 아니라 클래스 이름을 담은 "
193
186
"문자열로 나열됩니다."
194
187
195
188
#: ../../library/pyclbr.rst:169
196
- #, fuzzy
197
189
msgid ""
198
190
"A :class:`dictionary <dict>` mapping method names to line numbers. This "
199
191
"can be derived from the newer :attr:`children` dictionary, but remains "
200
192
"for back-compatibility."
201
193
msgstr ""
202
- "메서드 이름을 줄 번호에 매핑하는 딕셔너리. 최신 children 딕셔너리에서 파생될 수 있지만, 이전 버전과의 호환성을 위해 "
203
- "남아있습니다."
194
+ "메서드 이름을 줄 번호에 매핑하는 :class:` 딕셔너리 <dict>` . 최신 :attr:` children` 딕셔너리에서 파생될 수"
195
+ " 있지만, 이전 버전과의 호환성을 위해 남아있습니다."
204
196
0 commit comments