Skip to content

Commit 6cdbf33

Browse files
committed
Closes #42 - translate c-api/memoryview.po
1 parent c7342ee commit 6cdbf33

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

c-api/memoryview.po

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,31 @@
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/memoryview.rst:9
2120
msgid "MemoryView objects"
22-
msgstr ""
21+
msgstr "MemoryView 객체"
2322

2423
#: ../Doc/c-api/memoryview.rst:11
2524
msgid ""
2625
"A :class:`memoryview` object exposes the C level :ref:`buffer interface "
2726
"<bufferobjects>` as a Python object which can then be passed around like "
2827
"any other object."
2928
msgstr ""
29+
":class:`memoryview` 객체는 C 수준 :ref:`버퍼 인터페이스 <bufferobjects>`\\를 다른 객체와 마찬가지로"
30+
" 전달될 수 있는 파이썬 객체로 노출합니다."
3031

3132
#: ../Doc/c-api/memoryview.rst:18
3233
msgid ""
@@ -35,19 +36,25 @@ msgid ""
3536
"object will be read/write, otherwise it may be either read-only or "
3637
"read/write at the discretion of the exporter."
3738
msgstr ""
39+
"버퍼 인터페이스를 제공하는 객체에서 memoryview 객체를 만듭니다. *obj*\\가 쓰기 가능한 버퍼 제공을 지원하면, "
40+
"memoryview 객체는 읽기/쓰기가 되고, 그렇지 않으면 읽기 전용이거나 제공자의 재량에 따라 읽기/쓰기가 될 수 있습니다."
3841

3942
#: ../Doc/c-api/memoryview.rst:25
4043
msgid ""
4144
"Create a memoryview object using *mem* as the underlying buffer. *flags* "
4245
"can be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`."
4346
msgstr ""
47+
"*mem*\\를 하부 버퍼로 사용하여 memoryview 객체를 만듭니다. *flags*\\는 :c:macro:`PyBUF_READ` 나"
48+
" :c:macro:`PyBUF_WRITE` 중 하나일 수 있습니다."
4449

4550
#: ../Doc/c-api/memoryview.rst:32
4651
msgid ""
4752
"Create a memoryview object wrapping the given buffer structure *view*. "
4853
"For simple byte buffers, :c:func:`PyMemoryView_FromMemory` is the "
4954
"preferred function."
5055
msgstr ""
56+
"주어진 버퍼 구조체 *view*\\를 감싸는 memoryview 객체를 만듭니다. 간단한 바이트 버퍼의 경우는, "
57+
":c:func:`PyMemoryView_FromMemory`\\가 선호되는 함수입니다."
5158

5259
#: ../Doc/c-api/memoryview.rst:38
5360
msgid ""
@@ -57,19 +64,26 @@ msgid ""
5764
"original memory. Otherwise, a copy is made and the memoryview points to a"
5865
" new bytes object."
5966
msgstr ""
67+
"버퍼 인터페이스를 정의하는 객체로부터 메모리의 :term:`연속 <contiguous>` 청크('C' 나 'F'ortran "
68+
"*order*\\로)로 memoryview 객체를 만듭니다. 메모리가 연속적이면 memoryview 객체는 원래 메모리를 가리킵니다. "
69+
"그렇지 않으면, 복사본이 만들어지고 memoryview는 새 바이트열 객체를 가리킵니다."
6070

6171
#: ../Doc/c-api/memoryview.rst:47
6272
msgid ""
6373
"Return true if the object *obj* is a memoryview object. It is not "
6474
"currently allowed to create subclasses of :class:`memoryview`."
6575
msgstr ""
76+
"객체 *obj*\\가 memoryview 객체면 참을 반환합니다. 현재는 :class:`memoryview`\\의 서브 클래스를 만들 수"
77+
" 없습니다."
6678

6779
#: ../Doc/c-api/memoryview.rst:53
6880
msgid ""
6981
"Return a pointer to the memoryview's private copy of the exporter's "
7082
"buffer. *mview* **must** be a memoryview instance; this macro doesn't "
7183
"check its type, you must do it yourself or you will risk crashes."
7284
msgstr ""
85+
"제공자 버퍼의 memoryview의 비공개 복사본의 포인터를 돌려줍니다. *mview*\\는 **반드시** memoryview "
86+
"인스턴스여야 합니다; 이 매크로는 형을 확인하지 않으므로 직접 검사해야 합니다, 그렇지 않으면 충돌 위험이 있습니다."
7387

7488
#: ../Doc/c-api/memoryview.rst:59
7589
msgid ""
@@ -79,4 +93,6 @@ msgid ""
7993
":c:func:`PyMemoryView_FromBuffer`. *mview* **must** be a memoryview "
8094
"instance."
8195
msgstr ""
82-
96+
"memoryview가 기반으로 하는 제공자 객체에 대한 포인터나 memoryview가 "
97+
":c:func:`PyMemoryView_FromMemory` 나 :c:func:`PyMemoryView_FromBuffer` 함수 중 "
98+
"하나로 만들어졌으면 *NULL*\\를 반환합니다. *mview*\\는 **반드시** memoryview 인스턴스여야 합니다."

0 commit comments

Comments
 (0)