Skip to content

Commit 703e2a5

Browse files
committed
#1080 - remove fuzzy flags
1 parent 2ec0fc8 commit 703e2a5

File tree

1 file changed

+16
-29
lines changed

1 file changed

+16
-29
lines changed

c-api/datetime.po

+16-29
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ msgid "DateTime Objects"
2121
msgstr "DateTime 객체"
2222

2323
#: ../../c-api/datetime.rst:8
24-
#, fuzzy
2524
msgid ""
2625
"Various date and time objects are supplied by the :mod:`datetime` module."
2726
" Before using any of these functions, the header file :file:`datetime.h` "
@@ -33,8 +32,8 @@ msgid ""
3332
msgstr ""
3433
"다양한 날짜와 시간 객체가 :mod:`datetime` 모듈에서 제공됩니다. 이 함수를 사용하기 전에, 헤더 파일 "
3534
":file:`datetime.h`\\가 소스에 포함되어야 하고 (:file:`Python.h`\\가 포함하지 않음에 유의하십시오),"
36-
" 일반적으로 모듈 초기화 함수의 일부로 :c:macro:`PyDateTime_IMPORT` 매크로를 호출해야 합니다. 매크로는 C "
37-
"구조체에 대한 포인터를 다음 매크로에서 사용되는 static 변수 :c:data:`PyDateTimeAPI`\\에 넣습니다."
35+
" 일반적으로 모듈 초기화 함수의 일부로 :c:macro:`!PyDateTime_IMPORT` 매크로를 호출해야 합니다. 매크로는 C"
36+
" 구조체에 대한 포인터를 다음 매크로에서 사용되는 static 변수 :c:data:`!PyDateTimeAPI`\\에 넣습니다."
3837

3938
#: ../../c-api/datetime.rst:18
4039
msgid "This subtype of :c:type:`PyObject` represents a Python date object."
@@ -102,14 +101,13 @@ msgid "Type-check macros:"
102101
msgstr "형 검사 매크로:"
103102

104103
#: ../../c-api/datetime.rst:73
105-
#, fuzzy
106104
msgid ""
107105
"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype"
108106
" of :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This "
109107
"function always succeeds."
110108
msgstr ""
111109
"*ob*\\가 :c:data:`PyDateTime_DateType` 형이거나 "
112-
":c:data:`PyDateTime_DateType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
110+
":c:data:`!PyDateTime_DateType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
113111
"아니어야 합니다. 이 함수는 항상 성공합니다."
114112

115113
#: ../../c-api/datetime.rst:80
@@ -121,15 +119,14 @@ msgstr ""
121119
"아니어야 합니다. 이 함수는 항상 성공합니다."
122120

123121
#: ../../c-api/datetime.rst:86
124-
#, fuzzy
125122
msgid ""
126123
"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a "
127124
"subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be "
128125
"``NULL``. This function always succeeds."
129126
msgstr ""
130127
"*ob*\\가 :c:data:`PyDateTime_DateTimeType` 형이거나 "
131-
":c:data:`PyDateTime_DateTimeType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\``NULL``\\"
132-
" 아니어야 합니다. 이 함수는 항상 성공합니다."
128+
":c:data:`!PyDateTime_DateTimeType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 "
129+
"``NULL``\\ 아니어야 합니다. 이 함수는 항상 성공합니다."
133130

134131
#: ../../c-api/datetime.rst:93
135132
msgid ""
@@ -140,14 +137,13 @@ msgstr ""
140137
"``NULL``\\이 아니어야 합니다. 이 함수는 항상 성공합니다."
141138

142139
#: ../../c-api/datetime.rst:99
143-
#, fuzzy
144140
msgid ""
145141
"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype"
146142
" of :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This "
147143
"function always succeeds."
148144
msgstr ""
149145
"*ob*\\가 :c:data:`PyDateTime_TimeType` 형이거나 "
150-
":c:data:`PyDateTime_TimeType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
146+
":c:data:`!PyDateTime_TimeType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
151147
"아니어야 합니다. 이 함수는 항상 성공합니다."
152148

153149
#: ../../c-api/datetime.rst:106
@@ -159,14 +155,13 @@ msgstr ""
159155
"아니어야 합니다. 이 함수는 항상 성공합니다."
160156

161157
#: ../../c-api/datetime.rst:112
162-
#, fuzzy
163158
msgid ""
164159
"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a "
165160
"subtype of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. "
166161
"This function always succeeds."
167162
msgstr ""
168163
"*ob*\\가 :c:data:`PyDateTime_DeltaType` 형이거나 "
169-
":c:data:`PyDateTime_DeltaType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
164+
":c:data:`!PyDateTime_DeltaType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
170165
"아니어야 합니다. 이 함수는 항상 성공합니다."
171166

172167
#: ../../c-api/datetime.rst:119
@@ -178,14 +173,13 @@ msgstr ""
178173
"아니어야 합니다. 이 함수는 항상 성공합니다."
179174

180175
#: ../../c-api/datetime.rst:125
181-
#, fuzzy
182176
msgid ""
183177
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a "
184178
"subtype of :c:data:`!PyDateTime_TZInfoType`. *ob* must not be ``NULL``."
185179
" This function always succeeds."
186180
msgstr ""
187181
"*ob*\\가 :c:data:`PyDateTime_TZInfoType` 형이거나 "
188-
":c:data:`PyDateTime_TZInfoType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
182+
":c:data:`!PyDateTime_TZInfoType`\\의 서브 형이면 참을 돌려줍니다. *ob*\\는 ``NULL``\\이 "
189183
"아니어야 합니다. 이 함수는 항상 성공합니다."
190184

191185
#: ../../c-api/datetime.rst:132
@@ -255,15 +249,14 @@ msgstr ""
255249
"객체를 돌려줍니다."
256250

