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

Commitbeb6860

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

File tree

7 files changed

+7550
-7527
lines changed

7 files changed

+7550
-7527
lines changed

‎c-api/number.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,8 @@ msgid ""
338338
"The result always has exact type :class:`int`. Previously, the result could"
339339
" have been an instance of a subclass of ``int``."
340340
msgstr""
341+
"結果は常に厳密な :class:`int` 型です。\n"
342+
"以前は、結果は ``int`` のサブクラスのインスタンスのこともありました。"
341343

342344
#:../../c-api/number.rst:266
343345
msgid""

‎library/atexit.po

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.10\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2021-06-29 12:56+0000\n"
14+
"POT-Creation-Date:2021-06-30 12:50+0000\n"
1515
"PO-Revision-Date:2021-06-28 00:55+0000\n"
1616
"Last-Translator:tomo, 2021\n"
1717
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -92,31 +92,29 @@ msgstr "この関数は *func* を返し、これをデコレータとして利
9292

9393
#:../../library/atexit.rst:51
9494
msgid""
95-
"Remove *func* from the list of functions to be run at interpreter shutdown."
96-
" After calling :func:`unregister`, *func* is guaranteed not to be called "
97-
"when the interpreter shuts down, even if it was registered more than once. "
95+
"Remove *func* from the list of functions to be run at interpreter shutdown. "
9896
":func:`unregister` silently does nothing if *func* was not previously "
99-
"registered."
97+
"registered. If *func* has been registered more than once, every occurrence "
98+
"of that function in the :mod:`atexit` call stack will be removed. Equality "
99+
"comparisons (``==``) are used internally during unregistration, so function "
100+
"references do not need to have matching identities."
100101
msgstr""
101-
"*func* をインタプリタ終了時に実行される関数のリストから削除します。:func:`unregister` で削除されると、*func* "
102-
"は、たとえ複数個登録されていてもインタプリタ終了時に呼び出されないことが保証されます。*func* "
103-
"が登録されていない場合、:func:`unregister` は何もせず、何も通知しません。"
104102

105-
#:../../library/atexit.rst:61
103+
#:../../library/atexit.rst:62
106104
msgid"Module :mod:`readline`"
107105
msgstr":mod:`readline` モジュール"
108106

109-
#:../../library/atexit.rst:61
107+
#:../../library/atexit.rst:62
110108
msgid""
111109
"Useful example of :mod:`atexit` to read and write :mod:`readline` history "
112110
"files."
113111
msgstr":mod:`readline` ヒストリファイルを読み書きするための :mod:`atexit` の有用な例です。"
114112

115-
#:../../library/atexit.rst:68
113+
#:../../library/atexit.rst:69
116114
msgid":mod:`atexit` Example"
117115
msgstr":mod:`atexit` の例"
118116

119-
#:../../library/atexit.rst:70
117+
#:../../library/atexit.rst:71
120118
msgid""
121119
"The following simple example demonstrates how a module can initialize a "
122120
"counter from a file when it is imported and save the counter's updated value"
@@ -127,16 +125,16 @@ msgstr ""
127125
"した時にカウンタを初期化しておき、プログラムが終了するときにアプリケーションがこのモジュールを明示的に呼び出さなくてもカウンタが更新されるようにする方法を示しています。"
128126
" ::"
129127

130-
#:../../library/atexit.rst:93
128+
#:../../library/atexit.rst:94
131129
msgid""
132130
"Positional and keyword arguments may also be passed to :func:`register` to "
133131
"be passed along to the registered function when it is called::"
134132
msgstr":func:`register` に指定した位置引数とキーワード引数は登録した関数を呼び出す際に渡されます::"
135133

136-
#:../../library/atexit.rst:105
134+
#:../../library/atexit.rst:106
137135
msgid"Usage as a :term:`decorator`::"
138136
msgstr":term:`デコレータ <decorator>` として利用する例::"
139137

140-
#:../../library/atexit.rst:113
138+
#:../../library/atexit.rst:114
141139
msgid"This only works with functions that can be called without arguments."
142140
msgstr"デコレータとして利用できるのは、その関数が引数なしで呼び出された場合に限られます。"

‎library/bz2.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,8 @@ msgid ""
257257
"writers, just like its equivalent classes in :mod:`gzip` and :mod:`lzma` "
258258
"have always been."
259259
msgstr""
260+
"このクラスは、複数の同時読み出しや書き込みにおいては、既存の :mod:`gzip` や :mod:`lzma` "
261+
"などの同等のクラスのように、スレッド安全ではありません。"
260262

261263
#:../../library/bz2.rst:148
262264
msgid"Incremental (de)compression"

‎library/copy.po

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# tomo, 2021
87
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2021
98
# mollinaca, 2021
9+
# tomo, 2021
1010
#
1111
#,fuzzy
1212
msgid ""
@@ -15,7 +15,7 @@ msgstr ""
1515
"Report-Msgid-Bugs-To:\n"
1616
"POT-Creation-Date:2021-06-29 12:56+0000\n"
1717
"PO-Revision-Date:2021-06-28 01:03+0000\n"
18-
"Last-Translator:mollinaca, 2021\n"
18+
"Last-Translator:tomo, 2021\n"
1919
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2020
"MIME-Version:1.0\n"
2121
"Content-Type:text/plain; charset=UTF-8\n"
@@ -161,6 +161,11 @@ msgid ""
161161
"dictionary as second argument. The memo dictionary should be treated as an "
162162
"opaque object."
163163
msgstr""
164+
"クラス独自のコピー実装を定義するために、特殊メソッド :meth:`__copy__` および :meth:`__deepcopy__` "
165+
"を定義することができます。前者は浅いコピー操作を実装するために使われます; 追加の引数はありません。後者は深いコピー操作を実現するために呼び出されます;"
166+
" この関数には単一の引数として ``memo`` 辞書が渡されます。 :meth:`__deepcopy__` "
167+
"の実装で、内容のオブジェクトに対して深いコピーを生成する必要がある場合、 :func:`deepcopy` "
168+
"を呼び出し、最初の引数にそのオブジェクトを、メモ辞書を二つ目の引数に与えなければなりません。メモ辞書は中が見えないオブジェクトとして扱うべきです。"
164169

165170
#:../../library/copy.rst:95
166171
msgid"Module :mod:`pickle`"

‎library/netrc.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ msgstr ""
7575
#:../../library/netrc.rst:41
7676
msgid""
7777
":class:`netrc` try UTF-8 encoding before using locale specific encoding."
78-
msgstr""
78+
msgstr":class:`netrc` はロケール指定のエンコードを使う前に UTF-8 エンコードを試します。"
7979

8080
#:../../library/netrc.rst:48
8181
msgid""

‎library/operator.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ msgid ""
135135
"The result always has exact type :class:`int`. Previously, the result could"
136136
" have been an instance of a subclass of ``int``."
137137
msgstr""
138+
"結果は常に厳密な :class:`int` 型です。\n"
139+
"以前は、結果は ``int`` のサブクラスのインスタンスのこともありました。"
138140

139141
#:../../library/operator.rst:125
140142
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp