Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7774d56

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent5bd092c commit7774d56

File tree

5 files changed

+4267
-4196
lines changed

5 files changed

+4267
-4196
lines changed

‎c-api/datetime.po

Lines changed: 33 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.7\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2019-01-01 10:14+0900\n"
15+
"POT-Creation-Date:2019-05-08 11:22+0900\n"
1616
"PO-Revision-Date:2017-02-16 17:34+0000\n"
1717
"Last-Translator:Osamu NAKAMURA, 2019\n"
1818
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -157,34 +157,46 @@ msgstr "指定した年、月、日、時、分、秒、マイクロ秒の :clas
157157

158158
#:../../c-api/datetime.rst:103
159159
msgid""
160+
"Return a :class:`datetime.datetime` object with the specified year, month, "
161+
"day, hour, minute, second, microsecond and fold."
162+
msgstr""
163+
164+
#:../../c-api/datetime.rst:111
165+
msgid""
166+
"Return a :class:`datetime.time` object with the specified hour, minute, "
167+
"second, microsecond and fold."
168+
msgstr""
169+
170+
#:../../c-api/datetime.rst:119
171+
msgid""
160172
"Return a :class:`datetime.time` object with the specified hour, minute, "
161173
"second and microsecond."
162174
msgstr"指定された時、分、秒、マイクロ秒の :class:`datetime.time` オブジェクトを返します。"
163175

164-
#:../../c-api/datetime.rst:109
176+
#:../../c-api/datetime.rst:125
165177
msgid""
166178
"Return a :class:`datetime.timedelta` object representing the given number of"
167179
" days, seconds and microseconds. Normalization is performed so that the "
168180
"resulting number of microseconds and seconds lie in the ranges documented "
169181
"for :class:`datetime.timedelta` objects."
170182
msgstr""
171183

172-
#:../../c-api/datetime.rst:116
184+
#:../../c-api/datetime.rst:132
173185
msgid""
174186
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
175187
"represented by the *offset* argument."
176188
msgstr""
177189
"*offset* 引数で指定した固定オフセットを持つ、名前のない :class:`datetime.timezone` オブジェクトを返します。"
178190

179-
#:../../c-api/datetime.rst:123
191+
#:../../c-api/datetime.rst:139
180192
msgid""
181193
"Return a :class:`datetime.timezone` object with a fixed offset represented "
182194
"by the *offset* argument and with tzname *name*."
183195
msgstr""
184196
"*offset*引数で指定した固定のオフセットと、*name* のタイムゾーン名を持つ :class:`datetime.timezone` "
185197
"オブジェクトを返します。"
186198

187-
#:../../c-api/datetime.rst:129
199+
#:../../c-api/datetime.rst:145
188200
msgid""
189201
"Macros to extract fields from date objects. The argument must be an "
190202
"instance of :c:data:`PyDateTime_Date`, including subclasses (such as "
@@ -195,19 +207,19 @@ msgstr ""
195207
"またはそのサブクラス (例えば :c:data:`PyDateTime_DateTime`)の インスタンスでなければなりません。引数を *NULL*"
196208
" にしてはならず、型チェックは行いません:"
197209

198-
#:../../c-api/datetime.rst:136
210+
#:../../c-api/datetime.rst:152
199211
msgid"Return the year, as a positive int."
200212
msgstr"年を正の整数で返します。"
201213

202-
#:../../c-api/datetime.rst:141
214+
#:../../c-api/datetime.rst:157
203215
msgid"Return the month, as an int from 1 through 12."
204216
msgstr"月を 1 から 12 の間の整数で返します。"
205217

206-
#:../../c-api/datetime.rst:146
218+
#:../../c-api/datetime.rst:162
207219
msgid"Return the day, as an int from 1 through 31."
208220
msgstr"日を 1 から 31 の間の整数で返します。"
209221

210-
#:../../c-api/datetime.rst:149
222+
#:../../c-api/datetime.rst:165
211223
msgid""
212224
"Macros to extract fields from datetime objects. The argument must be an "
213225
"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
@@ -217,23 +229,23 @@ msgstr ""
217229
":c:data:`PyDateTime_DateTime` またはそのサブクラスのインスタンスでなければなりません。引数を *NULL* "
218230
"にしてはならず、型チェックは行いません:"
219231

