|
9 | 9 | msgstr ""
|
10 | 10 | "Project-Id-Version: Python 3.10\n"
|
11 | 11 | "Report-Msgid-Bugs-To: \n"
|
12 |
| -"POT-Creation-Date: 2021-10-26 16:47+0000\n" |
| 12 | +"POT-Creation-Date: 2022-07-15 00:18+0000\n" |
13 | 13 | "PO-Revision-Date: 2017-09-22 18:26+0000\n"
|
14 | 14 | "Last-Translator: Liang-Bo Wang <me@liang2.tw>\n"
|
15 | 15 | "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
|
@@ -161,102 +161,106 @@ msgid ""
|
161 | 161 | "for :class:`datetime.timedelta` objects."
|
162 | 162 | msgstr ""
|
163 | 163 |
|
164 |
| -#: ../../c-api/datetime.rst:137 |
| 164 | +#: ../../c-api/datetime.rst:138 |
165 | 165 | msgid ""
|
166 | 166 | "Return a :class:`datetime.timezone` object with an unnamed fixed offset "
|
167 | 167 | "represented by the *offset* argument."
|
168 | 168 | msgstr ""
|
169 | 169 |
|
170 |
| -#: ../../c-api/datetime.rst:144 |
| 170 | +#: ../../c-api/datetime.rst:146 |
171 | 171 | msgid ""
|
172 | 172 | "Return a :class:`datetime.timezone` object with a fixed offset represented "
|
173 | 173 | "by the *offset* argument and with tzname *name*."
|
174 | 174 | msgstr ""
|
175 | 175 |
|
176 |
| -#: ../../c-api/datetime.rst:150 |
| 176 | +#: ../../c-api/datetime.rst:152 |
177 | 177 | msgid ""
|
178 | 178 | "Macros to extract fields from date objects. The argument must be an "
|
179 | 179 | "instance of :c:data:`PyDateTime_Date`, including subclasses (such as :c:data:"
|
180 | 180 | "`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is "
|
181 | 181 | "not checked:"
|
182 | 182 | msgstr ""
|
183 | 183 |
|
184 |
| -#: ../../c-api/datetime.rst:157 |
| 184 | +#: ../../c-api/datetime.rst:159 |
185 | 185 | msgid "Return the year, as a positive int."
|
186 | 186 | msgstr "回傳年份,為正整數。"
|
187 | 187 |
|
188 |
| -#: ../../c-api/datetime.rst:162 |
| 188 | +#: ../../c-api/datetime.rst:164 |
189 | 189 | msgid "Return the month, as an int from 1 through 12."
|
190 | 190 | msgstr "回傳月份,為正整數,從 1 到 12。"
|
191 | 191 |
|
192 |
| -#: ../../c-api/datetime.rst:167 |
| 192 | +#: ../../c-api/datetime.rst:169 |
193 | 193 | msgid "Return the day, as an int from 1 through 31."
|
194 | 194 | msgstr "回傳日期,為正整數,從 1 到 31。"
|
195 | 195 |
|
196 |
| -#: ../../c-api/datetime.rst:170 |
| 196 | +#: ../../c-api/datetime.rst:172 |
197 | 197 | msgid ""
|
198 | 198 | "Macros to extract fields from datetime objects. The argument must be an "
|
199 | 199 | "instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
|
200 | 200 | "argument must not be ``NULL``, and the type is not checked:"
|
201 | 201 | msgstr ""
|
202 | 202 |
|
203 |
| -#: ../../c-api/datetime.rst:176 ../../c-api/datetime.rst:205 |
| 203 | +#: ../../c-api/datetime.rst:178 ../../c-api/datetime.rst:216 |
204 | 204 | msgid "Return the hour, as an int from 0 through 23."
|
205 | 205 | msgstr "回傳小時,為正整數,從 0 到 23。"
|
206 | 206 |
|
207 |
| -#: ../../c-api/datetime.rst:181 ../../c-api/datetime.rst:210 |
| 207 | +#: ../../c-api/datetime.rst:183 ../../c-api/datetime.rst:221 |
208 | 208 | msgid "Return the minute, as an int from 0 through 59."
|
209 | 209 | msgstr "回傳分鐘,為正整數,從 0 到 59。"
|
210 | 210 |
|
211 |
| -#: ../../c-api/datetime.rst:186 ../../c-api/datetime.rst:215 |
| 211 | +#: ../../c-api/datetime.rst:188 ../../c-api/datetime.rst:226 |
212 | 212 | msgid "Return the second, as an int from 0 through 59."
|
213 | 213 | msgstr "回傳秒,為正整數,從0 到59。"
|
214 | 214 |
|
215 |
| -#: ../../c-api/datetime.rst:191 ../../c-api/datetime.rst:220 |
| 215 | +#: ../../c-api/datetime.rst:193 ../../c-api/datetime.rst:231 |
216 | 216 | msgid "Return the microsecond, as an int from 0 through 999999."
|
217 | 217 | msgstr "回傳微秒,為正整數,從 0 到 999999。"
|
218 | 218 |
|
219 |
| -#: ../../c-api/datetime.rst:195 ../../c-api/datetime.rst:224 |
| 219 | +#: ../../c-api/datetime.rst:198 ../../c-api/datetime.rst:236 |
| 220 | +msgid "Return the fold, as an int from 0 through 1." |
| 221 | +msgstr "回傳 fold,為 0 或 1 的正整數。" |
| 222 | + |
| 223 | +#: ../../c-api/datetime.rst:205 ../../c-api/datetime.rst:243 |
220 | 224 | msgid "Return the tzinfo (which may be ``None``)."
|
221 | 225 | msgstr ""
|
222 | 226 |
|
223 |
| -#: ../../c-api/datetime.rst:199 |
| 227 | +#: ../../c-api/datetime.rst:210 |
224 | 228 | msgid ""
|
225 | 229 | "Macros to extract fields from time objects. The argument must be an "
|
226 | 230 | "instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
|
227 | 231 | "must not be ``NULL``, and the type is not checked:"
|
228 | 232 | msgstr ""
|
229 | 233 |
|
230 |
| -#: ../../c-api/datetime.rst:229 |
| 234 | +#: ../../c-api/datetime.rst:248 |
231 | 235 | msgid ""
|
232 | 236 | "Macros to extract fields from time delta objects. The argument must be an "
|
233 | 237 | "instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
|
234 | 238 | "must not be ``NULL``, and the type is not checked:"
|
235 | 239 | msgstr ""
|
236 | 240 |
|
237 |
| -#: ../../c-api/datetime.rst:235 |
| 241 | +#: ../../c-api/datetime.rst:254 |
238 | 242 | msgid "Return the number of days, as an int from -999999999 to 999999999."
|
239 | 243 | msgstr ""
|
240 | 244 |
|
241 |
| -#: ../../c-api/datetime.rst:242 |
| 245 | +#: ../../c-api/datetime.rst:261 |
242 | 246 | msgid "Return the number of seconds, as an int from 0 through 86399."
|
243 | 247 | msgstr ""
|
244 | 248 |
|
245 |
| -#: ../../c-api/datetime.rst:249 |
| 249 | +#: ../../c-api/datetime.rst:268 |
246 | 250 | msgid "Return the number of microseconds, as an int from 0 through 999999."
|
247 | 251 | msgstr ""
|
248 | 252 |
|
249 |
| -#: ../../c-api/datetime.rst:254 |
| 253 | +#: ../../c-api/datetime.rst:273 |
250 | 254 | msgid "Macros for the convenience of modules implementing the DB API:"
|
251 | 255 | msgstr ""
|
252 | 256 |
|
253 |
| -#: ../../c-api/datetime.rst:258 |
| 257 | +#: ../../c-api/datetime.rst:277 |
254 | 258 | msgid ""
|
255 | 259 | "Create and return a new :class:`datetime.datetime` object given an argument "
|
256 | 260 | "tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
|
257 | 261 | msgstr ""
|
258 | 262 |
|
259 |
| -#: ../../c-api/datetime.rst:264 |
| 263 | +#: ../../c-api/datetime.rst:283 |
260 | 264 | msgid ""
|
261 | 265 | "Create and return a new :class:`datetime.date` object given an argument "
|
262 | 266 | "tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
|
|
0 commit comments