Skip to content

Commit fdbe391

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent a0623ea commit fdbe391

File tree

1 file changed

+82
-16
lines changed

1 file changed

+82
-16
lines changed

library/sqlite3.po

+82-16
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.11\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-04-07 14:12+0000\n"
17+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1818
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
1919
"Last-Translator: HIdeo Haga, 2023\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -1615,7 +1615,7 @@ msgstr ""
16151615

16161616
#: ../../library/sqlite3.rst:1297
16171617
msgid "Cursor objects"
1618-
msgstr ""
1618+
msgstr "Cursor オブジェクト"
16191619

16201620
#: ../../library/sqlite3.rst:1299
16211621
msgid ""
@@ -1624,13 +1624,21 @@ msgid ""
16241624
"created using :meth:`Connection.cursor`, or by using any of the :ref:"
16251625
"`connection shortcut methods <sqlite3-connection-shortcuts>`."
16261626
msgstr ""
1627+
"``Cursor`` オブジェクトは、 SQL 文を実行し、 取得操作(fetch operation)のコン"
1628+
"テキストを管理するために使用されるデータベース・カーソル(`database cursor`_)"
1629+
"を表します。カーソルは、 :meth:`Connection.cursor` または :ref:`接続"
1630+
"(connection)ショートカット・メソッド <sqlite3-connection-shortcuts>` の、いず"
1631+
"れかを使用して作成されます。"
16271632

16281633
#: ../../library/sqlite3.rst:1306
16291634
msgid ""
16301635
"Cursor objects are :term:`iterators <iterator>`, meaning that if you :meth:"
16311636
"`~Cursor.execute` a ``SELECT`` query, you can simply iterate over the cursor "
16321637
"to fetch the resulting rows:"
16331638
msgstr ""
1639+
"カーソル・オブジェクトは :term:`イテレータ <iterator>` です。つまり、 "
1640+
"``SELECT`` クエリに対して :meth:`~Cursor.execute` した場合、結果の行(rows)を"
1641+
"取得するためには、カーソルを単純に反復(iterate)できます:"
16341642

16351643
#: ../../library/sqlite3.rst:1331
16361644
msgid "A :class:`Cursor` instance has the following attributes and methods."
@@ -1641,21 +1649,27 @@ msgid ""
16411649
"Execute SQL a single SQL statement, optionally binding Python values using :"
16421650
"ref:`placeholders <sqlite3-placeholders>`."
16431651
msgstr ""
1652+
"単一の SQL 文を実行し、オプションで :ref:`プレースホルダ <sqlite3-"
1653+
"placeholders>` を使用して Python 値を結び付け(bind)ます。"
16441654

16451655
#: ../../library/sqlite3.rst:1342
16461656
msgid "A single SQL statement."
1647-
msgstr ""
1657+
msgstr "単一の SQL 文。"
16481658

16491659
#: ../../library/sqlite3.rst:1345
16501660
msgid ""
16511661
"Python values to bind to placeholders in *sql*. A :class:`!dict` if named "
16521662
"placeholders are used. A :term:`!sequence` if unnamed placeholders are used. "
16531663
"See :ref:`sqlite3-placeholders`."
16541664
msgstr ""
1665+
"*sql* のプレースホルダに結び付け(bind)する Python 値。 名前付きプレースホルダ"
1666+
"が使用されている場合は :class:`!dict` です。 名前のないプレースホルダが使用さ"
1667+
"れている場合は :term:`!sequence` です。 :ref:`sqlite3-placeholders` を参照し"
1668+
"てください。"
16551669

16561670
#: ../../library/sqlite3.rst:1352
16571671
msgid "If *sql* contains more than one SQL statement."
1658-
msgstr ""
1672+
msgstr "*sql* に複数の SQL 文が含まれている場合。"
16591673

16601674
#: ../../library/sqlite3.rst:1355
16611675
msgid ""
@@ -1664,35 +1678,44 @@ msgid ""
16641678
"no open transaction, a transaction is implicitly opened before executing "
16651679
"*sql*."
16661680
msgstr ""
1681+
":attr:`~Connection.isolation_level` が ``None`` で無い場合、 *sql* は "
1682+
"``INSERT`` または ``UPDATE`` または ``DELETE`` または ``REPLACE`` 文であり、 "
1683+
"開いているトランザクションがない場合、 *sql* を実行する前にトランザクションが"
1684+
"暗黙に開かれます。"
16671685

16681686
#: ../../library/sqlite3.rst:1360
16691687
msgid "Use :meth:`executescript` to execute multiple SQL statements."
1670-
msgstr ""
1688+
msgstr "複数の SQL 文を実行するには :meth:`executescript` を使用します。"
16711689

16721690
#: ../../library/sqlite3.rst:1364
16731691
msgid ""
16741692
"For every item in *parameters*, repeatedly execute the :ref:`parameterized "
16751693
"<sqlite3-placeholders>` SQL statement *sql*."
16761694
msgstr ""
1695+
"*parameters* のすべての item に対して、 :ref:`パラメーター化 <sqlite3-"
1696+
"placeholders>` された SQL 文である *sql* を繰り返し実行します。"
16771697

16781698
#: ../../library/sqlite3.rst:1368
16791699
msgid "Uses the same implicit transaction handling as :meth:`~Cursor.execute`."
16801700
msgstr ""
1701+
":meth:`~Cursor.execute` と同一の暗黙のトランザクション処理を使用します。"
16811702

16821703
#: ../../library/sqlite3.rst:1370
16831704
msgid "A single SQL :abbr:`DML (Data Manipulation Language)` statement."
1684-
msgstr ""
1705+
msgstr "単一の SQL :abbr:`DML (データ操作言語)` 文。"
16851706

16861707
#: ../../library/sqlite3.rst:1373
16871708
msgid ""
16881709
"An :term:`!iterable` of parameters to bind with the placeholders in *sql*. "
16891710
"See :ref:`sqlite3-placeholders`."
16901711
msgstr ""
1712+
"*sql* のプレースホルダに結び付け(bind)するためのパラメータの :term:`!"
1713+
"iterable` 。 :ref:`sqlite3-placeholders` 参照。"
16911714

16921715
#: ../../library/sqlite3.rst:1379
16931716
msgid ""
16941717
"If *sql* contains more than one SQL statement, or is not a DML statment."
1695-
msgstr ""
1718+
msgstr "*sql* に複数の SQL 文トが含まれているか、または DML 文じゃない場合。"
16961719

16971720
#: ../../library/sqlite3.rst:1396
16981721
msgid ""
@@ -1701,23 +1724,33 @@ msgid ""
17011724
"implicit transaction control is performed; any transaction control must be "
17021725
"added to *sql_script*."
17031726
msgstr ""
1727+
"*sql_script* 内の複数の SQL 文を実行します。 保留中のトランザクションがある場"
1728+
"合、 暗黙の ``COMMIT`` 文が最初に実行されます。 他の暗黙のトランザクション制"
1729+
"御は実行されません。 つまり、 *sql_script* にはトランザクション制御を追加する"
1730+
"必要があります。"
17041731

17051732
#: ../../library/sqlite3.rst:1402
17061733
msgid "*sql_script* must be a :class:`string <str>`."
1707-
msgstr ""
1734+
msgstr "*sql_script* は :class:`文字列 <str>` でなければなりません。"
17081735

17091736
#: ../../library/sqlite3.rst:1420
17101737
msgid ""
17111738
"If :attr:`~Cursor.row_factory` is ``None``, return the next row query result "
17121739
"set as a :class:`tuple`. Else, pass it to the row factory and return its "
17131740
"result. Return ``None`` if no more data is available."
17141741
msgstr ""
1742+
":attr:`~Cursor.row_factory` が ``None`` の場合、 次の行のクエリ結果セットを :"
1743+
"class:`タプル <tuple>` として返します。それ以外の場合は、 それを行工場(row "
1744+
"factory)に渡し、 その結果を返します。 これ以上データが無い場合は ``None`` を"
1745+
"返します。"
17151746

17161747
#: ../../library/sqlite3.rst:1428
17171748
msgid ""
17181749
"Return the next set of rows of a query result as a :class:`list`. Return an "
17191750
"empty list if no more rows are available."
17201751
msgstr ""
1752+
"クエリ結果の次の行セットを :class:`list` として返します。行がそれ以上ない場合"
1753+
"は、空のリストを返します。"
17211754

17221755
#: ../../library/sqlite3.rst:1431
17231756
msgid ""
@@ -1726,6 +1759,9 @@ msgid ""
17261759
"be fetched. If fewer than *size* rows are available, as many rows as are "
17271760
"available are returned."
17281761
msgstr ""
1762+
"呼び出しごとに取得する行数は、*size* パラメーターで指定されます。 *size* が指"
1763+
"定されていない場合、 :attr:`arraysize` が取得する行数を決定します。有効な行の"
1764+
"数が *size* 未満の場合は、有効な数の行が返されます。"
17291765

17301766
#: ../../library/sqlite3.rst:1437
17311767
msgid ""
@@ -1736,37 +1772,45 @@ msgid ""
17361772
msgstr ""
17371773
"*size* 引数とパフォーマンスの関係についての注意です。パフォーマンスを最適化す"
17381774
"るためには、大抵、 arraysize 属性を利用するのがベストです。 *size* 引数を利用"
1739-
"したのであれば、次の :meth:`fetchmany` の呼び出しでも同じ数を利用するのがベス"
1740-
"トです。"
1775+
"したのであれば、次回の :meth:`fetchmany` の呼び出しでも *size* 引数に同一の値"
1776+
"を指定するのがのがベストです。"
17411777

17421778
#: ../../library/sqlite3.rst:1444
17431779
msgid ""
17441780
"Return all (remaining) rows of a query result as a :class:`list`. Return an "
17451781
"empty list if no rows are available. Note that the :attr:`arraysize` "
17461782
"attribute can affect the performance of this operation."
17471783
msgstr ""
1784+
"クエリ結果の(残りの)すべての行を :class:`list` として返します。 有効な行がな"
1785+
"い場合は、空のリストを返します。 :attr:`arraysize` 属性は、この操作のパフォー"
1786+
"マンスに影響を与える可能性があることに注意してください。"
17481787

17491788
#: ../../library/sqlite3.rst:1451
17501789
msgid "Close the cursor now (rather than whenever ``__del__`` is called)."
1751-
msgstr ""
1790+
msgstr "(``__del__`` が呼び出される時ではなく、) 今すぐカーソルを閉じます。"
17521791

17531792
#: ../../library/sqlite3.rst:1453
17541793
msgid ""
17551794
"The cursor will be unusable from this point forward; a :exc:"
17561795
"`ProgrammingError` exception will be raised if any operation is attempted "
17571796
"with the cursor."
17581797
msgstr ""
1798+
"この時点から、このカーソルは使用できなくなります。今後、このカーソルで何らか"
1799+
"の操作を試みると、 :exc:`ProgrammingError` 例外が送出されます。"
17591800

17601801
#: ../../library/sqlite3.rst:1458 ../../library/sqlite3.rst:1462
17611802
msgid "Required by the DB-API. Does nothing in :mod:`!sqlite3`."
1762-
msgstr ""
1803+
msgstr "DB-API で必要です。 :mod:`!sqlite3` では何もしません。"
17631804

17641805
#: ../../library/sqlite3.rst:1466
17651806
msgid ""
17661807
"Read/write attribute that controls the number of rows returned by :meth:"
17671808
"`fetchmany`. The default value is 1 which means a single row would be "
17681809
"fetched per call."
17691810
msgstr ""
1811+
"fetchmany によって返される行(row)数を制御する、読み取りと書き込みが可能な属"
1812+
"性。 デフォルト値は 1 で、これは呼び出しごとに 1 行が取得されることを意味しま"
1813+
"す。"
17701814

17711815
#: ../../library/sqlite3.rst:1471
17721816
msgid ""
@@ -1775,19 +1819,26 @@ msgid ""
17751819
"`con.cursor() <Connection.cursor>` will have a :attr:`connection` attribute "
17761820
"that refers to *con*:"
17771821
msgstr ""
1822+
"カーソルが属する SQLite データベース :class:`Connection` を提供する読み取り専"
1823+
"用属性。 :meth:`con.cursor() <Connection.cursor>` と呼び出して作成した :"
1824+
"class:`Cursor` オブジェクトには、*con* を参照する :attr:`connection` 属性があ"
1825+
"ります:"
17781826

17791827
#: ../../library/sqlite3.rst:1485
17801828
msgid ""
17811829
"Read-only attribute that provides the column names of the last query. To "
17821830
"remain compatible with the Python DB API, it returns a 7-tuple for each "
17831831
"column where the last six items of each tuple are ``None``."
17841832
msgstr ""
1833+
"最後のクエリの列(column)名を提供する読み取り専用属性。 Python DB API との互換"
1834+
"性を維持するために、各列ごとに 7 項目のタプルで、先頭の項目が列名、残りの6項"
1835+
"目が ``None`` です。"
17851836

17861837
#: ../../library/sqlite3.rst:1489
17871838
msgid "It is set for ``SELECT`` statements without any matching rows as well."
17881839
msgstr ""
1789-
"この属性は ``SELECT`` 文にマッチする row が1つもなかった場合でもセットされま"
1790-
"。"
1840+
"この属性は ``SELECT`` 文にマッチする行(row)が1つもなかった場合でもセットされ"
1841+
"ます。"
17911842

17921843
#: ../../library/sqlite3.rst:1493
17931844
msgid ""
@@ -1798,10 +1849,15 @@ msgid ""
17981849
"``lastrowid`` is left unchanged. The initial value of ``lastrowid`` is "
17991850
"``None``."
18001851
msgstr ""
1852+
"最後に挿入された行の行 ID (row id) を提供する読み取り専用属性。 :meth:"
1853+
"`execute` で ``INSERT`` または ``REPLACE`` 文が成功した後にのみ更新されま"
1854+
"す。他のSQL文や、 :meth:`executemany` の後や、 :meth:`executescript` の後"
1855+
"や、 挿入が失敗した場合、 ``lastrowid`` の値は変更されません。``lastrowid`` "
1856+
"の初期値は ``None`` です。"
18011857

18021858
#: ../../library/sqlite3.rst:1501
18031859
msgid "Inserts into ``WITHOUT ROWID`` tables are not recorded."
1804-
msgstr ""
1860+
msgstr "``WITHOUT ROWID`` テーブルへの挿入(insert)は記録されません。"
18051861

18061862
#: ../../library/sqlite3.rst:1503
18071863
msgid "Added support for the ``REPLACE`` statement."
@@ -1815,6 +1871,10 @@ msgid ""
18151871
"queries. It is only updated by the :meth:`execute` and :meth:`executemany` "
18161872
"methods."
18171873
msgstr ""
1874+
"``INSERT`` や ``UPDATE`` や ``DELETE`` や ``REPLACE`` 文で変更された行数を提"
1875+
"供する読み取り専用属性。 :abbr:`CTE (共通テーブル式)` クエリを含む他のSQL文"
1876+
"は ``-1`` です。 :meth:`execute` と :meth:`executemany` メソッドによってのみ"
1877+
"更新されます。"
18181878

18191879
#: ../../library/sqlite3.rst:1516
18201880
msgid ""
@@ -1824,6 +1884,12 @@ msgid ""
18241884
"arguments, a :class:`Cursor` object and the :class:`!tuple` of row values, "
18251885
"and returns a custom object representing an SQLite row."
18261886
msgstr ""
1887+
"この :class:`カーソル <!Cursor>` から取得された行の表現方法を制御します。 "
1888+
"``None`` の場合、行は :class:`タプル <tuple>` として表されます。 :class:"
1889+
"`sqlite3.Row` に設定でき。そしてまた :class:`Cursor` オブジェクトと、 行の値"
1890+
"の :class:`タプル <!tuple>` の、 2 つの引数を受け取り、 SQLite の行(row)を表"
1891+
"すカスタム・オブジェクトを返す、 :term:`呼び出し可能オブジェクト <callable>` "
1892+
"に設定できます。"
18271893

18281894
#: ../../library/sqlite3.rst:1523
18291895
msgid ""
@@ -2407,7 +2473,7 @@ msgstr ""
24072473

24082474
#: ../../library/sqlite3.rst:2266
24092475
msgid "How to create and use row factories"
2410-
msgstr ""
2476+
msgstr "行工場(row factories)の作成方法と使用方法"
24112477

24122478
#: ../../library/sqlite3.rst:2268
24132479
msgid ""

0 commit comments

Comments
 (0)