Skip to content

Commit f4b281d

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 3888b4e commit f4b281d

4 files changed

Lines changed: 5647 additions & 5642 deletions

File tree

howto/descriptor.po

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.8\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2020-02-09 12:40+0000\n"
15+
"POT-Creation-Date: 2020-07-29 14:42+0000\n"
1616
"PO-Revision-Date: 2020-05-30 11:54+0000\n"
1717
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\n"
1818
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -394,17 +394,17 @@ msgid ""
394394
"practice::"
395395
msgstr "インタプリタを起動すると、この関数デスクリプタが実際にどうはたらくかを見られます::"
396396

397-
#: ../../howto/descriptor.rst:326
397+
#: ../../howto/descriptor.rst:324
398398
msgid "Static Methods and Class Methods"
399399
msgstr "静的メソッドとクラスメソッド"
400400

401-
#: ../../howto/descriptor.rst:328
401+
#: ../../howto/descriptor.rst:326
402402
msgid ""
403403
"Non-data descriptors provide a simple mechanism for variations on the usual "
404404
"patterns of binding functions into methods."
405405
msgstr "非データデスクリプタは、関数をメソッドに束縛する、各種の一般的なパターンに、単純な機構を提供します。"
406406

407-
#: ../../howto/descriptor.rst:331
407+
#: ../../howto/descriptor.rst:329
408408
msgid ""
409409
"To recap, functions have a :meth:`__get__` method so that they can be "
410410
"converted to a method when accessed as attributes. The non-data descriptor "
@@ -415,52 +415,52 @@ msgstr ""
415415
" ``obj.f(*args)`` の呼び出しを ``f(obj, *args)`` に変換します。 ``klass.f(*args)`` を呼び出すと"
416416
" ``f(*args)`` になります。"
417417

418-
#: ../../howto/descriptor.rst:336
418+
#: ../../howto/descriptor.rst:334
419419
msgid "This chart summarizes the binding and its two most useful variants:"
420420
msgstr "このチャートは、束縛と、その 2 つの異なる便利な形をまとめています:"
421421

422-
#: ../../howto/descriptor.rst:339
422+
#: ../../howto/descriptor.rst:337
423423
msgid "Transformation"
424424
msgstr "変換"
425425

426-
#: ../../howto/descriptor.rst:339
426+
#: ../../howto/descriptor.rst:337
427427
msgid "Called from an Object"
428428
msgstr "オブジェクトから呼び出される"
429429

430-
#: ../../howto/descriptor.rst:339
430+
#: ../../howto/descriptor.rst:337
431431
msgid "Called from a Class"
432432
msgstr "クラスから呼び出される"
433433

434-
#: ../../howto/descriptor.rst:342
434+
#: ../../howto/descriptor.rst:340
435435
msgid "function"
436436
msgstr "function"
437437

438-
#: ../../howto/descriptor.rst:342
438+
#: ../../howto/descriptor.rst:340
439439
msgid "f(obj, \\*args)"
440440
msgstr "f(obj, \\*args)"
441441

442-
#: ../../howto/descriptor.rst:342 ../../howto/descriptor.rst:344
443-
#: ../../howto/descriptor.rst:344
442+
#: ../../howto/descriptor.rst:340 ../../howto/descriptor.rst:342
443+
#: ../../howto/descriptor.rst:342
444444
msgid "f(\\*args)"
445445
msgstr "f(\\*args)"
446446

447-
#: ../../howto/descriptor.rst:344
447+
#: ../../howto/descriptor.rst:342
448448
msgid "staticmethod"
449449
msgstr "静的メソッド"
450450

451-
#: ../../howto/descriptor.rst:346
451+
#: ../../howto/descriptor.rst:344
452452
msgid "classmethod"
453453
msgstr "クラスメソッド"
454454

455-
#: ../../howto/descriptor.rst:346
455+
#: ../../howto/descriptor.rst:344
456456
msgid "f(type(obj), \\*args)"
457457
msgstr "f(type(obj), \\*args)"
458458

459-
#: ../../howto/descriptor.rst:346
459+
#: ../../howto/descriptor.rst:344
460460
msgid "f(klass, \\*args)"
461461
msgstr "f(klass, \\*args)"
462462

463-
#: ../../howto/descriptor.rst:349
463+
#: ../../howto/descriptor.rst:347
464464
msgid ""
465465
"Static methods return the underlying function without changes. Calling "
466466
"either ``c.f`` or ``C.f`` is the equivalent of a direct lookup into "
@@ -472,13 +472,13 @@ msgstr ""
472472
"\"f\")`` や ``object.__getattribute__(C, \"f\")`` "
473473
"を直接探索するのと同じです。結果として、関数はオブジェクトとクラスから同じようにアクセスできます。"
474474

475-
#: ../../howto/descriptor.rst:355
475+
#: ../../howto/descriptor.rst:353
476476
msgid ""
477477
"Good candidates for static methods are methods that do not reference the "
478478
"``self`` variable."
479479
msgstr "静的メソッドにすると良いのは、 ``self`` 変数への参照を持たないメソッドです。"
480480

