Skip to content

Commit 391b4a6

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent a04f239 commit 391b4a6

File tree

3 files changed

+3664
-3632
lines changed

3 files changed

+3664
-3632
lines changed

library/sqlite3.po

Lines changed: 43 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-07-09 08:32+0900\n"
11+
"POT-Creation-Date: 2018-07-30 08:42+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Ikuru K <kanumaiku@gmail.com>, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -391,13 +391,10 @@ msgstr "SQLite データベースコネクション。以下の属性やメソ
391391

392392
#: ../../library/sqlite3.rst:284
393393
msgid ""
394-
"Get or set the current isolation level. :const:`None` for autocommit mode or"
395-
" one of \"DEFERRED\", \"IMMEDIATE\" or \"EXCLUSIVE\". See section "
394+
"Get or set the current default isolation level. :const:`None` for autocommit"
395+
" mode or one of \"DEFERRED\", \"IMMEDIATE\" or \"EXCLUSIVE\". See section "
396396
":ref:`sqlite3-controlling-transactions` for a more detailed explanation."
397397
msgstr ""
398-
"現在の分離レベルを取得または設定します。 :const:`None` で自動コミットモードまたは \"DEFERRED\", "
399-
"\"IMMEDIATE\", \"EXLUSIVE\" のどれかです。より詳しい説明は :ref:`sqlite3-controlling-"
400-
"transactions` 節を参照してください。"
401398

402399
#: ../../library/sqlite3.rst:290
403400
msgid ""
@@ -1324,58 +1321,60 @@ msgstr "トランザクション制御"
13241321

13251322
#: ../../library/sqlite3.rst:1006
13261323
msgid ""
1327-
"By default, the :mod:`sqlite3` module opens transactions implicitly before a"
1328-
" Data Modification Language (DML) statement (i.e. "
1329-
"``INSERT``/``UPDATE``/``DELETE``/``REPLACE``)."
1324+
"The underlying ``sqlite3`` library operates in ``autocommit`` mode by "
1325+
"default, but the Python :mod:`sqlite3` module by default does not."
13301326
msgstr ""
13311327

1332-
#: ../../library/sqlite3.rst:1010
1328+
#: ../../library/sqlite3.rst:1009
13331329
msgid ""
1334-
"You can control which kind of ``BEGIN`` statements sqlite3 implicitly "
1335-
"executes (or none at all) via the *isolation_level* parameter to the "
1336-
":func:`connect` call, or via the :attr:`isolation_level` property of "
1337-
"connections."
1330+
"``autocommit`` mode means that statements that modify the database take "
1331+
"effect immediately. A ``BEGIN`` or ``SAVEPOINT`` statement disables "
1332+
"``autocommit`` mode, and a ``COMMIT``, a ``ROLLBACK``, or a ``RELEASE`` that"
1333+
" ends the outermost transaction, turns ``autocommit`` mode back on."
13381334
msgstr ""
1339-
"sqlite3 が暗黙のうちに実行する ``BEGIN`` 文の種類(またはそういうものを使わないこと)を :func:`connect` 呼び出しの "
1340-
"*isolation_level* パラメータを通じて、または接続の :attr:`isolation_level` "
1341-
"プロパティを通じて、制御することができます。"
13421335

13431336
#: ../../library/sqlite3.rst:1014
13441337
msgid ""
1345-
"If you want **autocommit mode**, then set :attr:`isolation_level` to "
1346-
"``None``."
1347-
msgstr "**自動コミットモード** を使いたい場合は、 :attr:`isolation_level` は ``None`` にしてください。"
1338+
"The Python :mod:`sqlite3` module by default issues a ``BEGIN`` statement "
1339+
"implicitly before a Data Modification Language (DML) statement (i.e. "
1340+
"``INSERT``/``UPDATE``/``DELETE``/``REPLACE``)."
1341+
msgstr ""
13481342

1349-
#: ../../library/sqlite3.rst:1016
1343+
#: ../../library/sqlite3.rst:1018
13501344
msgid ""
1351-
"Otherwise leave it at its default, which will result in a plain \"BEGIN\" "
1352-
"statement, or set it to one of SQLite's supported isolation levels: "
1353-
"\"DEFERRED\", \"IMMEDIATE\" or \"EXCLUSIVE\"."
1345+
"You can control which kind of ``BEGIN`` statements :mod:`sqlite3` implicitly"
1346+
" executes via the *isolation_level* parameter to the :func:`connect` call, "
1347+
"or via the :attr:`isolation_level` property of connections. If you specify "
1348+
"no *isolation_level*, a plain ``BEGIN`` is used, which is equivalent to "
1349+
"specifying ``DEFERRED``. Other possible values are ``IMMEDIATE`` and "
1350+
"``EXCLUSIVE``."
13541351
msgstr ""
1355-
"そうでなければデフォルトのまま ``BEGIN`` 文を使い続けるか、SQLite がサポートする分離レベル \"DEFERRED\", "
1356-
"\"IMMEDIATE\" または \"EXCLUSIVE\" を設定してください。"
13571352

1358-
#: ../../library/sqlite3.rst:1020
1353+
#: ../../library/sqlite3.rst:1025
13591354
msgid ""
1360-
"The current transaction state is exposed through the "
1361-
":attr:`Connection.in_transaction` attribute of the connection object."
1355+
"You can disable the :mod:`sqlite3` module's implicit transaction management "
1356+
"by setting :attr:`isolation_level` to ``None``. This will leave the "
1357+
"underlying ``sqlite3`` library operating in ``autocommit`` mode. You can "
1358+
"then completely control the transaction state by explicitly issuing "
1359+
"``BEGIN``, ``ROLLBACK``, ``SAVEPOINT``, and ``RELEASE`` statements in your "
1360+
"code."
13621361
msgstr ""
13631362

1364-
#: ../../library/sqlite3.rst:1023
1363+
#: ../../library/sqlite3.rst:1031
13651364
msgid ""
13661365
":mod:`sqlite3` used to implicitly commit an open transaction before DDL "
13671366
"statements. This is no longer the case."
13681367
msgstr ""
13691368

1370-
#: ../../library/sqlite3.rst:1029
1369+
#: ../../library/sqlite3.rst:1037
13711370
msgid "Using :mod:`sqlite3` efficiently"
13721371
msgstr ":mod:`sqlite3` の効率的な使い方"
13731372

1374-
#: ../../library/sqlite3.rst:1033
1373+
#: ../../library/sqlite3.rst:1041
13751374
msgid "Using shortcut methods"
13761375
msgstr "ショートカットメソッドを使う"
13771376

1378-
#: ../../library/sqlite3.rst:1035
1377+
#: ../../library/sqlite3.rst:1043
13791378
msgid ""
13801379
"Using the nonstandard :meth:`execute`, :meth:`executemany` and "
13811380
":meth:`executescript` methods of the :class:`Connection` object, your code "
@@ -1392,29 +1391,29 @@ msgstr ""
13921391
"オブジェクトは暗黙裡に生成されショートカットメソッドの戻り値として受け取ることができます。この方法を使えば、 ``SELECT`` "
13931392
"文を実行してその結果について反復することが、 :class:`Connection` オブジェクトに対する呼び出し一つで行なえます。"
13941393

1395-
#: ../../library/sqlite3.rst:1047
1394+
#: ../../library/sqlite3.rst:1055
13961395
msgid "Accessing columns by name instead of by index"
13971396
msgstr "位置ではなく名前でカラムにアクセスする"
13981397

1399-
#: ../../library/sqlite3.rst:1049
1398+
#: ../../library/sqlite3.rst:1057
14001399
msgid ""
14011400
"One useful feature of the :mod:`sqlite3` module is the built-in "
14021401
":class:`sqlite3.Row` class designed to be used as a row factory."
14031402
msgstr ""
14041403
":mod:`sqlite3` モジュールの有用な機能の一つに、行生成関数として使われるための :class:`sqlite3.Row` "
14051404
"クラスがあります。"
14061405

1407-
#: ../../library/sqlite3.rst:1052
1406+
#: ../../library/sqlite3.rst:1060
14081407
msgid ""
14091408
"Rows wrapped with this class can be accessed both by index (like tuples) and"
14101409
" case-insensitively by name:"
14111410
msgstr "このクラスでラップされた行は、位置インデクス(タプルのような)でも大文字小文字を区別しない名前でもアクセスできます:"
14121411

1413-
#: ../../library/sqlite3.rst:1059
1412+
#: ../../library/sqlite3.rst:1067
14141413
msgid "Using the connection as a context manager"
14151414
msgstr "コネクションをコンテキストマネージャーとして利用する"
14161415

1417-
#: ../../library/sqlite3.rst:1061
1416+
#: ../../library/sqlite3.rst:1069
14181417
msgid ""
14191418
"Connection objects can be used as context managers that automatically commit"
14201419
" or rollback transactions. In the event of an exception, the transaction is"
@@ -1423,15 +1422,15 @@ msgstr ""
14231422
"Connection "
14241423
"オブジェクトはコンテキストマネージャーとして利用して、トランザクションを自動的にコミットしたりロールバックすることができます。例外が発生したときにトランザクションはロールバックされ、それ以外の場合、トランザクションはコミットされます:"
14251424

1426-
#: ../../library/sqlite3.rst:1070
1425+
#: ../../library/sqlite3.rst:1078
14271426
msgid "Common issues"
14281427
msgstr "既知の問題"
14291428

1430-
#: ../../library/sqlite3.rst:1073
1429+
#: ../../library/sqlite3.rst:1081
14311430
msgid "Multithreading"
14321431
msgstr "マルチスレッド"
14331432

1434-
#: ../../library/sqlite3.rst:1075
1433+
#: ../../library/sqlite3.rst:1083
14351434
msgid ""
14361435
"Older SQLite versions had issues with sharing connections between threads. "
14371436
"That's why the Python module disallows sharing connections and cursors "
@@ -1441,17 +1440,17 @@ msgstr ""
14411440
"古いバージョンの SQLite はスレッド間でのコネクションの共有に問題がありました。その理由は、Python "
14421441
"のモジュールではスレッド間のコネクションとカーソルの共有ができないためです。依然としてそのようなことをしようとすると、実行時に例外を受け取るでしょう。"
14431442

1444-
#: ../../library/sqlite3.rst:1079
1443+
#: ../../library/sqlite3.rst:1087
14451444
msgid ""
14461445
"The only exception is calling the :meth:`~Connection.interrupt` method, "
14471446
"which only makes sense to call from a different thread."
14481447
msgstr "唯一の例外は :meth:`~Connection.interrupt` メソッドで、これだけが異なるスレッドから呼び出せます。"
14491448

1450-
#: ../../library/sqlite3.rst:1083
1449+
#: ../../library/sqlite3.rst:1091
14511450
msgid "Footnotes"
14521451
msgstr "脚注"
14531452

1454-
#: ../../library/sqlite3.rst:1084
1453+
#: ../../library/sqlite3.rst:1092
14551454
msgid ""
14561455
"The sqlite3 module is not built with loadable extension support by default, "
14571456
"because some platforms (notably Mac OS X) have SQLite libraries which are "

whatsnew/3.7.po

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-07-11 08:33+0900\n"
11+
"POT-Creation-Date: 2018-07-30 08:42+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: tomo🐧, 2018\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -3146,7 +3146,7 @@ msgid ""
31463146
"Smith in :issue:`29137`.)"
31473147
msgstr ""
31483148

3149-
#: ../../whatsnew/3.7.rst:2168 ../../whatsnew/3.7.rst:2434
3149+
#: ../../whatsnew/3.7.rst:2168 ../../whatsnew/3.7.rst:2440
31503150
msgid "Windows-only Changes"
31513151
msgstr ""
31523152

@@ -3493,11 +3493,19 @@ msgid ""
34933493
" :issue:`23835`.)"
34943494
msgstr ""
34953495

3496-
#: ../../whatsnew/3.7.rst:2411
3496+
#: ../../whatsnew/3.7.rst:2409
3497+
msgid ""
3498+
"Several undocumented internal imports were removed. One example is that "
3499+
"``os.errno`` is no longer available; use ``import errno`` directly instead. "
3500+
"Note that such undocumented internal imports may be removed any time without"
3501+
" notice, even in micro version releases."
3502+
msgstr ""
3503+
3504+
#: ../../whatsnew/3.7.rst:2417
34973505
msgid "Changes in the C API"
34983506
msgstr "C API の変更"
34993507

3500-
#: ../../whatsnew/3.7.rst:2413
3508+
#: ../../whatsnew/3.7.rst:2419
35013509
msgid ""
35023510
"The function :c:func:`PySlice_GetIndicesEx` is considered unsafe for "
35033511
"resizable sequences. If the slice indices are not instances of "
@@ -3509,34 +3517,34 @@ msgid ""
35093517
"(Contributed by Serhiy Storchaka in :issue:`27867`.)"
35103518
msgstr ""
35113519

3512-
#: ../../whatsnew/3.7.rst:2424
3520+
#: ../../whatsnew/3.7.rst:2430
35133521
msgid "CPython bytecode changes"
35143522
msgstr "CPython バイトコードの変更"
35153523

3516-
#: ../../whatsnew/3.7.rst:2426
3524+
#: ../../whatsnew/3.7.rst:2432
35173525
msgid ""
35183526
"There are two new opcodes: :opcode:`LOAD_METHOD` and :opcode:`CALL_METHOD`. "
35193527
"(Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.)"
35203528
msgstr ""
35213529

3522-
#: ../../whatsnew/3.7.rst:2429
3530+
#: ../../whatsnew/3.7.rst:2435
35233531
msgid ""
35243532
"The :opcode:`STORE_ANNOTATION` opcode has been removed. (Contributed by Mark"
35253533
" Shannon in :issue:`32550`.)"
35263534
msgstr ""
35273535

3528-
#: ../../whatsnew/3.7.rst:2436
3536+
#: ../../whatsnew/3.7.rst:2442
35293537
msgid ""
35303538
"The file used to override :data:`sys.path` is now called ``<python-"
35313539
"executable>._pth`` instead of ``'sys.path'``. See :ref:`finding_modules` for"
35323540
" more information. (Contributed by Steve Dower in :issue:`28137`.)"
35333541
msgstr ""
35343542

3535-
#: ../../whatsnew/3.7.rst:2443
3543+
#: ../../whatsnew/3.7.rst:2449
35363544
msgid "Other CPython implementation changes"
35373545
msgstr "その他の CPython の実装の変更"
35383546

3539-
#: ../../whatsnew/3.7.rst:2445
3547+
#: ../../whatsnew/3.7.rst:2451
35403548
msgid ""
35413549
"In preparation for potential future changes to the public CPython runtime "
35423550
"initialization API (see :pep:`432` for an initial, but somewhat outdated, "
@@ -3551,21 +3559,21 @@ msgid ""
35513559
"Stinner in a number of other issues). Some known details affected:"
35523560
msgstr ""
35533561

3554-
#: ../../whatsnew/3.7.rst:2458
3562+
#: ../../whatsnew/3.7.rst:2464
35553563
msgid ""
35563564
":c:func:`PySys_AddWarnOptionUnicode` is not currently usable by embedding "
35573565
"applications due to the requirement to create a Unicode object prior to "
35583566
"calling `Py_Initialize`. Use :c:func:`PySys_AddWarnOption` instead."
35593567
msgstr ""
35603568

3561-
#: ../../whatsnew/3.7.rst:2462
3569+
#: ../../whatsnew/3.7.rst:2468
35623570
msgid ""
35633571
"warnings filters added by an embedding application with "
35643572
":c:func:`PySys_AddWarnOption` should now more consistently take precedence "
35653573
"over the default filters set by the interpreter"
35663574
msgstr ""
35673575

3568-
#: ../../whatsnew/3.7.rst:2466
3576+
#: ../../whatsnew/3.7.rst:2472
35693577
msgid ""
35703578
"Due to changes in the way the default warnings filters are configured, "
35713579
"setting :c:data:`Py_BytesWarningFlag` to a value greater than one is no "
@@ -3575,15 +3583,15 @@ msgid ""
35753583
"``error::BytesWarning`` warnings filter added to convert them to exceptions."
35763584
msgstr ""
35773585

3578-
#: ../../whatsnew/3.7.rst:2473
3586+
#: ../../whatsnew/3.7.rst:2479
35793587
msgid ""
35803588
"Due to a change in the way docstrings are handled by the compiler, the "
35813589
"implicit ``return None`` in a function body consisting solely of a docstring"
35823590
" is now marked as occurring on the same line as the docstring, not on the "
35833591
"function's header line."
35843592
msgstr ""
35853593

3586-
#: ../../whatsnew/3.7.rst:2478
3594+
#: ../../whatsnew/3.7.rst:2484
35873595
msgid ""
35883596
"The current exception state has been moved from the frame object to the co-"
35893597
"routine. This simplified the interpreter and fixed a couple of obscure bugs "

0 commit comments

Comments
 (0)