Skip to content

Commit ab150ef

Browse files
committed
#956 - remove fuzzy flags
1 parent 43d5645 commit ab150ef

File tree

1 file changed

+16
-22
lines changed

1 file changed

+16
-22
lines changed

library/copy.po

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
@@ -18,9 +17,8 @@ msgstr ""
1817
"Generated-By: Babel 2.17.0\n"
1918

2019
#: ../../library/copy.rst:2
21-
#, fuzzy
2220
msgid ":mod:`!copy` --- Shallow and deep copy operations"
23-
msgstr ":mod:`copy` --- 얕은 복사와 깊은 복사 연산"
21+
msgstr ":mod:`!copy` --- 얕은 복사와 깊은 복사 연산"
2422

2523
#: ../../library/copy.rst:7
2624
msgid "**Source code:** :source:`Lib/copy.py`"
@@ -43,14 +41,12 @@ msgid "Interface summary:"
4341
msgstr "인터페이스 요약:"
4442

4543
#: ../../library/copy.rst:22
46-
#, fuzzy
4744
msgid "Return a shallow copy of *obj*."
48-
msgstr "*x*\\의 얕은 사본을 반환합니다."
45+
msgstr "*obj*\\의 얕은 사본을 반환합니다."
4946

5047
#: ../../library/copy.rst:27
51-
#, fuzzy
5248
msgid "Return a deep copy of *obj*."
53-
msgstr "*x*\\의 깊은 사본을 반환합니다."
49+
msgstr "*obj*\\의 깊은 사본을 반환합니다."
5450

5551
#: ../../library/copy.rst:32
5652
msgid ""
@@ -117,16 +113,15 @@ msgid ""
117113
msgstr "사용자 정의 클래스가 복사 연산 또는 복사된 구성요소 집합을 재정의하도록 합니다."
118114

119115
#: ../../library/copy.rst:70
120-
#, fuzzy
121116
msgid ""
122117
"This module does not copy types like module, method, stack trace, stack "
123118
"frame, file, socket, window, or any similar types. It does \"copy\" "
124119
"functions and classes (shallow and deeply), by returning the original "
125120
"object unchanged; this is compatible with the way these are treated by "
126121
"the :mod:`pickle` module."
127122
msgstr ""
128-
"이 모듈은 모듈, 메서드, 스택 트레이스, 스택 프레임, 파일, 소켓, 윈도우, 배열과 같은 유형들은 복사하지 않습니다.원래 객체를"
129-
" 변화시키지 않고 반환함으로써 함수와 클래스를 (얕고 깊게) \"복사\" 합니다;이것은 :mod:`pickle` 모듈로 처리되는 "
123+
"이 모듈은 모듈, 메서드, 스택 트레이스, 스택 프레임, 파일, 소켓, 윈도우나 그 비슷한 유형들은 복사하지 않습니다. 원래 객체를"
124+
" 변화시키지 않고 반환함으로써 함수와 클래스를 (얕고 깊게) \"복사\" 합니다; 이것은 :mod:`pickle` 모듈로 처리되는 "
130125
"방식과 호환됩니다."
131126

132127
#: ../../library/copy.rst:75
@@ -155,15 +150,16 @@ msgid ""
155150
" special methods :meth:`~object.__copy__` and "
156151
":meth:`~object.__deepcopy__`."
157152
msgstr ""
153+
"클래스가 자체적으로 복사 구현을 정의하기 위해선, :meth:`~object.__copy__` 와 "
154+
":meth:`~object.__deepcopy__` 같은 특수 메서드를 정의할 수 있습니다."
158155

159156
#: ../../library/copy.rst:98
160157
msgid ""
161158
"Called to implement the shallow copy operation; no additional arguments "
162159
"are passed."
163-
msgstr ""
160+
msgstr "얕은 복사 연산을 실행하기 위해 호출됩니다; 추가적인 인자를 전달 하지 않습니다."
164161

165162
#: ../../library/copy.rst:104
166-
#, fuzzy
167163
msgid ""
168164
"Called to implement the deep copy operation; it is passed one argument, "
169165
"the *memo* dictionary. If the ``__deepcopy__`` implementation needs to "
@@ -172,11 +168,9 @@ msgid ""
172168
"the *memo* dictionary as second argument. The *memo* dictionary should be"
173169
" treated as an opaque object."
174170
msgstr ""
175-
"클래스가 자체적으로 복사 구현을 정의하기 위해선, :meth:`__copy__` 와 :meth:`__deepcopy__` 같은 특수"
176-
" 메서드를 정의할 수 있습니다.전자는 얕은 복사 연산을 실행하기 위해 호출됩니다; 추가적인 인자를 전달 하지 않습니다.후자는 깊은 "
177-
"복사 연산을 실행하기 위해 호출됩니다; ``memo`` 딕셔너리가 하나의 인자로 전달됩니다. :meth:`__deepcopy__` "
178-
"구현에서 구성요소의 깊은 복사를 만들기 위해선,구성요소를 첫 번째 인자로 하고 memo 딕셔너리를 두 번째 인자로 하여 "
179-
":func:`deepcopy` 함수를 호출해야 합니다."
171+
"깊은 복사 연산을 실행하기 위해 호출됩니다; *memo* 딕셔너리가 하나의 인자로 전달됩니다. ``__deepcopy__`` "
172+
"구현에서 구성요소의 깊은 복사를 만들기 위해선, 구성요소를 첫 번째 인자로 하고 *memo* 딕셔너리를 두 번째 인자로 하여 "
173+
":func:`~copy.deepcopy` 함수를 호출해야 합니다. *memo* 딕셔너리는 불투명 객체로 취급해야 합니다."
180174

181175
#: ../../library/copy.rst:114
182176
msgid ""
@@ -204,21 +198,21 @@ msgstr "객체 상태 조회와 복원을 지원하는데 사용되는 특수
204198

205199
#: ../../library/copy.rst:79
206200
msgid "module"
207-
msgstr ""
201+
msgstr "모듈"
208202

209203
#: ../../library/copy.rst:79
210204
msgid "pickle"
211-
msgstr ""
205+
msgstr "피클"
212206

213207
#: ../../library/copy.rst:86
214208
msgid "__copy__() (copy protocol)"
215-
msgstr ""
209+
msgstr "__copy__() (복사 프로토콜)"
216210

217211
#: ../../library/copy.rst:86
218212
msgid "__deepcopy__() (copy protocol)"
219-
msgstr ""
213+
msgstr "__deepcopy__() (복사 프로토콜)"
220214

221215
#: ../../library/copy.rst:111
222216
msgid "__replace__() (replace protocol)"
223-
msgstr ""
217+
msgstr "__replace__() (치환 프로토콜)"
224218

0 commit comments

Comments
 (0)