Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita0b547a

Browse files
committed
editorial corrections to library/numbers.po
1 parentbd8bf43 commita0b547a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

‎library/numbers.po

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ msgstr ""
6464
"여기에는 :class:`complex` 와 :class:`bool` 형으로의 변환과 "
6565
":attr:`.real`, :attr:`.imag`, ``+``, ``-``, ``*``, ``/``, :func:`abs`, "
6666
":meth:`conjugate`, ``==``, ``!=`` 이 포함됩니다. "
67-
"``-`` 와 ``!=`` 를 제외하고는 모두추상 메서드입니다. "
67+
"``-`` 와 ``!=`` 를 제외하고는 모두추상입니다. "
6868

6969
#:../Doc/library/numbers.rst:35
7070
msgid"Abstract. Retrieves the real component of this number."
71-
msgstr"프로퍼티(추상 메서드). 복소수의 실수부를 반환합니다."
71+
msgstr"추상. 복소수의 실수부를 반환합니다."
7272

7373
#:../Doc/library/numbers.rst:39
7474
msgid"Abstract. Retrieves the imaginary component of this number."
75-
msgstr"프로퍼티(추상 메서드). 복소수의 허수부를 반환합니다."
75+
msgstr"추상. 복소수의 허수부를 반환합니다."
7676

7777
#:../Doc/library/numbers.rst:43
7878
msgid""
@@ -95,7 +95,7 @@ msgid ""
9595
":func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, "
9696
"``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``."
9797
msgstr""
98-
"간단히요약하면 :class:`float` 로의 변환과 :func:`math.trunc`, "
98+
"요약하면 :class:`float` 로의 변환과 :func:`math.trunc`, "
9999
":func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, "
100100
"``//``, ``%``, ``<``, ``<=``, ``>``, ``>=`` 가 포함됩니다."
101101

@@ -175,7 +175,7 @@ msgid ""
175175
"that :meth:`__add__` and :meth:`__radd__` should be defined as::"
176176
msgstr""
177177
"다른 형에 대한 연산은 두 인자의 형에 관해 알고 있는 구현을 호출하거나 "
178-
"두 인자를 가장 비슷한내장 형으로변환하여연산을 하도록 산술 연산을 구현하는 것이 좋습니다. "
178+
"두 인자를 가장 비슷한내장형으로변환하여연산하도록 산술 연산을 구현하는 것이 좋습니다. "
179179
":class:`Integral` 클래스의 하위 형일 경우에 :meth:`__add__` 와 :meth:`__radd__` "
180180
"메서드는 다음과 같이 정의되어야 함을 의미합니다::"
181181

@@ -187,7 +187,7 @@ msgid ""
187187
"will be an instance of ``A``, which is a subtype of :class:`Complex` (``a"
188188
" : A <: Complex``), and ``b : B <: Complex``. I'll consider ``a + b``:"
189189
msgstr""
190-
":class:`Complex` 클래스의 서브클래스에는 다섯 가지의 서로 다른혼합 형 연산이 있습니다. "
190+
":class:`Complex` 클래스의 서브클래스에는 다섯 가지의 서로 다른혼합형 연산이 있습니다. "
191191
"위의 코드에서 ``MyIntegral`` 와 ``OtherTypeIKnowAbout`` 를 제외한 나머지를 기본구조라고 하겠습니다. "
192192
"``a`` 는 :class:`Complex` 의 하위 형인 ``A`` 의 인스턴스입니다(즉 ``a : A <: Complex`` 입니다). "
193193
"비슷하게 ``b : B <: Complex`` 입니다. ``a + b`` 인 경우를 생각해 보겠습니다:"
@@ -204,7 +204,7 @@ msgid ""
204204
":const:`NotImplemented` from :meth:`__add__`. (Or ``A`` may not implement"
205205
" :meth:`__add__` at all.)"
206206
msgstr""
207-
"``A`` 가 기본구조 코드로 진입하고 :meth:`__add__` 로부터 어떤 값을 반환한다면 "
207+
"``A`` 가 기본구조 코드로 진입하고 :meth:`__add__`\\로 부터 어떤 값을 반환한다면 "
208208
"``B`` 가 똑똑하게 정의한 :meth:`__radd__` 메서드를 놓칠 수 있습니다. "
209209
"이를 피하려면 기본구조는 :meth:`__add__` 에서 :const:`NotImplemented` 를 반환해야 합니다. "
210210
"(또는 ``A`` 가 :meth:`__add__` 메서드를 전혀 구현하지 않을 수도 있습니다.)"
@@ -215,14 +215,14 @@ msgid ""
215215
"well."
216216
msgstr""
217217
"그다음 ``B`` 의 :meth:`__radd__` 메서드가 기회를 얻습니다. "
218-
"이 메서드가 ``a`` 를 받을 수 있다면 모든 것이문제 없이 처리됩니다."
218+
"이 메서드가 ``a`` 를 받을 수 있다면 모든 것이문제없이 처리됩니다."
219219

220220
#:../Doc/library/numbers.rst:169
221221
msgid""
222222
"If it falls back to the boilerplate, there are no more possible methods "
223223
"to try, so this is where the default implementation should live."
224224
msgstr""
225-
"기본구조 코드로 돌아온다면 더이상시도해 볼 수 있는 메서드가없기 때문에 "
225+
"기본구조 코드로 돌아온다면 더 시도해 볼 수 있는 메서드가없으므로 "
226226
"기본적으로 수행될 구현을 작성해야 합니다."
227227

228228
#:../Doc/library/numbers.rst:172
@@ -243,7 +243,7 @@ msgid ""
243243
"``a+b == b+a``."
244244
msgstr""
245245
"만약 어떤 것도 공유하지 않는 ``A <: Complex`` 와 ``B <: Real`` 라면 "
246-
"적절한 공유 연산(shared operation)은 내장 :class:`complex` 클래스에 연관된 것입니다."
246+
"적절한 공유 연산(shared operation)은 내장 :class:`complex` 클래스에 연관된 것입니다. "
247247
"양쪽의 :meth:`__radd__` 메서드가 여기에 해당하므로 ``a+b == b+a`` 가 됩니다."
248248

249249
#:../Doc/library/numbers.rst:182
@@ -253,6 +253,6 @@ msgid ""
253253
"and reverse instances of any given operator. For example, "
254254
":class:`fractions.Fraction` uses::"
255255
msgstr""
256-
"대부분 주어진 어떤 형에 대한 연산은 매우비슷하기 때문에, "
257-
"주어진연산의 정방향(forward) 인스턴스와 역방향(reverse) 인스턴스를 생성하는 헬퍼 함수를 정의하는 것이 유용합니다. "
256+
"대부분 주어진 어떤 형에 대한 연산은 매우비슷하므로, "
257+
"주어진연산자의 정방향(forward) 인스턴스와 역방향(reverse) 인스턴스를 생성하는 헬퍼 함수를 정의하는 것이 유용합니다. "
258258
"예를 들어 :class:`fractions.Fraction` 클래스는 다음과 같이 사용합니다::"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp