Skip to content

Commit 5e9ea0e

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 97b4f91 commit 5e9ea0e

File tree

6 files changed

+6947
-6920
lines changed

6 files changed

+6947
-6920
lines changed

c-api/structures.po

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.9\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
19+
"POT-Creation-Date: 2021-08-03 07:07+0000\n"
2020
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
2121
"Last-Translator: Osamu NAKAMURA, 2021\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -214,17 +214,17 @@ msgid ""
214214
msgstr "拡張型のメソッドを記述する際に用いる構造体です。この構造体には 4 つのフィールドがあります:"
215215

216216
#: ../../c-api/structures.rst:208 ../../c-api/structures.rst:364
217-
#: ../../c-api/structures.rst:445
217+
#: ../../c-api/structures.rst:460
218218
msgid "Field"
219219
msgstr "フィールド"
220220

221221
#: ../../c-api/structures.rst:208 ../../c-api/structures.rst:364
222-
#: ../../c-api/structures.rst:445
222+
#: ../../c-api/structures.rst:460
223223
msgid "C Type"
224224
msgstr "C の型"
225225

226226
#: ../../c-api/structures.rst:208 ../../c-api/structures.rst:364
227-
#: ../../c-api/structures.rst:445
227+
#: ../../c-api/structures.rst:460
228228
msgid "Meaning"
229229
msgstr "意味"
230230

@@ -234,8 +234,8 @@ msgstr ":attr:`ml_name`"
234234

235235
#: ../../c-api/structures.rst:210 ../../c-api/structures.rst:218
236236
#: ../../c-api/structures.rst:366 ../../c-api/structures.rst:379
237-
#: ../../c-api/structures.rst:395 ../../c-api/structures.rst:447
238-
#: ../../c-api/structures.rst:455
237+
#: ../../c-api/structures.rst:395 ../../c-api/structures.rst:462
238+
#: ../../c-api/structures.rst:470
239239
msgid "const char \\*"
240240
msgstr ""
241241

@@ -649,86 +649,99 @@ msgid ""
649649
"be defined with ``T_PYSSIZET`` and ``READONLY``, for example::"
650650
msgstr ""
651651

652-
#: ../../c-api/structures.rst:441
652+
#: ../../c-api/structures.rst:442
653+
msgid ""
654+
"Get an attribute belonging to the object at address *obj_addr*. The "
655+
"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error."
656+
msgstr ""
657+
658+
#: ../../c-api/structures.rst:449
659+
msgid ""
660+
"Set an attribute belonging to the object at address *obj_addr* to object "
661+
"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns "
662+
"``0`` if successful and a negative value on failure."
663+
msgstr ""
664+
665+
#: ../../c-api/structures.rst:456
653666
msgid ""
654667
"Structure to define property-like access for a type. See also description of"
655668
" the :c:member:`PyTypeObject.tp_getset` slot."
656669
msgstr ""
657670

658-
#: ../../c-api/structures.rst:447
671+
#: ../../c-api/structures.rst:462
659672
msgid "name"
660673
msgstr "名前"
661674

662-
#: ../../c-api/structures.rst:447
675+
#: ../../c-api/structures.rst:462
663676
msgid "attribute name"
664677
msgstr ""
665678

666-
#: ../../c-api/structures.rst:449
679+
#: ../../c-api/structures.rst:464
667680
msgid "get"
668681
msgstr ""
669682

670-
#: ../../c-api/structures.rst:449
683+
#: ../../c-api/structures.rst:464
671684
msgid "getter"
672685
msgstr ""
673686

674-
#: ../../c-api/structures.rst:449
687+
#: ../../c-api/structures.rst:464
675688
msgid "C Function to get the attribute"
676689
msgstr ""
677690

678-
#: ../../c-api/structures.rst:451
691+
#: ../../c-api/structures.rst:466
679692
msgid "set"
680693
msgstr "集合"
681694

682-
#: ../../c-api/structures.rst:451
695+
#: ../../c-api/structures.rst:466
683696
msgid "setter"
684697
msgstr ""
685698

686-
#: ../../c-api/structures.rst:451
699+
#: ../../c-api/structures.rst:466
687700
msgid ""
688701
"optional C function to set or delete the attribute, if omitted the attribute"
689702
" is readonly"
690703
msgstr ""
691704

692-
#: ../../c-api/structures.rst:455
705+
#: ../../c-api/structures.rst:470
693706
msgid "doc"
694707
msgstr ""
695708

696-
#: ../../c-api/structures.rst:455
709+
#: ../../c-api/structures.rst:470
697710
msgid "optional docstring"
698711
msgstr ""
699712

700-
#: ../../c-api/structures.rst:457
713+
#: ../../c-api/structures.rst:472
701714
msgid "closure"
702715
msgstr ""
703716

704-
#: ../../c-api/structures.rst:457
717+
#: ../../c-api/structures.rst:472
705718
msgid "void \\*"
706719
msgstr ""
707720

708-
#: ../../c-api/structures.rst:457
721+
#: ../../c-api/structures.rst:472
709722
msgid ""
710723
"optional function pointer, providing additional data for getter and setter"
711724
msgstr ""
712725

713-
#: ../../c-api/structures.rst:462
726+
#: ../../c-api/structures.rst:477
714727
msgid ""
715728
"The ``get`` function takes one :c:type:`PyObject*` parameter (the instance) "
716729
"and a function pointer (the associated ``closure``)::"
717730
msgstr ""
718731

719-
#: ../../c-api/structures.rst:467
732+
#: ../../c-api/structures.rst:482
720733
msgid ""
721734
"It should return a new reference on success or ``NULL`` with a set exception"
722735
" on failure."
723736
msgstr ""
724737

725-
#: ../../c-api/structures.rst:470
738+
#: ../../c-api/structures.rst:485
726739
msgid ""
727740
"``set`` functions take two :c:type:`PyObject*` parameters (the instance and "
728741
"the value to be set) and a function pointer (the associated ``closure``)::"
729742
msgstr ""
730743

731-
#: ../../c-api/structures.rst:475
744+
#: ../../c-api/structures.rst:490
732745
msgid ""
733746
"In case the attribute should be deleted the second parameter is ``NULL``. "
734747
"Should return ``0`` on success or ``-1`` with a set exception on failure."

library/collections.po

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.9\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2021-07-23 06:59+0000\n"
23+
"POT-Creation-Date: 2021-08-03 07:07+0000\n"
2424
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
2525
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1347,15 +1347,14 @@ msgstr ""
13471347
#: ../../library/collections.rst:1151
13481348
msgid ""
13491349
"An :class:`OrderedDict` would also be useful for implementing variants of "
1350-
":func:`functools.lru_cache`::"
1350+
":func:`functools.lru_cache`:"
13511351
msgstr ""
1352-
":class:`OrderedDict` は :func:`functools.lru_cache` の変種を実装するのにも役に立ちます::"
13531352

1354-
#: ../../library/collections.rst:1176
1353+
#: ../../library/collections.rst:1192
13551354
msgid ":class:`UserDict` objects"
13561355
msgstr ":class:`UserDict` オブジェクト"
13571356

1358-
#: ../../library/collections.rst:1178
1357+
#: ../../library/collections.rst:1194
13591358
msgid ""
13601359
"The class, :class:`UserDict` acts as a wrapper around dictionary objects. "
13611360
"The need for this class has been partially supplanted by the ability to "
@@ -1366,7 +1365,7 @@ msgstr ""
13661365
"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
13671366
"しかし、根底の辞書に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
13681367

1369-
#: ../../library/collections.rst:1186
1368+
#: ../../library/collections.rst:1202
13701369
msgid ""
13711370
"Class that simulates a dictionary. The instance's contents are kept in a "
13721371
"regular dictionary, which is accessible via the :attr:`data` attribute of "
@@ -1375,22 +1374,22 @@ msgid ""
13751374
"not be kept, allowing it to be used for other purposes."
13761375
msgstr ""
13771376

1378-
#: ../../library/collections.rst:1192
1377+
#: ../../library/collections.rst:1208
13791378
msgid ""
13801379
"In addition to supporting the methods and operations of mappings, "
13811380
":class:`UserDict` instances provide the following attribute:"
13821381
msgstr "マッピングのメソッドと演算をサポートするのに加え、 :class:`UserDict` インスタンスは以下の属性を提供します:"
13831382

1384-
#: ../../library/collections.rst:1197
1383+
#: ../../library/collections.rst:1213
13851384
msgid ""
13861385
"A real dictionary used to store the contents of the :class:`UserDict` class."
13871386
msgstr ":class:`UserDict` クラスの内容を保存するために使われる実際の辞書です。"
13881387

1389-
#: ../../library/collections.rst:1203
1388+
#: ../../library/collections.rst:1219
13901389
msgid ":class:`UserList` objects"
13911390
msgstr ":class:`UserList` オブジェクト"
13921391

1393-
#: ../../library/collections.rst:1205
1392+
#: ../../library/collections.rst:1221
13941393
msgid ""
13951394
"This class acts as a wrapper around list objects. It is a useful base class"
13961395
" for your own list-like classes which can inherit from them and override "
@@ -1399,7 +1398,7 @@ msgid ""
13991398
msgstr ""
14001399
"このクラスはリストオブジェクトのラッパとしてはたらきます。これは独自のリスト風クラスの基底クラスとして便利で、既存のメソッドをオーバーライドしたり新しいメソッドを加えたりできます。こうして、リストに新しい振る舞いを加えられます。"
14011400

1402-
#: ../../library/collections.rst:1210
1401+
#: ../../library/collections.rst:1226
14031402
msgid ""
14041403
"The need for this class has been partially supplanted by the ability to "
14051404
"subclass directly from :class:`list`; however, this class can be easier to "
@@ -1408,7 +1407,7 @@ msgstr ""
14081407
"このクラスの必要性は、 :class:`list` から直接的にサブクラス化できる能力に部分的に取って代わられました; "
14091408
"しかし、根底のリストに属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
14101409

1411-
#: ../../library/collections.rst:1216
1410+
#: ../../library/collections.rst:1232
14121411
msgid ""
14131412
"Class that simulates a list. The instance's contents are kept in a regular "
14141413
"list, which is accessible via the :attr:`data` attribute of "
@@ -1420,19 +1419,19 @@ msgstr ""
14201419
":attr:`data` 属性を通してアクセスできます。インスタンスの内容は最初に *list* のコピーに設定されますが、デフォルトでは空リスト "
14211420
"``[]`` です。 *list* は何らかのイテラブル、例えば通常の Python リストや :class:`UserList` オブジェクト、です。"
14221421

1423-
#: ../../library/collections.rst:1222
1422+
#: ../../library/collections.rst:1238
14241423
msgid ""
14251424
"In addition to supporting the methods and operations of mutable sequences, "
14261425
":class:`UserList` instances provide the following attribute:"
14271426
msgstr "ミュータブルシーケンスのメソッドと演算をサポートするのに加え、 :class:`UserList` インスタンスは以下の属性を提供します:"
14281427

1429-
#: ../../library/collections.rst:1227
1428+
#: ../../library/collections.rst:1243
14301429
msgid ""
14311430
"A real :class:`list` object used to store the contents of the "
14321431
":class:`UserList` class."
14331432
msgstr ":class:`UserList` クラスの内容を保存するために使われる実際の :class:`list` オブジェクトです。"
14341433

1435-
#: ../../library/collections.rst:1230
1434+
#: ../../library/collections.rst:1246
14361435
msgid ""
14371436
"**Subclassing requirements:** Subclasses of :class:`UserList` are expected "
14381437
"to offer a constructor which can be called with either no arguments or one "
@@ -1444,7 +1443,7 @@ msgstr ""
14441443
"**サブクラス化の要件:** :class:`UserList` "
14451444
"のサブクラスは引数なしか、あるいは一つの引数のどちらかとともに呼び出せるコンストラクタを提供することが期待されています。新しいシーケンスを返すリスト演算は現在の実装クラスのインスタンスを作成しようとします。そのために、データ元として使われるシーケンスオブジェクトである一つのパラメータとともにコンストラクタを呼び出せると想定しています。"
14461445

1447-
#: ../../library/collections.rst:1237
1446+
#: ../../library/collections.rst:1253
14481447
msgid ""
14491448
"If a derived class does not wish to comply with this requirement, all of the"
14501449
" special methods supported by this class will need to be overridden; please "
@@ -1453,11 +1452,11 @@ msgid ""
14531452
msgstr ""
14541453
"派生クラスがこの要求に従いたくないならば、このクラスがサポートしているすべての特殊メソッドはオーバーライドされる必要があります。その場合に提供される必要のあるメソッドについての情報は、ソースを参考にしてください。"
14551454

1456-
#: ../../library/collections.rst:1243
1455+
#: ../../library/collections.rst:1259
14571456
msgid ":class:`UserString` objects"
14581457
msgstr ":class:`UserString` オブジェクト"
14591458

1460-
#: ../../library/collections.rst:1245
1459+
#: ../../library/collections.rst:1261
14611460
msgid ""
14621461
"The class, :class:`UserString` acts as a wrapper around string objects. The "
14631462
"need for this class has been partially supplanted by the ability to subclass"
@@ -1468,7 +1467,7 @@ msgstr ""
14681467
"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
14691468
"しかし、根底の文字列に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
14701469

1471-
#: ../../library/collections.rst:1253
1470+
#: ../../library/collections.rst:1269
14721471
msgid ""
14731472
"Class that simulates a string object. The instance's content is kept in a "
14741473
"regular string object, which is accessible via the :attr:`data` attribute of"
@@ -1481,19 +1480,19 @@ msgstr ""
14811480
"インスタンスの内容には最初に *seq* のコピーが設定されます。\n"
14821481
"*seq* 引数は、組み込みの :func:`str` 関数で文字列に変換できる任意のオブジェクトです。"
14831482

1484-
#: ../../library/collections.rst:1260
1483+
#: ../../library/collections.rst:1276
14851484
msgid ""
14861485
"In addition to supporting the methods and operations of strings, "
14871486
":class:`UserString` instances provide the following attribute:"
14881487
msgstr "文字列のメソッドと演算をサポートするのに加え、 :class:`UserString` インスタンスは次の属性を提供します:"
14891488

1490-
#: ../../library/collections.rst:1265
1489+
#: ../../library/collections.rst:1281
14911490
msgid ""
14921491
"A real :class:`str` object used to store the contents of the "
14931492
":class:`UserString` class."
14941493
msgstr ":class:`UserString` クラスの内容を保存するために使われる実際の :class:`str` オブジェクトです。"
14951494

1496-
#: ../../library/collections.rst:1268
1495+
#: ../../library/collections.rst:1284
14971496
msgid ""
14981497
"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
14991498
"``isprintable``, and ``maketrans``."

library/os.path.po

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.9\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2021-07-13 06:53+0000\n"
23+
"POT-Creation-Date: 2021-08-03 07:07+0000\n"
2424
"PO-Revision-Date: 2017-02-16 23:20+0000\n"
2525
"Last-Translator: Osamu NAKAMURA, 2021\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -141,7 +141,7 @@ msgstr ""
141141
#: ../../library/os.path.rst:365 ../../library/os.path.rst:384
142142
#: ../../library/os.path.rst:402 ../../library/os.path.rst:415
143143
#: ../../library/os.path.rst:431 ../../library/os.path.rst:447
144-
#: ../../library/os.path.rst:468 ../../library/os.path.rst:479
144+
#: ../../library/os.path.rst:472 ../../library/os.path.rst:498
145145
msgid "Accepts a :term:`path-like object`."
146146
msgstr ":term:`path-like object` を受け入れるようになりました。"
147147

@@ -561,35 +561,37 @@ msgstr "Windows では、パス名はドライブ名/UNC 共有ポイントと
561561
#: ../../library/os.path.rst:460
562562
msgid ""
563563
"If the path contains a drive letter, drive will contain everything up to and"
564-
" including the colon. e.g. ``splitdrive(\"c:/dir\")`` returns ``(\"c:\", "
565-
"\"/dir\")``"
564+
" including the colon::"
566565
msgstr ""
567-
"パスがドライブレターを含む場合、ドライブレターにはコロンまでが含まれます。例えば、``splitdrive(\"c:/dir\")`` は "
568-
"``(\"c:\", \"/dir\")`` を返します。"
569566

570-
#: ../../library/os.path.rst:464
567+
#: ../../library/os.path.rst:466
571568
msgid ""
572569
"If the path contains a UNC path, drive will contain the host name and share,"
573-
" up to but not including the fourth separator. e.g. "
574-
"``splitdrive(\"//host/computer/dir\")`` returns ``(\"//host/computer\", "
575-
"\"/dir\")``"
570+
" up to but not including the fourth separator::"
576571
msgstr ""
577-
"パスが UNC "
578-
"パスを含む場合、ドライブレターにはホスト名と共有名までが含まれますが、共有名の後の区切り文字は含まれません。例えば、``splitdrive(\"//host/computer/dir\")``"
579-
" は ``(\"//host/computer\", \"/dir\")`` を返します。"
580572

581-
#: ../../library/os.path.rst:474
573+
#: ../../library/os.path.rst:478
582574
msgid ""
583575
"Split the pathname *path* into a pair ``(root, ext)`` such that ``root + "
584-
"ext == path``, and *ext* is empty or begins with a period and contains at "
585-
"most one period. Leading periods on the basename are ignored; "
586-
"``splitext('.cshrc')`` returns ``('.cshrc', '')``."
576+
"ext == path``, and the extension, *ext*, is empty or begins with a period "
577+
"and contains at most one period."
587578
msgstr ""
588-
"パス名 *path* を ``(root, ext)`` のペアに分割します。 ``root + ext == path`` になります。 *ext* "
589-
"は空文字列か 1 つのピリオドで始まり、多くても 1 つのピリオドを含みます。ベースネームを導出するピリオドは無視されます; "
590-
"``splitext('.cshrc')`` は ``('.cshrc', '')`` を返します。"
591579

592-
#: ../../library/os.path.rst:485
580+
#: ../../library/os.path.rst:482
581+
msgid "If the path contains no extension, *ext* will be ``''``::"
582+
msgstr ""
583+
584+
#: ../../library/os.path.rst:487
585+
msgid ""
586+
"If the path contains an extension, then *ext* will be set to this extension,"
587+
" including the leading period. Note that previous periods will be ignored::"
588+
msgstr ""
589+
590+
#: ../../library/os.path.rst:493
591+
msgid "Leading periods on the basename are ignored::"
592+
msgstr ""
593+
594+
#: ../../library/os.path.rst:504
593595
msgid ""
594596
"``True`` if arbitrary Unicode strings can be used as file names (within "
595597
"limitations imposed by the file system)."

0 commit comments

Comments
 (0)