Skip to content

Commit 96307fb

Browse files
committed
Closes #27 - translate c-api/float.po
1 parent eb09860 commit 96307fb

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed

c-api/float.po

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,58 +3,62 @@
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"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2017-11-26 18:49+0900\n"
1211
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <LL@li.org>\n"
12+
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
13+
"Language-Team: Korean (https://python.flowdas.com)\n"
1514
"MIME-Version: 1.0\n"
1615
"Content-Type: text/plain; charset=utf-8\n"
1716
"Content-Transfer-Encoding: 8bit\n"
1817
"Generated-By: Babel 2.5.1\n"
1918

2019
#: ../Doc/c-api/float.rst:6
2120
msgid "Floating Point Objects"
22-
msgstr ""
21+
msgstr "부동 소수점 객체"
2322

2423
#: ../Doc/c-api/float.rst:13
2524
msgid ""
2625
"This subtype of :c:type:`PyObject` represents a Python floating point "
2726
"object."
28-
msgstr ""
27+
msgstr "이 :c:type:`PyObject`\\의 서브 형은 파이썬 부동 소수점 객체를 나타냅니다."
2928

3029
#: ../Doc/c-api/float.rst:18
3130
msgid ""
3231
"This instance of :c:type:`PyTypeObject` represents the Python floating "
3332
"point type. This is the same object as :class:`float` in the Python "
3433
"layer."
3534
msgstr ""
35+
"이 :c:type:`PyTypeObject` 인스턴스는 파이썬 부동 소수점 형을 나타냅니다. 이것은 파이썬 계층에서 "
36+
":class:`float`\\와 같은 객체입니다."
3637

3738
#: ../Doc/c-api/float.rst:24
3839
msgid ""
3940
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of "
4041
":c:type:`PyFloatObject`."
4142
msgstr ""
43+
"인자가 :c:type:`PyFloatObject` 나 :c:type:`PyFloatObject`\\의 서브 형이면 참을 반환합니다."
4244

4345
#: ../Doc/c-api/float.rst:30
4446
msgid ""
4547
"Return true if its argument is a :c:type:`PyFloatObject`, but not a "
4648
"subtype of :c:type:`PyFloatObject`."
4749
msgstr ""
50+
"인자가 :c:type:`PyFloatObject`\\이지만 :c:type:`PyFloatObject`\\의 서브 형은 아니면 참을 "
51+
"반환합니다."
4852

4953
#: ../Doc/c-api/float.rst:36
5054
msgid ""
5155
"Create a :c:type:`PyFloatObject` object based on the string value in "
5256
"*str*, or *NULL* on failure."
53-
msgstr ""
57+
msgstr "*str*\\의 문자열 값을 기반으로 :c:type:`PyFloatObject` 객체를 만들거나, 실패하면 *NULL*."
5458

5559
#: ../Doc/c-api/float.rst:42
5660
msgid "Create a :c:type:`PyFloatObject` object from *v*, or *NULL* on failure."
57-
msgstr ""
61+
msgstr "*v*\\로부터 :c:type:`PyFloatObject` 객체를 만들거나, 실패하면 *NULL*."
5862

5963
#: ../Doc/c-api/float.rst:47
6064
msgid ""
@@ -64,35 +68,40 @@ msgid ""
6468
"*pyfloat* into a float. This method returns ``-1.0`` upon failure, so one"
6569
" should call :c:func:`PyErr_Occurred` to check for errors."
6670
msgstr ""
71+
"*pyfloat* 의 내용의 C :c:type:`double` 표현을 반환합니다. *pyfloat*\\가 파이썬 부동 소수점 객체가 "
72+
"아니지만 :meth:`__float__` 메서드가 있으면, *pyfloat*\\를 float로 변환하기 위해 이 메서드가 먼저 "
73+
"호출됩니다. 이 메서드는 실패하면 ``-1.0``\\을 반환하므로, :c:func:`PyErr_Occurred`\\를 호출하여 에러를 "
74+
"확인해야 합니다."
6775

6876
#: ../Doc/c-api/float.rst:56
6977
msgid ""
7078
"Return a C :c:type:`double` representation of the contents of *pyfloat*, "
7179
"but without error checking."
72-
msgstr ""
80+
msgstr "에러 검사 없이 *pyfloat* 의 내용의 C :c:type:`double` 표현을 반환합니다."
7381

7482
#: ../Doc/c-api/float.rst:62
7583
msgid ""
7684
"Return a structseq instance which contains information about the "
7785
"precision, minimum and maximum values of a float. It's a thin wrapper "
7886
"around the header file :file:`float.h`."
7987
msgstr ""
88+
"float의 정밀도, 최솟값, 최댓값에 관한 정보를 포함한 structseq 인스턴스를 돌려줍니다. 헤더 파일 "
89+
":file:`float.h`\\를 감싸는 얇은 래퍼입니다."
8090

8191
#: ../Doc/c-api/float.rst:69
8292
msgid ""
8393
"Return the maximum representable finite float *DBL_MAX* as C "
8494
":c:type:`double`."
85-
msgstr ""
95+
msgstr "최대 표현 가능한 유한 float *DBL_MAX*\\를 C :c:type:`double`\\로 반환합니다."
8696

8797
#: ../Doc/c-api/float.rst:74
8898
msgid ""
8999
"Return the minimum normalized positive float *DBL_MIN* as C "
90100
":c:type:`double`."
91-
msgstr ""
101+
msgstr "최소 정규화된(normalized) 양의 float *DBL_MIN*\\를 C :c:type:`double`\\로 반환합니다."
92102

93103
#: ../Doc/c-api/float.rst:78
94104
msgid ""
95105
"Clear the float free list. Return the number of items that could not be "
96106
"freed."
97-
msgstr ""
98-
107+
msgstr "float 자유 목록(free list)을 비웁니다. 해제할 수 없는 항목의 수를 반환합니다."

0 commit comments

Comments
 (0)