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

Commit1cca7a6

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

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

‎library/collections.po

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version:Python 3.8\n"
2020
"Report-Msgid-Bugs-To:\n"
21-
"POT-Creation-Date:2020-03-04 12:51+0000\n"
21+
"POT-Creation-Date:2020-05-21 14:01+0000\n"
2222
"PO-Revision-Date:2017-02-16 23:03+0000\n"
2323
"Last-Translator:tomo, 2019\n"
2424
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1327,11 +1327,11 @@ msgid ""
13271327
msgstr""
13281328
":class:`OrderedDict` は :func:`functools.lru_cache` の変種を実装するのにも役に立ちます::"
13291329

1330-
#:../../library/collections.rst:1160
1330+
#:../../library/collections.rst:1162
13311331
msgid":class:`UserDict` objects"
13321332
msgstr":class:`UserDict` オブジェクト"
13331333

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

1345-
#:../../library/collections.rst:1170
1345+
#:../../library/collections.rst:1172
13461346
msgid""
13471347
"Class that simulates a dictionary. The instance's contents are kept in a "
13481348
"regular dictionary, which is accessible via the :attr:`data` attribute of "
@@ -1354,22 +1354,22 @@ msgstr ""
13541354
":attr:`data` 属性を通してアクセスできます。 *initialdata* が与えられれば、 :attr:`data` "
13551355
"はその内容で初期化されます。他の目的のために使えるように、 *initialdata* への参照が保存されないことがあるということに注意してください。"
13561356

1357-
#:../../library/collections.rst:1176
1357+
#:../../library/collections.rst:1178
13581358
msgid""
13591359
"In addition to supporting the methods and operations of mappings, "
13601360
":class:`UserDict` instances provide the following attribute:"
13611361
msgstr"マッピングのメソッドと演算をサポートするのに加え、 :class:`UserDict` インスタンスは以下の属性を提供します:"
13621362

1363-
#:../../library/collections.rst:1181
1363+
#:../../library/collections.rst:1183
13641364
msgid""
13651365
"A real dictionary used to store the contents of the :class:`UserDict` class."
13661366
msgstr":class:`UserDict` クラスの内容を保存するために使われる実際の辞書です。"
13671367

1368-
#:../../library/collections.rst:1187
1368+
#:../../library/collections.rst:1189
13691369
msgid":class:`UserList` objects"
13701370
msgstr":class:`UserList` オブジェクト"
13711371

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

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

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

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

1408-
#:../../library/collections.rst:1211
1408+
#:../../library/collections.rst:1213
14091409
msgid""
14101410
"A real :class:`list` object used to store the contents of the "
14111411
":class:`UserList` class."
14121412
msgstr":class:`UserList` クラスの内容を保存するために使われる実際の :class:`list` オブジェクトです。"
14131413

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

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

1435-
#:../../library/collections.rst:1227
1435+
#:../../library/collections.rst:1229
14361436
msgid":class:`UserString` objects"
14371437
msgstr":class:`UserString` オブジェクト"
14381438

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

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

1463-
#:../../library/collections.rst:1244
1463+
#:../../library/collections.rst:1246
14641464
msgid""
14651465
"In addition to supporting the methods and operations of strings, "
14661466
":class:`UserString` instances provide the following attribute:"
14671467
msgstr"文字列のメソッドと演算をサポートするのに加え、 :class:`UserString` インスタンスは次の属性を提供します:"
14681468

1469-
#:../../library/collections.rst:1249
1469+
#:../../library/collections.rst:1251
14701470
msgid""
14711471
"A real :class:`str` object used to store the contents of the "
14721472
":class:`UserString` class."
14731473
msgstr":class:`UserString` クラスの内容を保存するために使われる実際の :class:`str` オブジェクトです。"
14741474

1475-
#:../../library/collections.rst:1252
1475+
#:../../library/collections.rst:1254
14761476
msgid""
14771477
"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
14781478
"``isprintable``, and ``maketrans``."

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp