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

translate numbers.po #278#456

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
flowdas merged 5 commits intopython:3.6fromrickiepark:3.6
May 30, 2018
Merged
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
번역 수정
  • Loading branch information
@rickiepark
rickiepark committedMay 28, 2018
commitd41c4c589293df14ff104c8d729399e7fc788eb9
36 changes: 18 additions & 18 deletionslibrary/numbers.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,7 +35,7 @@ msgstr ""
":mod:`numbers` 모듈(:pep:`3141`)은 숫자에 대한 "
":term:`추상 베이스 클래스 <abstract base class>` 의 계층 구조를 정의합니다. "
"계층 구조가 깊어질수록 더 많은 연산이 정의되어 있습니다. "
"이 모듈에 정의된 모든타입은 인스턴스로 만들 수 없습니다."
"이 모듈에 정의된 모든형은 인스턴스로 만들 수 없습니다."


#: ../Doc/library/numbers.rst:18
Expand All@@ -44,8 +44,8 @@ msgid ""
"argument *x* is a number, without caring what kind, use ``isinstance(x, "
"Number)``."
msgstr ""
"숫자 계층의 최상위 클래스입니다.타입에 상관없이 "
"매개변수 *x* 가 숫자인지 확인하려면 ``isinstance(x, Number)`` 를 사용하세요."
"숫자 계층의 최상위 클래스입니다.형에 상관없이 "
"인자 *x* 가 숫자인지 확인하려면 ``isinstance(x, Number)`` 를 사용하세요."

#: ../Doc/library/numbers.rst:23
msgid "The numeric tower"
Expand All@@ -60,8 +60,8 @@ msgid ""
":meth:`conjugate`, ``==``, and ``!=``. All except ``-`` and ``!=`` are "
"abstract."
msgstr ""
"이 서브 클래스는 복소수를 표현하고 내장 :class:`complex`타입에 사용되는 연산을 포함합니다. "
"여기에는 :class:`complex` 와 :class:`bool`타입으로의 변환과 "
"이 서브 클래스는 복소수를 표현하고 내장 :class:`complex`형에 사용되는 연산을 포함합니다. "
"여기에는 :class:`complex` 와 :class:`bool`형으로의 변환과 "
":attr:`.real`, :attr:`.imag`, ``+``, ``-``, ``*``, ``/``, :func:`abs`, "
":meth:`conjugate`, ``==``, ``!=`` 이 포함됩니다. "
"``-`` 와 ``!=`` 를 제외하고는 모두 추상 메서드입니다. "
Expand All@@ -87,7 +87,7 @@ msgid ""
"To :class:`Complex`, :class:`Real` adds the operations that work on real "
"numbers."
msgstr ""
":class:`Real` 클래스는 :class:`Complex`클래스를 위한 실수 연산을 추가합니다."
":class:`Real` 클래스는 :class:`Complex`클래스에 실수 연산을 추가합니다."

#: ../Doc/library/numbers.rst:51
msgid ""
Expand All@@ -113,7 +113,7 @@ msgid ""
":attr:`~Rational.denominator` properties, which should be in lowest "
"terms. With these, it provides a default for :func:`float`."
msgstr ""
":class:`Real` 의서브타입이고 :attr:`~Rational.numerator` 와 "
":class:`Real` 의하위 형이고 :attr:`~Rational.numerator` 와 "
":attr:`~Rational.denominator` 속성이 추가됩니다. "
"이 속성은 기약 분수의 값이어야 합니다. 또한 :func:`float` 함수를 위한 기본값으로 사용됩니다."

Expand All@@ -128,14 +128,14 @@ msgid ""
":attr:`~Rational.denominator`. Adds abstract methods for ``**`` and bit-"
"string operations: ``<<``, ``>>``, ``&``, ``^``, ``|``, ``~``."
msgstr ""
":class:`Rational` 의서브타입이고 :class:`int` 클래스로 변환 기능이 추가됩니다. "
":class:`Rational` 의하위 형이고 :class:`int` 클래스로 변환 기능이 추가됩니다. "
":func:`float`, :attr:`~Rational.numerator`, :attr:`~Rational.denominator` 를 "
"위한 기본값을 제공합니다. ``**`` 를 위한 메서드와 비트 연산 "
"``<<``, ``>>``, ``&``, ``^``, ``|``, ``~`` 를 추가합니다."

#: ../Doc/library/numbers.rst:84
msgid "Notes for type implementors"
msgstr "타입 구현을 위한 주의 사항"
msgstr " 구현을 위한 주의 사항"

