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

Commit0b2eaeb

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

File tree

7 files changed

+7751
-7711
lines changed

7 files changed

+7751
-7711
lines changed

‎c-api/structures.po

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.10\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2021-06-29 12:56+0000\n"
15+
"POT-Creation-Date:2021-08-03 13:12+0000\n"
1616
"PO-Revision-Date:2021-06-28 00:50+0000\n"
1717
"Last-Translator:Osamu NAKAMURA, 2021\n"
1818
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -239,17 +239,17 @@ msgid ""
239239
msgstr"拡張型のメソッドを記述する際に用いる構造体です。この構造体には 4 つのフィールドがあります:"
240240

241241
#:../../c-api/structures.rst:239../../c-api/structures.rst:397
242-
#:../../c-api/structures.rst:478
242+
#:../../c-api/structures.rst:493
243243
msgid"Field"
244244
msgstr"フィールド"
245245

246246
#:../../c-api/structures.rst:239../../c-api/structures.rst:397
247-
#:../../c-api/structures.rst:478
247+
#:../../c-api/structures.rst:493
248248
msgid"C Type"
249249
msgstr"C の型"
250250

251251
#:../../c-api/structures.rst:239../../c-api/structures.rst:397
252-
#:../../c-api/structures.rst:478
252+
#:../../c-api/structures.rst:493
253253
msgid"Meaning"
254254
msgstr"意味"
255255

@@ -259,8 +259,8 @@ msgstr ":attr:`ml_name`"
259259

260260
#:../../c-api/structures.rst:241../../c-api/structures.rst:249
261261
#:../../c-api/structures.rst:399../../c-api/structures.rst:412
262-
#:../../c-api/structures.rst:428../../c-api/structures.rst:480
263-
#:../../c-api/structures.rst:488
262+
#:../../c-api/structures.rst:428../../c-api/structures.rst:495
263+
#:../../c-api/structures.rst:503
264264
msgid"const char\\*"
265265
msgstr""
266266

@@ -678,86 +678,99 @@ msgid ""
678678
"be defined with ``T_PYSSIZET`` and ``READONLY``, for example::"
679679
msgstr""
680680

681-
#:../../c-api/structures.rst:474
681+
#:../../c-api/structures.rst:475
682+
msgid""
683+
"Get an attribute belonging to the object at address *obj_addr*. The "
684+
"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error."
685+
msgstr""
686+
687+
#:../../c-api/structures.rst:482
688+
msgid""
689+
"Set an attribute belonging to the object at address *obj_addr* to object "
690+
"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns "
691+
"``0`` if successful and a negative value on failure."
692+
msgstr""
693+
694+
#:../../c-api/structures.rst:489
682695
msgid""
683696
"Structure to define property-like access for a type. See also description of"
684697
" the :c:member:`PyTypeObject.tp_getset` slot."
685698
msgstr""
686699

687-
#:../../c-api/structures.rst:480
700+
#:../../c-api/structures.rst:495
688701
msgid"name"
689702
msgstr"name"
690703

691-
#:../../c-api/structures.rst:480
704+
#:../../c-api/structures.rst:495
692705
msgid"attribute name"
693706
msgstr""
694707

695-
#:../../c-api/structures.rst:482
708+
#:../../c-api/structures.rst:497
696709
msgid"get"
697710
msgstr""
698711

699-
#:../../c-api/structures.rst:482
712+
#:../../c-api/structures.rst:497
700713
msgid"getter"
701714
msgstr""
702715

703-
#:../../c-api/structures.rst:482
716+
#:../../c-api/structures.rst:497
704717
msgid"C Function to get the attribute"
705718
msgstr""
706719

707-
#:../../c-api/structures.rst:484
720+
#:../../c-api/structures.rst:499
708721
msgid"set"
709722
msgstr"集合"
710723

711-
#:../../c-api/structures.rst:484
724+
#:../../c-api/structures.rst:499
712725
msgid"setter"
713726
msgstr""
714727

715-
#:../../c-api/structures.rst:484
728+
#:../../c-api/structures.rst:499
716729
msgid""
717730
"optional C function to set or delete the attribute, if omitted the attribute"
718731
" is readonly"
719732
msgstr""
720733

721-
#:../../c-api/structures.rst:488
734+
#:../../c-api/structures.rst:503
722735
msgid"doc"
723736
msgstr""
724737

725-
#:../../c-api/structures.rst:488
738+
#:../../c-api/structures.rst:503
726739
msgid"optional docstring"
727740
msgstr""
728741

729-
#:../../c-api/structures.rst:490
742+
#:../../c-api/structures.rst:505
730743
msgid"closure"
731744
msgstr""
732745

733-
#:../../c-api/structures.rst:490
746+
#:../../c-api/structures.rst:505
734747
msgid"void\\*"
735748
msgstr""
736749

737-
#:../../c-api/structures.rst:490
750+
#:../../c-api/structures.rst:505
738751
msgid""
739752
"optional function pointer, providing additional data for getter and setter"
740753
msgstr""
741754

742-
#:../../c-api/structures.rst:495
755+
#:../../c-api/structures.rst:510
743756
msgid""
744757
"The ``get`` function takes one :c:type:`PyObject*` parameter (the instance) "
745758
"and a function pointer (the associated ``closure``)::"
746759
msgstr""
747760

748-
#:../../c-api/structures.rst:500
761+
#:../../c-api/structures.rst:515
749762
msgid""
750763
"It should return a new reference on success or ``NULL`` with a set exception"
751764
" on failure."
752765
msgstr""
753766

754-
#:../../c-api/structures.rst:503
767+
#:../../c-api/structures.rst:518
755768
msgid""
756769
"``set`` functions take two :c:type:`PyObject*` parameters (the instance and "
757770
"the value to be set) and a function pointer (the associated ``closure``)::"
758771
msgstr""
759772

760-
#:../../c-api/structures.rst:508
773+
#:../../c-api/structures.rst:523
761774
msgid""
762775
"In case the attribute should be deleted the second parameter is ``NULL``. "
763776
"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
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version:Python 3.10\n"
1515
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2021-07-22 13:04+0000\n"
16+
"POT-Creation-Date:2021-08-03 13:12+0000\n"
1717
"PO-Revision-Date:2021-06-28 00:56+0000\n"
1818
"Last-Translator:tomo, 2021\n"
1919
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1355,15 +1355,14 @@ msgstr ""
13551355
#:../../library/collections.rst:1173
13561356
msgid""
13571357
"An :class:`OrderedDict` would also be useful for implementing variants of "
1358-
":func:`functools.lru_cache`::"
1358+
":func:`functools.lru_cache`:"
13591359
msgstr""
1360-
":class:`OrderedDict` は :func:`functools.lru_cache` の変種を実装するのにも役に立ちます::"
13611360

1362-
#:../../library/collections.rst:1198
1361+
#:../../library/collections.rst:1214
13631362
msgid":class:`UserDict` objects"
13641363
msgstr":class:`UserDict` オブジェクト"
13651364

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

1377-
#:../../library/collections.rst:1208
1376+
#:../../library/collections.rst:1224
13781377
msgid""
13791378
"Class that simulates a dictionary. The instance's contents are kept in a "
13801379
"regular dictionary, which is accessible via the :attr:`data` attribute of "
@@ -1383,22 +1382,22 @@ msgid ""
13831382
"not be kept, allowing it to be used for other purposes."
13841383
msgstr""
13851384

1386-
#:../../library/collections.rst:1214
1385+
#:../../library/collections.rst:1230
13871386
msgid""
13881387
"In addition to supporting the methods and operations of mappings, "
13891388
":class:`UserDict` instances provide the following attribute:"
13901389
msgstr"マッピングのメソッドと演算をサポートするのに加え、 :class:`UserDict` インスタンスは以下の属性を提供します:"
13911390

1392-
#:../../library/collections.rst:1219
1391+
#:../../library/collections.rst:1235
13931392
msgid""
13941393
"A real dictionary used to store the contents of the :class:`UserDict` class."
13951394
msgstr":class:`UserDict` クラスの内容を保存するために使われる実際の辞書です。"
13961395

1397-
#:../../library/collections.rst:1225
1396+
#:../../library/collections.rst:1241
13981397
msgid":class:`UserList` objects"
13991398
msgstr":class:`UserList` オブジェクト"
14001399

1401-
#:../../library/collections.rst:1227
1400+
#:../../library/collections.rst:1243
14021401
msgid""
14031402
"This class acts as a wrapper around list objects. It is a useful base class"
14041403
" for your own list-like classes which can inherit from them and override "
@@ -1407,7 +1406,7 @@ msgid ""
14071406
msgstr""
14081407
"このクラスはリストオブジェクトのラッパとしてはたらきます。これは独自のリスト風クラスの基底クラスとして便利で、既存のメソッドをオーバーライドしたり新しいメソッドを加えたりできます。こうして、リストに新しい振る舞いを加えられます。"
14091408

1410-
#:../../library/collections.rst:1232
1409+
#:../../library/collections.rst:1248
14111410
msgid""
14121411
"The need for this class has been partially supplanted by the ability to "
14131412
"subclass directly from :class:`list`; however, this class can be easier to "
@@ -1416,7 +1415,7 @@ msgstr ""
14161415
"このクラスの必要性は、 :class:`list` から直接的にサブクラス化できる能力に部分的に取って代わられました; "
14171416
"しかし、根底のリストに属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
14181417

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

1431-
#:../../library/collections.rst:1244
1430+
#:../../library/collections.rst:1260
14321431
msgid""
14331432
"In addition to supporting the methods and operations of mutable sequences, "
14341433
":class:`UserList` instances provide the following attribute:"
14351434
msgstr"ミュータブルシーケンスのメソッドと演算をサポートするのに加え、 :class:`UserList` インスタンスは以下の属性を提供します:"
14361435

1437-
#:../../library/collections.rst:1249
1436+
#:../../library/collections.rst:1265
14381437
msgid""
14391438
"A real :class:`list` object used to store the contents of the "
14401439
":class:`UserList` class."
14411440
msgstr":class:`UserList` クラスの内容を保存するために使われる実際の :class:`list` オブジェクトです。"
14421441

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

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

1464-
#:../../library/collections.rst:1265
1463+
#:../../library/collections.rst:1281
14651464
msgid":class:`UserString` objects"
14661465
msgstr":class:`UserString` オブジェクト"
14671466

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

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

1492-
#:../../library/collections.rst:1282
1491+
#:../../library/collections.rst:1298
14931492
msgid""
14941493
"In addition to supporting the methods and operations of strings, "
14951494
":class:`UserString` instances provide the following attribute:"
14961495
msgstr"文字列のメソッドと演算をサポートするのに加え、 :class:`UserString` インスタンスは次の属性を提供します:"
14971496

1498-
#:../../library/collections.rst:1287
1497+
#:../../library/collections.rst:1303
14991498
msgid""
15001499
"A real :class:`str` object used to store the contents of the "
15011500
":class:`UserString` class."
15021501
msgstr":class:`UserString` クラスの内容を保存するために使われる実際の :class:`str` オブジェクトです。"
15031502

1504-
#:../../library/collections.rst:1290
1503+
#:../../library/collections.rst:1306
15051504
msgid""
15061505
"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
15071506
"``isprintable``, and ``maketrans``."

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp