33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
55#
6- #, fuzzy
76msgid ""
87msgstr ""
98"Project-Id-Version : Python 3.6\n "
109"Report-Msgid-Bugs-To : \n "
1110"POT-Creation-Date : 2018-05-30 09:56+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/datetime.rst:6
2120msgid "DateTime Objects"
22- msgstr ""
21+ msgstr "DateTime 객체 "
2322
2423#: ../Doc/c-api/datetime.rst:8
2524msgid ""
@@ -31,102 +30,129 @@ msgid ""
3130"macro puts a pointer to a C structure into a static variable, "
3231":c:data:`PyDateTimeAPI`, that is used by the following macros."
3332msgstr ""
33+ "다양한 날짜와 시간 객체가 :mod:`datetime` 모듈에서 제공됩니다. 이 함수를 사용하기 전에, 헤더 파일 "
34+ ":file:`datetime.h`\\ 가 소스에 포함되어야 하고 (:file:`Python.h`\\ 가 포함하지 않음에 유의하십시오), "
35+ "일반적으로 모듈 초기화 함수의 일부로 :c:macro:`PyDateTime_IMPORT` 매크로를 호출해야 합니다. 매크로는 C 구조체에"
36+ " 대한 포인터를 다음 매크로에서 사용되는 static 변수 :c:data:`PyDateTimeAPI`\\ 에 넣습니다."
3437
3538#: ../Doc/c-api/datetime.rst:16
3639msgid "Macro for access to the UTC singleton:"
37- msgstr ""
40+ msgstr "UTC 싱글톤에 액세스하기 위한 매크로: "
3841
3942#: ../Doc/c-api/datetime.rst:20
4043msgid ""
4144"Returns the time zone singleton representing UTC, the same object as "
4245":attr:`datetime.timezone.utc`."
43- msgstr ""
46+ msgstr "UTC를 나타내는 시간대 싱글톤을 반환합니다, :attr:`datetime.timezone.utc` \\ 와 같은 객체입니다. "
4447
4548#: ../Doc/c-api/datetime.rst:26
4649msgid "Type-check macros:"
47- msgstr ""
50+ msgstr "형 검사 매크로: "
4851
4952#: ../Doc/c-api/datetime.rst:30
5053msgid ""
5154"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype"
5255" of :c:data:`PyDateTime_DateType`. *ob* must not be *NULL*."
5356msgstr ""
57+ "*ob*\\ 가 :c:data:`PyDateTime_DateType` 형이거나 :c:data:`PyDateTime_DateType`\\ 의 "
58+ "서브 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 합니다."
5459
5560#: ../Doc/c-api/datetime.rst:36
5661msgid ""
5762"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must "
5863"not be *NULL*."
5964msgstr ""
65+ "*ob*\\ 가 :c:data:`PyDateTime_DateType` 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 "
66+ "합니다."
6067
6168#: ../Doc/c-api/datetime.rst:42
6269msgid ""
6370"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a "
6471"subtype of :c:data:`PyDateTime_DateTimeType`. *ob* must not be *NULL*."
6572msgstr ""
73+ "*ob*\\ 가 :c:data:`PyDateTime_DateTimeType` 형이거나 "
74+ ":c:data:`PyDateTime_DateTimeType`\\ 의 서브 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야"
75+ " 합니다."
6676
6777#: ../Doc/c-api/datetime.rst:48
6878msgid ""
6979"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* "
7080"must not be *NULL*."
7181msgstr ""
82+ "*ob*\\ 가 :c:data:`PyDateTime_DateTimeType` 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 "
83+ "아니어야 합니다."
7284
7385#: ../Doc/c-api/datetime.rst:54
7486msgid ""
7587"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype"
7688" of :c:data:`PyDateTime_TimeType`. *ob* must not be *NULL*."
7789msgstr ""
90+ "*ob*\\ 가 :c:data:`PyDateTime_TimeType` 형이거나 :c:data:`PyDateTime_TimeType`\\ 의 "
91+ "서브 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 합니다."
7892
7993#: ../Doc/c-api/datetime.rst:60
8094msgid ""
8195"Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must "
8296"not be *NULL*."
8397msgstr ""
98+ "*ob*\\ 가 :c:data:`PyDateTime_TimeType` 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 "
99+ "합니다."
84100
85101#: ../Doc/c-api/datetime.rst:66
86102msgid ""
87103"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a "
88104"subtype of :c:data:`PyDateTime_DeltaType`. *ob* must not be *NULL*."
89105msgstr ""
106+ "*ob*\\ 가 :c:data:`PyDateTime_DeltaType` 형이거나 "
107+ ":c:data:`PyDateTime_DeltaType`\\ 의 서브 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 "
108+ "합니다."
90109
91110#: ../Doc/c-api/datetime.rst:72
92111msgid ""
93112"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must "
94113"not be *NULL*."
95114msgstr ""
115+ "*ob*\\ 가 :c:data:`PyDateTime_DeltaType` 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 "
116+ "합니다."
96117
97118#: ../Doc/c-api/datetime.rst:78
98119msgid ""
99120"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a "
100121"subtype of :c:data:`PyDateTime_TZInfoType`. *ob* must not be *NULL*."
101122msgstr ""
123+ "*ob*\\ 가 :c:data:`PyDateTime_TZInfoType` 형이거나 "
124+ ":c:data:`PyDateTime_TZInfoType`\\ 의 서브 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야 "
125+ "합니다."
102126
103127#: ../Doc/c-api/datetime.rst:84
104128msgid ""
105129"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must"
106130" not be *NULL*."
107131msgstr ""
132+ "*ob*\\ 가 :c:data:`PyDateTime_TZInfoType` 형이면 참을 돌려줍니다. *ob*\\ 는 *NULL*\\ 이 아니어야"
133+ " 합니다."
108134
109135#: ../Doc/c-api/datetime.rst:88
110136msgid "Macros to create objects:"
111- msgstr ""
137+ msgstr "객체를 만드는 매크로: "
112138
113139#: ../Doc/c-api/datetime.rst:92
114140msgid ""
115141"Return a :class:`datetime.date` object with the specified year, month and"
116142" day."
117- msgstr ""
143+ msgstr "지정된 년, 월, 일의 :class:`datetime.date` 객체를 반환합니다. "
118144
119145#: ../Doc/c-api/datetime.rst:97
120146msgid ""
121147"Return a :class:`datetime.datetime` object with the specified year, "
122148"month, day, hour, minute, second and microsecond."
123- msgstr ""
149+ msgstr "지정된 년, 월, 일, 시, 분, 초 및 마이크로초의 :class:`datetime.datetime` 객체를 반환합니다. "
124150
125151#: ../Doc/c-api/datetime.rst:103
126152msgid ""
127153"Return a :class:`datetime.time` object with the specified hour, minute, "
128154"second and microsecond."
129- msgstr ""
155+ msgstr "지정된 시, 분, 초 및 마이크로초의 :class:`datetime.time` 객체를 반환합니다. "
130156
131157#: ../Doc/c-api/datetime.rst:109
132158msgid ""
@@ -135,18 +161,23 @@ msgid ""
135161"the resulting number of microseconds and seconds lie in the ranges "
136162"documented for :class:`datetime.timedelta` objects."
137163msgstr ""
164+ "지정된 일, 초 및 마이크로초 수를 나타내는 :class:`datetime.timedelta` 객체를 반환합니다. 결과 마이크로초와 초가"
165+ " :class:`datetime.timedelta` 객체에 관해 설명된 범위에 있도록 정규화가 수행됩니다."
138166
139167#: ../Doc/c-api/datetime.rst:116
140168msgid ""
141169"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
142170"represented by the *offset* argument."
143171msgstr ""
172+ "*offset* 인자로 나타내지는 이름이 없는 고정 오프셋의 :class:`datetime.timezone` 객체를 돌려줍니다."
144173
145174#: ../Doc/c-api/datetime.rst:123
146175msgid ""
147176"Return a :class:`datetime.timezone` object with a fixed offset "
148177"represented by the *offset* argument and with tzname *name*."
149178msgstr ""
179+ "*offset* 인자와 tzname *name*\\ 으로 나타내지는 고정 오프셋의 :class:`datetime.timezone` 객체를 "
180+ "돌려줍니다."
150181
151182#: ../Doc/c-api/datetime.rst:129
152183msgid ""
@@ -155,123 +186,94 @@ msgid ""
155186":c:data:`PyDateTime_DateTime`). The argument must not be *NULL*, and the"
156187" type is not checked:"
157188msgstr ""
189+ "날짜 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스(가령 :c:data:`PyDateTime_DateTime`)를 포함하여 "
190+ ":c:data:`PyDateTime_Date`\\ 의 인스턴스여야 합니다. 인자는 *NULL*\\ 이 아니어야 하며, 형은 검사하지 "
191+ "않습니다:"
158192
159193#: ../Doc/c-api/datetime.rst:136
160194msgid "Return the year, as a positive int."
161- msgstr ""
195+ msgstr "양의 int로, 년을 반환합니다. "
162196
163197#: ../Doc/c-api/datetime.rst:141
164198msgid "Return the month, as an int from 1 through 12."
165- msgstr ""
199+ msgstr "1에서 12까지의 int로, 월을 반환합니다. "
166200
167201#: ../Doc/c-api/datetime.rst:146
168202msgid "Return the day, as an int from 1 through 31."
169- msgstr ""
203+ msgstr "1에서 31까지의 int로, 일을 반환합니다. "
170204
171205#: ../Doc/c-api/datetime.rst:149
172206msgid ""
173207"Macros to extract fields from datetime objects. The argument must be an "
174208"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
175209"argument must not be *NULL*, and the type is not checked:"
176210msgstr ""
211+ "날짜 시간 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:data:`PyDateTime_DateTime`\\ 의 "
212+ "인스턴스여야 합니다. 인자는 *NULL*\\ 이 아니어야 하며, 형은 검사하지 않습니다.:"
177213
178214#: ../Doc/c-api/datetime.rst:155 ../Doc/c-api/datetime.rst:179
179215msgid "Return the hour, as an int from 0 through 23."
180- msgstr ""
216+ msgstr "0부터 23까지의 int로, 시를 반환합니다. "
181217
182218#: ../Doc/c-api/datetime.rst:160 ../Doc/c-api/datetime.rst:184
183219msgid "Return the minute, as an int from 0 through 59."
184- msgstr ""
220+ msgstr "0부터 59까지의 int로, 분을 반환합니다. "
185221
186222#: ../Doc/c-api/datetime.rst:165 ../Doc/c-api/datetime.rst:189
187223msgid "Return the second, as an int from 0 through 59."
188- msgstr ""
224+ msgstr "0부터 59까지의 int로, 초를 반환합니다. "
189225
190226#: ../Doc/c-api/datetime.rst:170 ../Doc/c-api/datetime.rst:194
191227msgid "Return the microsecond, as an int from 0 through 999999."
192- msgstr ""
228+ msgstr "0부터 999999까지의 int로, 마이크로초를 반환합니다. "
193229
194230#: ../Doc/c-api/datetime.rst:173
195231msgid ""
196232"Macros to extract fields from time objects. The argument must be an "
197233"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument"
198234" must not be *NULL*, and the type is not checked:"
199235msgstr ""
236+ "시간 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:data:`PyDateTime_Time`\\ 의 인스턴스여야 "
237+ "합니다. 인자는 *NULL*\\ 이 아니어야 하며 형은 검사하지 않습니다:"
200238
201239#: ../Doc/c-api/datetime.rst:197
202240msgid ""
203241"Macros to extract fields from time delta objects. The argument must be "
204242"an instance of :c:data:`PyDateTime_Delta`, including subclasses. The "
205243"argument must not be *NULL*, and the type is not checked:"
206244msgstr ""
245+ "시간 델타 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:data:`PyDateTime_Delta`\\ 의 "
246+ "인스턴스여야 합니다. 인자는 *NULL*\\ 이 아니어야 하며 형은 검사하지 않습니다.:"
207247
208248#: ../Doc/c-api/datetime.rst:203
209249msgid "Return the number of days, as an int from -999999999 to 999999999."
210- msgstr ""
250+ msgstr "-999999999에서 999999999까지의 int로, 일 수를 반환합니다. "
211251
212252#: ../Doc/c-api/datetime.rst:210
213253msgid "Return the number of seconds, as an int from 0 through 86399."
214- msgstr ""
254+ msgstr "0부터 86399까지의 int로, 초 수를 반환합니다. "
215255
216256#: ../Doc/c-api/datetime.rst:217
217257msgid "Return the number of microseconds, as an int from 0 through 999999."
218- msgstr ""
258+ msgstr "0에서 999999까지의 int로, 마이크로초 수를 반환합니다. "
219259
220260#: ../Doc/c-api/datetime.rst:222
221261msgid "Macros for the convenience of modules implementing the DB API:"
222- msgstr ""
262+ msgstr "DB API를 구현하는 모듈의 편의를 위한 매크로: "
223263
224264#: ../Doc/c-api/datetime.rst:226
225265msgid ""
226266"Create and return a new :class:`datetime.datetime` object given an "
227267"argument tuple suitable for passing to "
228268":meth:`datetime.datetime.fromtimestamp()`."
229269msgstr ""
270+ ":meth:`datetime.datetime.fromtimestamp()`\\ 에 전달하는 데 적합한 인자 튜플로 새 "
271+ ":class:`datetime.datetime` 객체를 만들고 반환합니다."
230272
231273#: ../Doc/c-api/datetime.rst:232
232274msgid ""
233275"Create and return a new :class:`datetime.date` object given an argument "
234276"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
235277msgstr ""
236-
237- #~ msgid ""
238- #~ "Return a ``datetime.date`` object with "
239- #~ "the specified year, month and day."
240- #~ msgstr ""
241-
242- #~ msgid ""
243- #~ "Return a ``datetime.datetime`` object with "
244- #~ "the specified year, month, day, hour,"
245- #~ " minute, second and microsecond."
246- #~ msgstr ""
247-
248- #~ msgid ""
249- #~ "Return a ``datetime.time`` object with "
250- #~ "the specified hour, minute, second and"
251- #~ " microsecond."
252- #~ msgstr ""
253-
254- #~ msgid ""
255- #~ "Return a ``datetime.timedelta`` object "
256- #~ "representing the given number of days,"
257- #~ " seconds and microseconds. Normalization "
258- #~ "is performed so that the resulting "
259- #~ "number of microseconds and seconds lie"
260- #~ " in the ranges documented for "
261- #~ "``datetime.timedelta`` objects."
262- #~ msgstr ""
263-
264- #~ msgid ""
265- #~ "Create and return a new "
266- #~ "``datetime.datetime`` object given an argument"
267- #~ " tuple suitable for passing to "
268- #~ "``datetime.datetime.fromtimestamp()``."
269- #~ msgstr ""
270-
271- #~ msgid ""
272- #~ "Create and return a new "
273- #~ "``datetime.date`` object given an argument "
274- #~ "tuple suitable for passing to "
275- #~ "``datetime.date.fromtimestamp()``."
276- #~ msgstr ""
277-
278+ ":meth:`datetime.date.fromtimestamp()`\\ 에 전달하는 데 적합한 인자 튜플로 새 "
279+ ":class:`datetime.date` 객체를 만들고 반환합니다."
0 commit comments