Skip to content

Commit 93722a1

Browse files
committed
#834 - remove fuzzy flags
1 parent 024fab9 commit 93722a1

File tree

1 file changed

+12
-20
lines changed

1 file changed

+12
-20
lines changed

library/pyclbr.po

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

1919
#: ../../library/pyclbr.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!pyclbr` --- Python module browser support"
22-
msgstr ":mod:`pyclbr` --- 파이썬 모듈 브라우저 지원"
21+
msgstr ":mod:`!pyclbr` --- 파이썬 모듈 브라우저 지원"
2322

2423
#: ../../library/pyclbr.rst:9
2524
msgid "**Source code:** :source:`Lib/pyclbr.py`"
@@ -100,13 +99,12 @@ msgid "Function Objects"
10099
msgstr "Function 객체"
101100

102101
#: ../../library/pyclbr.rst:64
103-
#, fuzzy
104102
msgid ""
105103
"Class :class:`!Function` instances describe functions defined by def "
106104
"statements. They have the following attributes:"
107105
msgstr ""
108-
"클래스 :class:`Function` 인스턴스는 def 문으로 정의된 함수를 설명합니다. 다음과 같은 어트리뷰트를 가지고 있습니다"
109-
" :"
106+
"클래스 :class:`!Function` 인스턴스는 def 문으로 정의된 함수를 설명합니다. 다음과 같은 어트리뷰트를 가지고 "
107+
"있습니다 :"
110108

111109
#: ../../library/pyclbr.rst:70
112110
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."
125123
msgstr "정의가 시작되는 파일의 줄 번호."
126124

127125
#: ../../library/pyclbr.rst:90
128-
#, fuzzy
129126
msgid "For top-level functions, ``None``. For nested functions, the parent."
130-
msgstr "최상위 함수면, None. 중첩된 함수면, 부모."
127+
msgstr "최상위 함수면, ``None``. 중첩된 함수면, 부모."
131128

132129
#: ../../library/pyclbr.rst:97
133-
#, fuzzy
134130
msgid ""
135131
"A :class:`dictionary <dict>` mapping names to descriptors for nested "
136132
"functions and classes."
137-
msgstr "이름을 중첩된 함수와 클래스에 관한 설명자로 매핑하는 딕셔너리."
133+
msgstr "이름을 중첩된 함수와 클래스에 관한 설명자로 매핑하는 :class:`딕셔너리 <dict>`."
138134

139135
#: ../../library/pyclbr.rst:105
140136
msgid ""
@@ -147,14 +143,13 @@ msgid "Class Objects"
147143
msgstr "Class 객체"
148144

149145
#: ../../library/pyclbr.rst:118
150-
#, fuzzy
151146
msgid ""
152147
"Class :class:`!Class` instances describe classes defined by class "
153148
"statements. They have the same attributes as :class:`Functions "
154149
"<Function>` and two more."
155150
msgstr ""
156-
"클래스 :class:`Class` 인스턴스는 class 문으로 정의된 클래스를 설명합니다. Function과 같은 어트리뷰트에 더해"
157-
" 두 개의 어트리뷰트가 더 있습니다."
151+
"클래스 :class:`!Class` 인스턴스는 class 문으로 정의된 클래스를 설명합니다. :class:`Function "
152+
"<Function>`\\과 같은 어트리뷰트에 더해 두 개의 어트리뷰트가 더 있습니다."
158153

159154
#: ../../library/pyclbr.rst:125
160155
msgid "Name of the file in which the class is defined."
@@ -169,9 +164,8 @@ msgid "The name of the class."
169164
msgstr "클래스의 이름."
170165

171166
#: ../../library/pyclbr.rst:145
172-
#, fuzzy
173167
msgid "For top-level classes, ``None``. For nested classes, the parent."
174-
msgstr "최상위 클래스면, None. 중첩된 클래스면, 부모."
168+
msgstr "최상위 클래스면, ``None``. 중첩된 클래스면, 부모."
175169

176170
#: ../../library/pyclbr.rst:152
177171
msgid ""
@@ -180,25 +174,23 @@ msgid ""
180174
msgstr "이름을 중첩된 함수와 클래스에 관한 설명자로 매핑하는 딕셔너리."
181175

182176
#: ../../library/pyclbr.rst:160
183-
#, fuzzy
184177
msgid ""
185178
"A list of :class:`!Class` objects which describe the immediate base "
186179
"classes of the class being described. Classes which are named as "
187180
"superclasses but which are not discoverable by :func:`readmodule_ex` are "
188181
"listed as a string with the class name instead of as :class:`!Class` "
189182
"objects."
190183
msgstr ""
191-
"설명되는 클래스의 직접적인 베이스 클래스를 설명하는 :class:`Class` 객체의 리스트. 슈퍼 클래스로 명명되었지만 "
192-
":func:`readmodule_ex`\\가 찾을 수 없는 클래스는 :class:`Class` 객체가 아니라 클래스 이름을 담은 "
184+
"설명되는 클래스의 직접적인 베이스 클래스를 설명하는 :class:`!Class` 객체의 리스트. 슈퍼 클래스로 명명되었지만 "
185+
":func:`readmodule_ex`\\가 찾을 수 없는 클래스는 :class:`!Class` 객체가 아니라 클래스 이름을 담은 "
193186
"문자열로 나열됩니다."
194187

195188
#: ../../library/pyclbr.rst:169
196-
#, fuzzy
197189
msgid ""
198190
"A :class:`dictionary <dict>` mapping method names to line numbers. This "
199191
"can be derived from the newer :attr:`children` dictionary, but remains "
200192
"for back-compatibility."
201193
msgstr ""
202-
"메서드 이름을 줄 번호에 매핑하는 딕셔너리. 최신 children 딕셔너리에서 파생될 수 있지만, 이전 버전과의 호환성을 위해 "
203-
"남아있습니다."
194+
"메서드 이름을 줄 번호에 매핑하는 :class:`딕셔너리 <dict>`. 최신 :attr:`children` 딕셔너리에서 파생될 수"
195+
" 있지만, 이전 버전과의 호환성을 위해 남아있습니다."
204196

0 commit comments

Comments
 (0)