481-
#: ../../howto/descriptor.rst:358
481+
#: ../../howto/descriptor.rst:356
482482
msgid ""
483483
"For instance, a statistics package may include a container class for "
484484
"experimental data. The class provides normal methods for computing the "
@@ -494,27 +494,27 @@ msgstr ""
494494
"は統計上の便利な変換ルーチンですが、特定のデータセットに直接には依存しません。これは、オブジェクトからでもクラスからでも呼び出せます: "
495495
"``s.erf(1.5) --> .9332`` または ``Sample.erf(1.5) --> .9332`` 。"
496496

497-
#: ../../howto/descriptor.rst:367
497+
#: ../../howto/descriptor.rst:365
498498
msgid ""
499499
"Since staticmethods return the underlying function with no changes, the "
500500
"example calls are unexciting::"
501501
msgstr "静的メソッドは下にある関数をそのまま返すので、呼び出しの例は面白くありません::"
502502

503-
#: ../../howto/descriptor.rst:380
503+
#: ../../howto/descriptor.rst:378
504504
msgid ""
505505
"Using the non-data descriptor protocol, a pure Python version of "
506506
":func:`staticmethod` would look like this::"
507507
msgstr "非データデスクリプタプロトコルを使うと、pure Python 版の :func:`staticmethod` は以下のようになります::"
508508

509-
#: ../../howto/descriptor.rst:392
509+
#: ../../howto/descriptor.rst:390
510510
msgid ""
511511
"Unlike static methods, class methods prepend the class reference to the "
512512
"argument list before calling the function. This format is the same for "
513513
"whether the caller is an object or a class::"
514514
msgstr ""
515515
"静的メソッドとは違って、クラスメソッドは関数を呼び出す前にクラス参照を引数リストの先頭に加えます。このフォーマットは、呼び出し元がオブジェクトでもクラスでも同じです::"
516516

517-
#: ../../howto/descriptor.rst:407
517+
#: ../../howto/descriptor.rst:405
518518
msgid ""
519519
"This behavior is useful whenever the function only needs to have a class "
520520
"reference and does not care about any underlying data. One use for "
@@ -526,11 +526,11 @@ msgstr ""
526526
" 2.3 では、クラスメソッド :func:`dict.fromkeys` は新しい辞書をキーのリストから生成します。等価な pure Python "
527527
"版は::"
528528

529-
#: ../../howto/descriptor.rst:423
529+
#: ../../howto/descriptor.rst:421
530530
msgid "Now a new dictionary of unique keys can be constructed like this::"
531531
msgstr "これで一意なキーを持つ新しい辞書が以下のように構成できます::"
532532

533-
#: ../../howto/descriptor.rst:428
533+
#: ../../howto/descriptor.rst:426
534534
msgid ""
535535
"Using the non-data descriptor protocol, a pure Python version of "
536536
":func:`classmethod` would look like this::"

library/dis.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.8\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2020-04-13 03:04+0000\n"
14+
"POT-Creation-Date: 2020-07-29 14:42+0000\n"
1515
"PO-Revision-Date: 2020-05-30 12:00+0000\n"
1616
"Last-Translator: tomo, 2020\n"
1717
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -679,8 +679,9 @@ msgstr "``set.add(TOS1[-i], TOS)`` を呼び出します。集合内包表記の
679679

680680
#: ../../library/dis.rst:643
681681
msgid ""
682-
"Calls ``list.append(TOS[-i], TOS)``. Used to implement list comprehensions."
683-
msgstr "``list.append(TOS1[-i], TOS)`` を呼び出します。リスト内包表記の実装に使われます。"
682+
"Calls ``list.append(TOS1[-i], TOS)``. Used to implement list "
683+
"comprehensions."
684+
msgstr ""
684685

685686
#: ../../library/dis.rst:648
686687
msgid ""

library/unittest.po

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.8\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2020-04-17 13:36+0000\n"
14+
"POT-Creation-Date: 2020-07-29 14:42+0000\n"
1515
"PO-Revision-Date: 2020-05-30 12:13+0000\n"
1616
"Last-Translator: tomo, 2020\n"
1717
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -174,11 +174,9 @@ msgid ""
174174
"intended largely for ease of use for those new to unit testing. For "
175175
"production environments it is recommended that tests be driven by a "
176176
"continuous integration system such as `Buildbot <https://buildbot.net/>`_, "
177-
"`Jenkins <https://jenkins.io/>`_ or `Hudson <http://hudson-ci.org/>`_."
177+
"`Jenkins <https://jenkins.io/>`_ or `Travis-CI <https://travis-ci.com>`_, or"
178+
" `AppVeyor <https://www.appveyor.com/>`_."
178179
msgstr ""
179-
"Python のソースコード配布物にあるスクリプト :file:`Tools/unittestgui/unittestgui.py` はテストディスカバリとテスト実行のための GUI ツールです。\n"
180-
"主な目的は単体テストの初心者が簡単に使えるようにすることです。\n"
181-
"実際の生産環境では、 `Buildbot <https://buildbot.net/>`_ 、 `Jenkins <https://jenkins.io/>`_ 、 `Hudson <http://hudson-ci.org/>`_ のような継続的インテグレーションシステムでテストを実行することを推奨します。"
182180

183181
#: ../../library/unittest.rst:82
184182
msgid "Basic example"

0 commit comments

Comments
 (0)