-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathmapping.po
More file actions
240 lines (212 loc) · 9.39 KB
/
mapping.po
File metadata and controls
240 lines (212 loc) · 9.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-17 23:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.17.0\n"
#: ../../c-api/mapping.rst:6
msgid "Mapping Protocol"
msgstr "매핑 프로토콜"
#: ../../c-api/mapping.rst:8
msgid ""
"See also :c:func:`PyObject_GetItem`, :c:func:`PyObject_SetItem` and "
":c:func:`PyObject_DelItem`."
msgstr ""
":c:func:`PyObject_GetItem`, :c:func:`PyObject_SetItem` 및 "
":c:func:`PyObject_DelItem`\\도 참조하십시오."
#: ../../c-api/mapping.rst:14
msgid ""
"Return ``1`` if the object provides the mapping protocol or supports "
"slicing, and ``0`` otherwise. Note that it returns ``1`` for Python "
"classes with a :meth:`~object.__getitem__` method, since in general it is"
" impossible to determine what type of keys the class supports. This "
"function always succeeds."
msgstr ""
"객체가 매핑 프로토콜을 제공하거나 슬라이싱을 지원하면 ``1``\\을 반환하고, 그렇지 않으면 ``0``\\을 반환합니다. "
":meth:`~object.__getitem__` 메서드가 있는 파이썬 클래스의 경우 ``1``\\을 반환한다는 점에 유의하십시오;"
" 일반적으로 클래스가 지원하는 키 형을 판단할 수 없기 때문입니다. 이 함수는 항상 성공합니다."
#: ../../c-api/mapping.rst:25
msgid ""
"Returns the number of keys in object *o* on success, and ``-1`` on "
"failure. This is equivalent to the Python expression ``len(o)``."
msgstr ""
"성공 시 객체 *o*\\의 키 수를 반환하고, 실패하면 ``-1``\\을 반환합니다. 이는 파이썬 표현식 ``len(o)``\\와 "
"동등합니다."
#: ../../c-api/mapping.rst:31
msgid ""
"This is the same as :c:func:`PyObject_GetItem`, but *key* is specified as"
" a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a "
":c:expr:`PyObject*`."
msgstr ""
#: ../../c-api/mapping.rst:38
msgid ""
"Variant of :c:func:`PyObject_GetItem` which doesn't raise :exc:`KeyError`"
" if the key is not found."
msgstr ""
#: ../../c-api/mapping.rst:41
msgid ""
"If the key is found, return ``1`` and set *\\*result* to a new "
":term:`strong reference` to the corresponding value. If the key is not "
"found, return ``0`` and set *\\*result* to ``NULL``; the :exc:`KeyError` "
"is silenced. If an error other than :exc:`KeyError` is raised, return "
"``-1`` and set *\\*result* to ``NULL``."
msgstr ""
#: ../../c-api/mapping.rst:53
msgid ""
"This is the same as :c:func:`PyMapping_GetOptionalItem`, but *key* is "
"specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather "
"than a :c:expr:`PyObject*`."
msgstr ""
#: ../../c-api/mapping.rst:62
msgid ""
"This is the same as :c:func:`PyObject_SetItem`, but *key* is specified as"
" a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a "
":c:expr:`PyObject*`."
msgstr ""
#: ../../c-api/mapping.rst:69
msgid "This is an alias of :c:func:`PyObject_DelItem`."
msgstr "이것은 :c:func:`PyObject_DelItem`\\의 별칭입니다."
#: ../../c-api/mapping.rst:74
msgid ""
"This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as"
" a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a "
":c:expr:`PyObject*`."
msgstr ""
#: ../../c-api/mapping.rst:81
msgid ""
"Return ``1`` if the mapping object has the key *key* and ``0`` otherwise."
" This is equivalent to the Python expression ``key in o``. On failure, "
"return ``-1``."
msgstr ""
"매핑 객체에 *key* 키가 있으면 ``1``\\을 반환하고, 그렇지 않으면 ``0``\\을 반환합니다. 이는 파이썬 표현식 "
"``key in o``\\와 동등합니다. 실패하면 ``-1``\\을 반환합니다."
#: ../../c-api/mapping.rst:90
msgid ""
"This is the same as :c:func:`PyMapping_HasKeyWithError`, but *key* is "
"specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather "
"than a :c:expr:`PyObject*`."
msgstr ""
#: ../../c-api/mapping.rst:99
msgid ""
"Return ``1`` if the mapping object has the key *key* and ``0`` otherwise."
" This is equivalent to the Python expression ``key in o``. This function "
"always succeeds."
msgstr ""
"매핑 객체에 *key* 키가 있으면 ``1``\\을 반환하고, 그렇지 않으면 ``0``\\을 반환합니다. 이는 파이썬 표현식 "
"``key in o``\\와 동등합니다. 이 함수는 항상 성공합니다."
#: ../../c-api/mapping.rst:105
msgid ""
"Exceptions which occur when this calls :meth:`~object.__getitem__` method"
" are silently ignored. For proper error handling, use "
":c:func:`PyMapping_HasKeyWithError`, :c:func:`PyMapping_GetOptionalItem` "
"or :c:func:`PyObject_GetItem()` instead."
msgstr ""
"이 함수가 :meth:`~object.__getitem__` 메서드를 호출하는 동안 발생하는 예외는 조용히 억제됩니다. 적절한 에러"
" 처리가 필요하면 대신 :c:func:`PyMapping_HasKeyWithError`, "
":c:func:`PyMapping_GetOptionalItem` 또는 :c:func:`PyObject_GetItem()`\\을 "
"사용하십시오."
#: ../../c-api/mapping.rst:113
msgid ""
"This is the same as :c:func:`PyMapping_HasKey`, but *key* is specified as"
" a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a "
":c:expr:`PyObject*`."
msgstr ""
#: ../../c-api/mapping.rst:119
msgid ""
"Exceptions that occur when this calls :meth:`~object.__getitem__` method "
"or while creating the temporary :class:`str` object are silently ignored."
" For proper error handling, use "
":c:func:`PyMapping_HasKeyStringWithError`, "
":c:func:`PyMapping_GetOptionalItemString` or "
":c:func:`PyMapping_GetItemString` instead."
msgstr ""
"이 함수가 :meth:`~object.__getitem__` 메서드를 호출하거나 임시 :class:`str` 객체를 만드는 동안 "
"발생하는 예외는 조용히 억제됩니다. 적절한 에러 처리가 필요하면 대신 "
":c:func:`PyMapping_HasKeyStringWithError`, "
":c:func:`PyMapping_GetOptionalItemString` 또는 "
":c:func:`PyMapping_GetItemString`\\을 사용하십시오."
#: ../../c-api/mapping.rst:129
msgid ""
"On success, return a list of the keys in object *o*. On failure, return "
"``NULL``."
msgstr "성공하면, 객체 *o*\\의 키 리스트를 반환합니다. 실패하면, ``NULL``\\을 반환합니다."
#: ../../c-api/mapping.rst:132 ../../c-api/mapping.rst:141
#: ../../c-api/mapping.rst:150
msgid "Previously, the function returned a list or a tuple."
msgstr "이전에는 함수가 리스트나 튜플을 반환했습니다."
#: ../../c-api/mapping.rst:138
msgid ""
"On success, return a list of the values in object *o*. On failure, "
"return ``NULL``."
msgstr "성공하면, 객체 *o*\\의 값 리스트를 반환합니다. 실패하면, ``NULL``\\을 반환합니다."
#: ../../c-api/mapping.rst:147
msgid ""
"On success, return a list of the items in object *o*, where each item is "
"a tuple containing a key-value pair. On failure, return ``NULL``."
msgstr ""
"성공하면, 객체 *o*\\에 있는 항목 리스트를 반환합니다. 여기서 각 항목은 키-값 쌍을 포함하는 튜플입니다. 실패하면, "
"``NULL``\\을 반환합니다."
#: ../../c-api/mapping.rst:23
msgid "built-in function"
msgstr "내장 함수"
#: ../../c-api/mapping.rst:23
msgid "len"
msgstr "len"
#~ msgid ""
#~ "Return element of *o* corresponding to"
#~ " the string *key* or ``NULL`` on "
#~ "failure. This is the equivalent of "
#~ "the Python expression ``o[key]``. See "
#~ "also :c:func:`PyObject_GetItem`."
#~ msgstr ""
#~ "문자열 *key*\\에 해당하는 *o*\\의 요소나 실패 시"
#~ " ``NULL``\\을 반환합니다. 이는 파이썬 표현식 "
#~ "``o[key]``\\와 동등합니다. :c:func:`PyObject_GetItem`\\도 "
#~ "참조하십시오."
#~ msgid ""
#~ "Map the string *key* to the value"
#~ " *v* in object *o*. Returns ``-1``"
#~ " on failure. This is the equivalent"
#~ " of the Python statement ``o[key] ="
#~ " v``. See also :c:func:`PyObject_SetItem`. "
#~ "This function *does not* steal a "
#~ "reference to *v*."
#~ msgstr ""
#~ "객체 *o*\\에서 문자열 *key*\\를 값 *v*\\에 "
#~ "매핑합니다. 실패하면 ``-1``\\을 반환합니다. 이것은 파이썬 "
#~ "문장 ``o[key] = v``\\와 동등합니다. "
#~ ":c:func:`PyObject_SetItem`\\도 참조하십시오. 이 함수는 "
#~ "*v*\\에 대한 참조를 훔치지 *않습니다*."
#~ msgid ""
#~ "Remove the mapping for the object "
#~ "*key* from the object *o*. Return "
#~ "``-1`` on failure. This is equivalent"
#~ " to the Python statement ``del "
#~ "o[key]``. This is an alias of "
#~ ":c:func:`PyObject_DelItem`."
#~ msgstr ""
#~ "객체 *o*\\에서 객체 *key*\\에 대한 매핑을 "
#~ "제거합니다. 실패하면 ``-1``\\을 반환합니다. 이것은 파이썬 "
#~ "문장 ``del o[key]``\\와 동등합니다. 이것은 "
#~ ":c:func:`PyObject_DelItem`\\의 별칭입니다."
#~ msgid ""
#~ "Remove the mapping for the string "
#~ "*key* from the object *o*. Return "
#~ "``-1`` on failure. This is equivalent"
#~ " to the Python statement ``del "
#~ "o[key]``."
#~ msgstr ""
#~ "객체 *o*\\에서 문자열 *key*\\에 대한 매핑을 "
#~ "제거합니다. 실패하면 ``-1``\\을 반환합니다. 이것은 파이썬 "
#~ "문장 ``del o[key]``\\와 동등합니다."