257251
#: ../../c-api/datetime.rst:195
258-
#, fuzzy
259252
msgid ""
260253
"Macros to extract fields from date objects. The argument must be an "
261254
"instance of :c:type:`PyDateTime_Date`, including subclasses (such as "
262255
":c:type:`PyDateTime_DateTime`). The argument must not be ``NULL``, and "
263256
"the type is not checked:"
264257
msgstr ""
265-
"날짜 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스(가령 :c:data:`PyDateTime_DateTime`)를 포함하여 "
266-
":c:data:`PyDateTime_Date`\\의 인스턴스여야 합니다. 인자는 ``NULL``\\이 아니어야 하며, 형은 검사하지"
258+
"날짜 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스(가령 :c:type:`PyDateTime_DateTime`)를 포함하여 "
259+
":c:type:`PyDateTime_Date`\\의 인스턴스여야 합니다. 인자는 ``NULL``\\이 아니어야 하며, 형은 검사하지"
267260
" 않습니다:"
268261

269262
#: ../../c-api/datetime.rst:202
@@ -279,14 +272,13 @@ msgid "Return the day, as an int from 1 through 31."
279272
msgstr "1에서 31까지의 int로, 일을 반환합니다."
280273

281274
#: ../../c-api/datetime.rst:215
282-
#, fuzzy
283275
msgid ""
284276
"Macros to extract fields from datetime objects. The argument must be an "
285277
"instance of :c:type:`PyDateTime_DateTime`, including subclasses. The "
286278
"argument must not be ``NULL``, and the type is not checked:"
287279
msgstr ""
288280
"날짜 시간 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 "
289-
":c:data:`PyDateTime_DateTime`\\의 인스턴스여야 합니다. 인자는 ``NULL``\\이 아니어야 하며, 형은 "
281+
":c:type:`PyDateTime_DateTime`\\의 인스턴스여야 합니다. 인자는 ``NULL``\\이 아니어야 하며, 형은 "
290282
"검사하지 않습니다.:"
291283

292284
#: ../../c-api/datetime.rst:221 ../../c-api/datetime.rst:259
@@ -306,32 +298,29 @@ msgid "Return the microsecond, as an int from 0 through 999999."
306298
msgstr "0부터 999999까지의 int로, 마이크로초를 반환합니다."
307299

308300
#: ../../c-api/datetime.rst:241 ../../c-api/datetime.rst:279
309-
#, fuzzy
310301
msgid "Return the fold, as an int from 0 through 1."
311-
msgstr "1에서 31까지의 int로, 일을 반환합니다."
302+
msgstr "0에서 1까지의 int로, 폴드를 반환합니다."
312303

313304
#: ../../c-api/datetime.rst:248 ../../c-api/datetime.rst:286
314305
msgid "Return the tzinfo (which may be ``None``)."
315306
msgstr ""
316307

317308
#: ../../c-api/datetime.rst:253
318-
#, fuzzy
319309
msgid ""
320310
"Macros to extract fields from time objects. The argument must be an "
321311
"instance of :c:type:`PyDateTime_Time`, including subclasses. The argument"
322312
" must not be ``NULL``, and the type is not checked:"
323313
msgstr ""
324-
"시간 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:data:`PyDateTime_Time`\\의 "
314+
"시간 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:type:`PyDateTime_Time`\\의 "
325315
"인스턴스여야 합니다. 인자는 ``NULL``\\이 아니어야 하며 형은 검사하지 않습니다:"
326316

327317
#: ../../c-api/datetime.rst:291
328-
#, fuzzy
329318
msgid ""
330319
"Macros to extract fields from time delta objects. The argument must be "
331320
"an instance of :c:type:`PyDateTime_Delta`, including subclasses. The "
332321
"argument must not be ``NULL``, and the type is not checked:"
333322
msgstr ""
334-
"시간 델타 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:data:`PyDateTime_Delta`\\의 "
323+
"시간 델타 객체에서 필드를 추출하는 매크로. 인자는 서브 클래스를 포함하여 :c:type:`PyDateTime_Delta`\\의 "
335324
"인스턴스여야 합니다. 인자는 ``NULL``\\이 아니어야 하며 형은 검사하지 않습니다.:"
336325

337326
#: ../../c-api/datetime.rst:297
@@ -351,21 +340,19 @@ msgid "Macros for the convenience of modules implementing the DB API:"
351340
msgstr "DB API를 구현하는 모듈의 편의를 위한 매크로:"
352341

353342
#: ../../c-api/datetime.rst:320
354-
#, fuzzy
355343
msgid ""
356344
"Create and return a new :class:`datetime.datetime` object given an "
357345
"argument tuple suitable for passing to "
358346
":meth:`datetime.datetime.fromtimestamp`."
359347
msgstr ""
360-
":meth:`datetime.datetime.fromtimestamp()`\\에 전달하는 데 적합한 인자 튜플로 새 "
348+
":meth:`datetime.datetime.fromtimestamp`\\에 전달하는 데 적합한 인자 튜플로 새 "
361349
":class:`datetime.datetime` 객체를 만들고 반환합니다."
362350

363351
#: ../../c-api/datetime.rst:326
364-
#, fuzzy
365352
msgid ""
366353
"Create and return a new :class:`datetime.date` object given an argument "
367354
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp`."
368355
msgstr ""
369-
":meth:`datetime.date.fromtimestamp()`\\에 전달하는 데 적합한 인자 튜플로 새 "
356+
":meth:`datetime.date.fromtimestamp`\\에 전달하는 데 적합한 인자 튜플로 새 "
370357
":class:`datetime.date` 객체를 만들고 반환합니다."
371358

0 commit comments

Comments
 (0)