220-
#:../../c-api/datetime.rst:155../../c-api/datetime.rst:179
232+
#:../../c-api/datetime.rst:171../../c-api/datetime.rst:195
221233
msgid"Return the hour, as an int from 0 through 23."
222234
msgstr"時を 0 から 23 の間の整数で返します。"
223235

224-
#:../../c-api/datetime.rst:160../../c-api/datetime.rst:184
236+
#:../../c-api/datetime.rst:176../../c-api/datetime.rst:200
225237
msgid"Return the minute, as an int from 0 through 59."
226238
msgstr"分を 0 から 59 の間の整数で返します。"
227239

228-
#:../../c-api/datetime.rst:165../../c-api/datetime.rst:189
240+
#:../../c-api/datetime.rst:181../../c-api/datetime.rst:205
229241
msgid"Return the second, as an int from 0 through 59."
230242
msgstr"秒を 0 から 59 の間の整数で返します。"
231243

232-
#:../../c-api/datetime.rst:170../../c-api/datetime.rst:194
244+
#:../../c-api/datetime.rst:186../../c-api/datetime.rst:210
233245
msgid"Return the microsecond, as an int from 0 through 999999."
234246
msgstr"マイクロ秒を 0 から 999999 の間の整数で返します。"
235247

236-
#:../../c-api/datetime.rst:173
248+
#:../../c-api/datetime.rst:189
237249
msgid""
238250
"Macros to extract fields from time objects. The argument must be an "
239251
"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
@@ -242,7 +254,7 @@ msgstr ""
242254
"以下のマクロは time オブジェクトからフィールド値を取り出すためのものです。引数は :c:data:`PyDateTime_Time` "
243255
"またはそのサブクラスのインスタンスでなければなりません。引数を *NULL* にしてはならず、型チェックは行いません:"
244256

245-
#:../../c-api/datetime.rst:197
257+
#:../../c-api/datetime.rst:213
246258
msgid""
247259
"Macros to extract fields from time delta objects. The argument must be an "
248260
"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
@@ -251,31 +263,31 @@ msgstr ""
251263
"以下のマクロは time delta オブジェクトからフィールド値をとりだすためのものです。引数は :c:data:`PyDateTime_Delta`"
252264
" かそのサブクラスのインスタンスでなければなりません。引数を *NULL* にしてはならず、型チェックは行いません:"
253265

254-
#:../../c-api/datetime.rst:203
266+
#:../../c-api/datetime.rst:219
255267
msgid"Return the number of days, as an int from -999999999 to 999999999."
256268
msgstr"日数を -999999999 から 999999999 の間の整数で返します。"
257269

258-
#:../../c-api/datetime.rst:210
270+
#:../../c-api/datetime.rst:226
259271
msgid"Return the number of seconds, as an int from 0 through 86399."
260272
msgstr"秒数を 0 から 86399 の間の整数で返します。"
261273

262-
#:../../c-api/datetime.rst:217
274+
#:../../c-api/datetime.rst:233
263275
msgid"Return the number of microseconds, as an int from 0 through 999999."
264276
msgstr"マイクロ秒を 0 から 999999 の間の整数で返します。"
265277

266-
#:../../c-api/datetime.rst:222
278+
#:../../c-api/datetime.rst:238
267279
msgid"Macros for the convenience of modules implementing the DB API:"
268280
msgstr"以下のマクロは DB API を実装する上での便宜用です:"
269281

270-
#:../../c-api/datetime.rst:226
282+
#:../../c-api/datetime.rst:242
271283
msgid""
272284
"Create and return a new :class:`datetime.datetime` object given an argument "
273285
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
274286
msgstr""
275287
":meth:`dateitme.datetime.fromtimestamp()` に渡すのに適した引数タプルから新たな "
276288
":class:`datetime.datetime` オブジェクトを生成して返します。"
277289

278-
#:../../c-api/datetime.rst:232
290+
#:../../c-api/datetime.rst:248
279291
msgid""
280292
"Create and return a new :class:`datetime.date` object given an argument "
281293
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp