Skip to content

Commit 68243a9

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent ae13d1f commit 68243a9

27 files changed

+5502
-5307
lines changed

c-api/buffer.po

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.7\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2019-07-18 02:57+0000\n"
22+
"POT-Creation-Date: 2019-08-08 08:00+0000\n"
2323
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
2424
"Last-Translator: tomo, 2018\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -775,6 +775,12 @@ msgstr ""
775775

776776
#: ../../c-api/buffer.rst:480
777777
msgid ""
778+
"Get the memory area pointed to by the *indices* inside the given *view*. "
779+
"*indices* must point to an array of ``view->ndim`` indices."
780+
msgstr ""
781+
782+
#: ../../c-api/buffer.rst:486
783+
msgid ""
778784
"Copy *len* bytes from *src* to its contiguous representation in *buf*. "
779785
"*order* can be ``'C'`` or ``'F'`` (for C-style or Fortran-style ordering). "
780786
"``0`` is returned on success, ``-1`` on error."
@@ -783,11 +789,11 @@ msgstr ""
783789
"*order* は ``'C'`` または ``'F'`` (C スタイルまたは Fortran スタイルの順序) が指定できます。\n"
784790
"成功したら ``0`` が返り、エラーなら ``-1`` が返ります。"
785791

786-
#: ../../c-api/buffer.rst:484
792+
#: ../../c-api/buffer.rst:490
787793
msgid "This function fails if *len* != *src->len*."
788794
msgstr "*len* != *src->len* の場合、この関数は失敗します。"
789795

790-
#: ../../c-api/buffer.rst:489
796+
#: ../../c-api/buffer.rst:495
791797
msgid ""
792798
"Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style "
793799
"if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the "
@@ -797,7 +803,7 @@ msgstr ""
797803
"(:term:`contiguous`) (*order* が ``'C'`` なら C-style 、 ``'F'`` なら Fortran-"
798804
"style の) 多次元配列として埋める。"
799805

800-
#: ../../c-api/buffer.rst:496
806+
#: ../../c-api/buffer.rst:502
801807
msgid ""
802808
"Handle buffer requests for an exporter that wants to expose *buf* of size "
803809
"*len* with writability set according to *readonly*. *buf* is interpreted as "
@@ -806,7 +812,7 @@ msgstr ""
806812
"サイズが *len* の *buf* を *readonly* に従った書き込み可/不可の設定で公開するバッファリクエストを処理します。\n"
807813
"*buf* は符号無しバイトの列として解釈されます。"
808814

809-
#: ../../c-api/buffer.rst:500
815+
#: ../../c-api/buffer.rst:506
810816
msgid ""
811817
"The *flags* argument indicates the request type. This function always fills "
812818
"in *view* as specified by flags, unless *buf* has been designated as read-"
@@ -815,7 +821,7 @@ msgstr ""
815821
"*flags* 引数はリクエストのタイプを示します。\n"
816822
"この関数は、 *buf* が読み出し専用と指定されていて、 *flags* に :c:macro:`PyBUF_WRITABLE` が設定されていない限り、常にフラグに指定された通りに *view* を埋めます。"
817823

818-
#: ../../c-api/buffer.rst:504
824+
#: ../../c-api/buffer.rst:510
819825
msgid ""
820826
"On success, set :c:member:`view->obj` to a new reference to *exporter* and "
821827
"return 0. Otherwise, raise :c:data:`PyExc_BufferError`, set "
@@ -824,7 +830,7 @@ msgstr ""
824830
"成功したときは、 :c:member:`view->obj` に *exporter* への新しい参照を設定し、 0 を返します。\n"
825831
"失敗したときは、 :c:data:`PyExc_BufferError` を送出し、 :c:member:`view->obj` に *NULL* を設定し、 ``-1`` を返します;"
826832

827-
#: ../../c-api/buffer.rst:508
833+
#: ../../c-api/buffer.rst:514
828834
msgid ""
829835
"If this function is used as part of a :ref:`getbufferproc <buffer-structs>`,"
830836
" *exporter* MUST be set to the exporting object and *flags* must be passed "

c-api/memory.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Arihiro TAKASE, 2017
1111
# Inada Naoki <songofacandy@gmail.com>, 2017
1212
# Osamu NAKAMURA, 2017
13-
# tomo, 2018
13+
# tomo, 2019
1414
#
1515
#, fuzzy
1616
msgid ""
@@ -19,7 +19,7 @@ msgstr ""
1919
"Report-Msgid-Bugs-To: \n"
2020
"POT-Creation-Date: 2019-07-06 21:56+0900\n"
2121
"PO-Revision-Date: 2017-02-16 17:37+0000\n"
22-
"Last-Translator: tomo, 2018\n"
22+
"Last-Translator: tomo, 2019\n"
2323
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2424
"MIME-Version: 1.0\n"
2525
"Content-Type: text/plain; charset=UTF-8\n"
@@ -579,7 +579,7 @@ msgstr "``void *ctx``"
579579

580580
#: ../../c-api/memory.rst:370 ../../c-api/memory.rst:515
581581
msgid "user context passed as first argument"
582-
msgstr "第一引数として渡されるユーザコンテクスト"
582+
msgstr "第一引数として渡されるユーザコンテキスト"
583583

584584
#: ../../c-api/memory.rst:372
585585
msgid "``void* malloc(void *ctx, size_t size)``"

glossary.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ msgid ""
198198
"statement by defining :meth:`__aenter__` and :meth:`__aexit__` methods. "
199199
"Introduced by :pep:`492`."
200200
msgstr ""
201-
"(非同期コンテクストマネージャ)\n"
201+
"(非同期コンテキストマネージャ)\n"
202202
":meth:`__aenter__` と :meth:`__aexit__` メソッドを定義することで :keyword:`async with` 文内の環境を管理するオブジェクトです。\n"
203203
":pep:`492` で導入されました。"
204204

@@ -491,7 +491,7 @@ msgid ""
491491
"An object which controls the environment seen in a :keyword:`with` statement"
492492
" by defining :meth:`__enter__` and :meth:`__exit__` methods. See :pep:`343`."
493493
msgstr ""
494-
"(コンテクストマネージャ)\n"
494+
"(コンテキストマネージャ)\n"
495495
":meth:`__enter__` と :meth:`__exit__` メソッドを定義することで :keyword:`with` 文内の環境を管理するオブジェクトです。:pep:`343` を参照してください。"
496496

497497
#: ../../glossary.rst:223

0 commit comments

Comments
 (0)