#: ../Doc/library/numbers.rst:86
msgid ""
Expand All@@ -145,7 +145,7 @@ msgid ""
"implements :func:`hash` as follows::"
msgstr ""
"구현자는 동일한 숫자가 같게 취급되고 같은 값으로 해싱되도록 해야 합니다. "
"만약 종류가 다른 실수의서브타입이있는 경우 조금애매할 수 있습니다. "
"만약 종류가 다른 실수의하위 형이있는 경우 조금까다로울 수 있습니다. "
"예를 들어 :class:`fractions.Fraction` 클래스는 :func:`hash` 함수를 다음과 같이 구현합니다::"

#: ../Doc/library/numbers.rst:105
Expand DownExpand Up@@ -174,9 +174,9 @@ msgid ""
" do the operation there. For subtypes of :class:`Integral`, this means "
"that :meth:`__add__` and :meth:`__radd__` should be defined as::"
msgstr ""
"다른타입에 대한 연산은 두매개변수의 타입에 관해 알고 있는 구현을 호출하거나 "
"두매개변수를 가장 비슷한 내장타입으로 변환하여 연산을 하도록 산술 연산을 구현하는 것이 좋습니다. "
":class:`Integral` 클래스의서브타입일 경우에 :meth:`__add__` 와 :meth:`__radd__` "
"다른형에 대한 연산은 두인자의 형에 관해 알고 있는 구현을 호출하거나 "
"두인자를 가장 비슷한 내장형으로 변환하여 연산을 하도록 산술 연산을 구현하는 것이 좋습니다. "
":class:`Integral` 클래스의하위 형일 경우에 :meth:`__add__` 와 :meth:`__radd__` "
"메서드는 다음과 같이 정의되어야 함을 의미합니다::"

#: ../Doc/library/numbers.rst:152
Expand All@@ -187,9 +187,9 @@ msgid ""
"will be an instance of ``A``, which is a subtype of :class:`Complex` (``a"
" : A <: Complex``), and ``b : B <: Complex``. I'll consider ``a + b``:"
msgstr ""
":class:`Complex` 클래스의 서브클래스에는 다섯 가지의 서로 다른 혼합타입 연산이 있습니다. "
":class:`Complex` 클래스의 서브클래스에는 다섯 가지의 서로 다른 혼합 연산이 있습니다. "
"위의 코드에서 ``MyIntegral`` 와 ``OtherTypeIKnowAbout`` 를 제외한 나머지를 기본구조라고 하겠습니다. "
"``a`` 는 :class:`Complex` 의서브타입인 ``A`` 의 인스턴스입니다(즉 ``a : A <: Complex`` 입니다). "
"``a`` 는 :class:`Complex` 의하위 형인 ``A`` 의 인스턴스입니다(즉 ``a : A <: Complex`` 입니다). "
"비슷하게 ``b : B <: Complex`` 입니다. ``a + b`` 인 경우를 생각해 보겠습니다:"

#: ../Doc/library/numbers.rst:159
Expand All@@ -204,7 +204,7 @@ msgid ""
":const:`NotImplemented` from :meth:`__add__`. (Or ``A`` may not implement"
" :meth:`__add__` at all.)"
msgstr ""
"``A`` 가 기본구조 코드로진입한다면 :meth:`__add__` 로부터 어떤 값을반환했을 수 있습니다. "
"``A`` 가 기본구조 코드로진입하고 :meth:`__add__` 로부터 어떤 값을반환한다면 "
"``B`` 가 똑똑하게 :meth:`__radd__` 메서드를 정의했을 가능성을 놓치지 않기 위해 "
"기본구조는 :meth:`__add__` 에서 :const:`NotImplemented` 를 반환해야 합니다. "
"(또는 ``A`` 가 :meth:`__add__` 메서드를 전혀 구현하지 않을 수도 있습니다.)"
Expand DownExpand Up@@ -253,6 +253,6 @@ msgid ""
"and reverse instances of any given operator. For example, "
":class:`fractions.Fraction` uses::"
msgstr ""
"대부분 주어진 어떤타입에 대한 연산은 매우 비슷하기 때문에, "
"연산자의 앞과 뒤의 인스턴스를 생성하는 헬퍼 함수를 정의하는 것이 유용합니다. "
"대부분 주어진 어떤형에 대한 연산은 매우 비슷하기 때문에, "
"주어진 연산의 정방향(forward) 인스턴스와 역방향(reverse) 인스턴스를 생성하는 헬퍼 함수를 정의하는 것이 유용합니다. "
"예를 들어 :class:`fractions.Fraction` 클래스는 다음과 같이 사용합니다::"

[8]ページ先頭

©2009-2025 Movatter.jp