Skip to content

Commit eb5da7b

Browse files
committed
Closes #7 - translate c-api/allocation.po
1 parent a43581c commit eb5da7b

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

c-api/allocation.po

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,22 @@
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/allocation.rst:6
2120
msgid "Allocating Objects on the Heap"
22-
msgstr ""
21+
msgstr "힙에 객체 할당하기"
2322

2423
#: ../Doc/c-api/allocation.rst:17
2524
msgid ""
@@ -29,12 +28,15 @@ msgid ""
2928
"detector's set of observed objects. Other fields of the object are not "
3029
"affected."
3130
msgstr ""
31+
"새로 할당된 객체 *op*\\를 형과 초기 참조로 초기화합니다. 초기화된 객체를 반환합니다. *type*\\이 객체가 순환 가비지 "
32+
"감지기에 참여함을 나타내면, 감지기의 감시되는 객체 집합에 추가됩니다. 객체의 다른 필드는 영향을 받지 않습니다."
3233

3334
#: ../Doc/c-api/allocation.rst:26
3435
msgid ""
3536
"This does everything :c:func:`PyObject_Init` does, and also initializes "
3637
"the length information for a variable-size object."
3738
msgstr ""
39+
"이것은 :c:func:`PyObject_Init`\\가 수행하는 모든 작업을 수행하고, 가변 크기 객체의 길이 정보도 초기화합니다."
3840

3941
#: ../Doc/c-api/allocation.rst:32
4042
msgid ""
@@ -44,6 +46,9 @@ msgid ""
4446
"The size of the memory allocation is determined from the "
4547
":c:member:`~PyTypeObject.tp_basicsize` field of the type object."
4648
msgstr ""
49+
"C 구조체 형 *TYPE*\\과 파이썬 형 객체 *type*\\을 사용하여 새로운 파이썬 객체를 할당합니다. 파이썬 객체 헤더로 정의되지"
50+
" 않은 필드는 초기화되지 않습니다; 객체의 참조 횟수는 1이 됩니다. 메모리 할당의 크기는 형 객체의 "
51+
":c:member:`~PyTypeObject.tp_basicsize` 필드에서 결정됩니다."
4752

4853
#: ../Doc/c-api/allocation.rst:41
4954
msgid ""
@@ -57,6 +62,11 @@ msgid ""
5762
"allocation decreases the number of allocations, improving the memory "
5863
"management efficiency."
5964
msgstr ""
65+
"C 구조체 형 *TYPE*\\과 파이썬 타입 형 *type*\\을 사용하여 새로운 파이썬 객체를 할당합니다. 파이썬 객체 헤더로 정의되지"
66+
" 않은 필드는 초기화되지 않습니다. 할당된 메모리는 *TYPE* 구조체에 더해 *type*\\의 "
67+
":c:member:`~PyTypeObject.tp_itemsize` 필드에 의해 주어진 크기의 *size* 필드를 허용합니다. 이는 "
68+
"튜플과 같은 객체를 구현할 때 유용합니다. 튜플은 만들 때 크기를 결정할 수 있습니다. 같은 할당에 필드 배열을 포함 시키면, 할당 "
69+
"횟수가 줄어들어, 메모리 관리 효율성이 향상됩니다."
6070

6171
#: ../Doc/c-api/allocation.rst:53
6272
msgid ""
@@ -66,19 +76,23 @@ msgid ""
6676
"type. The fields of the object should not be accessed after this call as"
6777
" the memory is no longer a valid Python object."
6878
msgstr ""
79+
":c:func:`PyObject_New` 나 :c:func:`PyObject_NewVar`\\를 사용한 객체에 할당된 메모리를 "
80+
"해제합니다. 이것은 일반적으로 객체의 형에 지정된 :c:member:`~PyTypeObject.tp_dealloc` 처리기에서 "
81+
"호출됩니다. 메모리가 더는 유효한 파이썬 객체가 아니므로, 이 호출 후에는 객체의 필드에 액세스해서는 안 됩니다."
6982

7083
#: ../Doc/c-api/allocation.rst:62
7184
msgid ""
7285
"Object which is visible in Python as ``None``. This should only be "
7386
"accessed using the :c:macro:`Py_None` macro, which evaluates to a pointer"
7487
" to this object."
7588
msgstr ""
89+
"파이썬에서 ``None``\\으로 노출되는 객체. 이 객체에 대한 포인터로 평가되는 :c:macro:`Py_None` 매크로를 사용해서 "
90+
"액세스해야 합니다."
7691

7792
#: ../Doc/c-api/allocation.rst:69
7893
msgid ":c:func:`PyModule_Create`"
79-
msgstr ""
94+
msgstr ":c:func:`PyModule_Create`"
8095

8196
#: ../Doc/c-api/allocation.rst:70
8297
msgid "To allocate and create extension modules."
83-
msgstr ""
84-
98+
msgstr "확장 모듈을 할당하고 만듭니다."

sphinx.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ msgstr "소스 보기"
9393
#: ../Doc/tools/templates/indexcontent.html:8
9494
#, python-format
9595
msgid "Welcome! This is the documentation for Python %(release)s."
96-
msgstr "환영합니다! 파이썬 %(release)s 설명서의 한국어 번역입니다. (진행률 26.8%%)"
96+
msgstr "환영합니다! 파이썬 %(release)s 설명서의 한국어 번역입니다. (진행률 26.9%%)"
9797

9898
#: ../Doc/tools/templates/indexcontent.html:10
9999
msgid "Parts of the documentation:"

0 commit comments

Comments
 (0)