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

Commit8cf801e

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

File tree

5 files changed

+5284
-5265
lines changed

5 files changed

+5284
-5265
lines changed

‎c-api/mapping.po

Lines changed: 15 additions & 17 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:2019-10-31 11:48+0000\n"
15+
"POT-Creation-Date:2019-11-21 11:59+0000\n"
1616
"PO-Revision-Date:2017-02-16 17:37+0000\n"
1717
"Last-Translator:tomo, 2018\n"
1818
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -39,27 +39,25 @@ msgid ""
3939
"Return ``1`` if the object provides mapping protocol or supports slicing, "
4040
"and ``0`` otherwise. Note that it returns ``1`` for Python classes with a "
4141
":meth:`__getitem__` method since in general case it is impossible to "
42-
"determine whatthetype of keys it supports. This function always succeeds."
42+
"determine what type of keys it supports. This function always succeeds."
4343
msgstr""
44-
"オブジェクトがマップ型プロトコルを提供しているか、スライスをサポートしている場合は ``1`` を、そうでない場合は ``0`` を返します。\n"
45-
":meth:`__getitem__` メソッドを持つ Python クラスについては ``1`` を返すのに注意してください。そうなる理由は、一般的なケースではオブジェクトがどの種類のキーをサポートしているかを判別するのが不可能だからです。"
4644

47-
#:../../c-api/mapping.rst:26
45+
#:../../c-api/mapping.rst:25
4846
msgid""
4947
"Returns the number of keys in object *o* on success, and ``-1`` on failure. "
5048
"This is equivalent to the Python expression ``len(o)``."
5149
msgstr""
5250
"成功するとオブジェクト *o* 中のキーの数を返し、失敗すると ``-1`` を返します。これは、Python の式 ``len(o)`` "
5351
"と同じになります。"
5452

55-
#:../../c-api/mapping.rst:32
53+
#:../../c-api/mapping.rst:31
5654
msgid""
5755
"Return element of *o* corresponding to the string *key* or ``NULL`` on "
5856
"failure. This is the equivalent of the Python expression ``o[key]``. See "
5957
"also :c:func:`PyObject_GetItem`."
6058
msgstr""
6159

62-
#:../../c-api/mapping.rst:39
60+
#:../../c-api/mapping.rst:38
6361
msgid""
6462
"Map the string *key* to the value *v* in object *o*. Returns ``-1`` on "
6563
"failure. This is the equivalent of the Python statement ``o[key] = v``. See"
@@ -69,7 +67,7 @@ msgstr ""
6967
"Python の文 ``o[key] = v`` と同じです。\n"
7068
":c:func:`PyObject_SetItem` も参照してください。"
7169

72-
#:../../c-api/mapping.rst:46
70+
#:../../c-api/mapping.rst:45
7371
msgid""
7472
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
7573
"on failure. This is equivalent to the Python statement ``del o[key]``. This"
@@ -80,7 +78,7 @@ msgstr ""
8078
"Python の文 ``del o[key]`` と同じです。\n"
8179
"この関数は :c:func:`PyObject_DelItem` の別名です。"
8280

83-
#:../../c-api/mapping.rst:53
81+
#:../../c-api/mapping.rst:52
8482
msgid""
8583
"Remove the mapping for the string *key* from the object *o*. Return ``-1`` "
8684
"on failure. This is equivalent to the Python statement ``del o[key]``."
@@ -89,7 +87,7 @@ msgstr ""
8987
"失敗すると ``-1`` を返します。\n"
9088
"Python の文 ``del o[key]`` と同じです。"
9189

92-
#:../../c-api/mapping.rst:59../../c-api/mapping.rst:70
90+
#:../../c-api/mapping.rst:58../../c-api/mapping.rst:69
9391
msgid""
9492
"Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. "
9593
"This is equivalent to the Python expression ``key in o``. This function "
@@ -98,7 +96,7 @@ msgstr ""
9896
"マップ型オブジェクトがキー *key* を持つ場合に ``1`` を返し、そうでないときには ``0`` を返します。これは、Python の式 "
9997
"``key in o`` と等価です。この関数呼び出しは常に成功します。"
10098

101-
#:../../c-api/mapping.rst:63
99+
#:../../c-api/mapping.rst:62
102100
msgid""
103101
"Note that exceptions which occur while calling the :meth:`__getitem__` "
104102
"method will get suppressed. To get error reporting use "
@@ -107,7 +105,7 @@ msgstr ""
107105
":meth:`__getitem__` メソッドの呼び出し中に起こる例外は抑制されることに注意してください。\n"
108106
"エラーを報告させるには、代わりに :c:func:`PyObject_GetItem()` を使ってください。"
109107

110-
#:../../c-api/mapping.rst:74
108+
#:../../c-api/mapping.rst:73
111109
msgid""
112110
"Note that exceptions which occur while calling the :meth:`__getitem__` "
113111
"method and creating a temporary string object will get suppressed. To get "
@@ -116,24 +114,24 @@ msgstr ""
116114
":meth:`__getitem__` メソッドの呼び出し中や、一時的な文字列オブジェクトの作成中に起こる例外は抑制されることに注意してください。\n"
117115
"エラーを報告させるには、代わりに :c:func:`PyMapping_GetItemString()` を使ってください。"
118116

119-
#:../../c-api/mapping.rst:81
117+
#:../../c-api/mapping.rst:80
120118
msgid""
121119
"On success, return a list of the keys in object *o*. On failure, return "
122120
"``NULL``."
123121
msgstr""
124122

125-
#:../../c-api/mapping.rst:84../../c-api/mapping.rst:93
126-
#:../../c-api/mapping.rst:102
123+
#:../../c-api/mapping.rst:83../../c-api/mapping.rst:92
124+
#:../../c-api/mapping.rst:101
127125
msgid"Previously, the function returned a list or a tuple."
128126
msgstr"以前は、関数はリストもしくはタプルを返していました。"
129127

130-
#:../../c-api/mapping.rst:90
128+
#:../../c-api/mapping.rst:89
131129
msgid""
132130
"On success, return a list of the values in object *o*. On failure, return "
133131
"``NULL``."
134132
msgstr""
135133

136-
#:../../c-api/mapping.rst:99
134+
#:../../c-api/mapping.rst:98
137135
msgid""
138136
"On success, return a list of the items in object *o*, where each item is a "
139137
"tuple containing a key-value pair. On failure, return ``NULL``."

‎library/functions.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version:Python 3.8\n"
2222
"Report-Msgid-Bugs-To:\n"
23-
"POT-Creation-Date:2019-11-13 11:56+0000\n"
23+
"POT-Creation-Date:2019-11-21 11:59+0000\n"
2424
"PO-Revision-Date:2017-02-16 23:11+0000\n"
2525
"Last-Translator:tomo, 2019\n"
2626
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -926,8 +926,8 @@ msgid ""
926926
"omitted it defaults to the *globals* dictionary. If both dictionaries are "
927927
"omitted, the expression is executed with the *globals* and *locals* in the "
928928
"environment where :func:`eval` is called. Note, *eval()* does not have "
929-
"access to the :term:`nested scope`\\s (non-locals) in the enclosing "
930-
"environment."
929+
"access to the :term:`nestedscopes <nestedscope>` (non-locals) in the "
930+
"enclosingenvironment."
931931
msgstr""
932932

933933
#:../../library/functions.rst:477
@@ -2594,8 +2594,8 @@ msgstr "両方の用途において、典型的なスーパークラスの呼び
25942594
#:../../library/functions.rst:1638
25952595
msgid""
25962596
"In addition to method lookups, :func:`super` also works for attribute "
2597-
"lookups. One possible use case for this is calling :term:`descriptor`\\s in"
2598-
" a parent or sibling class."
2597+
"lookups. One possible use case for this is calling :term:`descriptors"
2598+
"<descriptor>` in a parent or sibling class."
25992599
msgstr""
26002600

26012601
#:../../library/functions.rst:1642

‎library/pdb.po

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version:Python 3.8\n"
1818
"Report-Msgid-Bugs-To:\n"
19-
"POT-Creation-Date:2019-09-01 14:24+0000\n"
19+
"POT-Creation-Date:2019-11-21 11:59+0000\n"
2020
"PO-Revision-Date:2017-02-16 23:21+0000\n"
2121
"Last-Translator:Osamu NAKAMURA, 2019\n"
2222
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -749,10 +749,17 @@ msgid "Quit from the debugger. The program being executed is aborted."
749749
msgstr"デバッガーを終了します。実行しているプログラムは中断されます。"
750750

751751
#:../../library/pdb.rst:536
752+
msgid""
753+
"Enter a recursive debugger that steps through the code argument (which is an"
754+
" arbitrary expression or statement to be executed in the current "
755+
"environment)."
756+
msgstr""
757+
758+
#:../../library/pdb.rst:544
752759
msgid"Footnotes"
753760
msgstr"脚注"
754761

755-
#:../../library/pdb.rst:537
762+
#:../../library/pdb.rst:545
756763
msgid""
757764
"Whether a frame is considered to originate in a certain module is determined"
758765
" by the ``__name__`` in the frame globals."

‎library/stdtypes.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ msgid ""
2222
msgstr ""
2323
"Project-Id-Version:Python 3.8\n"
2424
"Report-Msgid-Bugs-To:\n"
25-
"POT-Creation-Date:2019-11-13 11:56+0000\n"
25+
"POT-Creation-Date:2019-11-21 11:59+0000\n"
2626
"PO-Revision-Date:2017-02-16 23:27+0000\n"
2727
"Last-Translator:Osamu NAKAMURA, 2019\n"
2828
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -4641,7 +4641,7 @@ msgstr ""
46414641

46424642
#:../../library/stdtypes.rst:3645
46434643
msgid""
4644-
"*Order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the"
4644+
"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the"
46454645
" original array is converted to C or Fortran order. For contiguous views, "
46464646
"'A' returns an exact copy of the physical memory. In particular, in-memory "
46474647
"Fortran order is preserved. For non-contiguous views, the data is converted "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp