Skip to content

Commit be5a8de

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent f8ba512 commit be5a8de

File tree

4 files changed

+4703
-4671
lines changed

4 files changed

+4703
-4671
lines changed

c-api/list.po

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.7\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
17+
"POT-Creation-Date: 2019-07-07 11:52+0900\n"
1818
"PO-Revision-Date: 2017-02-16 17:36+0000\n"
1919
"Last-Translator: Arihiro TAKASE, 2017\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -80,13 +80,10 @@ msgstr "マクロ形式でできた :c:func:`PyList_Size` で、エラーチェ
8080
#: ../../c-api/list.rst:61
8181
msgid ""
8282
"Return the object at position *index* in the list pointed to by *list*. The"
83-
" position must be positive, indexing from the end of the list is not "
84-
"supported. If *index* is out of bounds, return *NULL* and set an "
85-
":exc:`IndexError` exception."
83+
" position must be non-negative; indexing from the end of the list is not "
84+
"supported. If *index* is out of bounds (<0 or >=len(list)), return *NULL* "
85+
"and set an :exc:`IndexError` exception."
8686
msgstr ""
87-
"*list* の指すリストオブジェクト内の、位置 *index* "
88-
"にあるオブジェクトを返します。位置は正である必要があり、リスト終端からのインデックスはサポートされていません。 *index* が範囲を超えている場合、"
89-
" *NULL* を返して :exc:`IndexError` 例外をセットします。"
9087

9188
#: ../../c-api/list.rst:69
9289
msgid "Macro form of :c:func:`PyList_GetItem` without error checking."

library/idle.po

Lines changed: 40 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.7\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2019-06-19 11:40+0900\n"
19+
"POT-Creation-Date: 2019-07-07 11:52+0900\n"
2020
"PO-Revision-Date: 2017-02-16 23:14+0000\n"
2121
"Last-Translator: tomo, 2018\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1354,22 +1354,30 @@ msgstr ""
13541354

13551355
#: ../../library/idle.rst:716
13561356
msgid ""
1357+
"The IDLE code running in the execution process adds frames to the call stack"
1358+
" that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
1359+
"and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
1360+
"frames."
1361+
msgstr ""
1362+
1363+
#: ../../library/idle.rst:720
1364+
msgid ""
13571365
"If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
13581366
"IDLE's changes are lost and input from the keyboard and output to the screen"
13591367
" will not work correctly."
13601368
msgstr ""
13611369

1362-
#: ../../library/idle.rst:720
1370+
#: ../../library/idle.rst:724
13631371
msgid ""
13641372
"When user code raises SystemExit either directly or by calling sys.exit, "
13651373
"IDLE returns to a Shell prompt instead of exiting."
13661374
msgstr ""
13671375

1368-
#: ../../library/idle.rst:724
1376+
#: ../../library/idle.rst:728
13691377
msgid "User output in Shell"
13701378
msgstr ""
13711379

1372-
#: ../../library/idle.rst:726
1380+
#: ../../library/idle.rst:730
13731381
msgid ""
13741382
"When a program outputs text, the result is determined by the corresponding "
13751383
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1379,7 +1387,7 @@ msgid ""
13791387
"rather than production runs."
13801388
msgstr ""
13811389

1382-
#: ../../library/idle.rst:733
1390+
#: ../../library/idle.rst:737
13831391
msgid ""
13841392
"For instance, Shell never throws away output. A program that sends "
13851393
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1388,7 +1396,7 @@ msgid ""
13881396
"lines, with 300 the default."
13891397
msgstr ""
13901398

1391-
#: ../../library/idle.rst:739
1399+
#: ../../library/idle.rst:743
13921400
msgid ""
13931401
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
13941402
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1402,7 +1410,7 @@ msgid ""
14021410
"spacing behavior.) ::"
14031411
msgstr ""
14041412

1405-
#: ../../library/idle.rst:757
1413+
#: ../../library/idle.rst:761
14061414
msgid ""
14071415
"The ``repr`` function is used for interactive echo of expression values. It"
14081416
" returns an altered version of the input string in which control codes, some"
@@ -1411,13 +1419,13 @@ msgid ""
14111419
" regardless of how they are displayed."
14121420
msgstr ""
14131421

1414-
#: ../../library/idle.rst:763
1422+
#: ../../library/idle.rst:767
14151423
msgid ""
14161424
"Normal and error output are generally kept separate (on separate lines) from"
14171425
" code input and each other. They each get different highlight colors."
14181426
msgstr ""
14191427

1420-
#: ../../library/idle.rst:766
1428+
#: ../../library/idle.rst:770
14211429
msgid ""
14221430
"For SyntaxError tracebacks, the normal '^' marking where the error was "
14231431
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1426,7 +1434,7 @@ msgid ""
14261434
"opened if necessary."
14271435
msgstr ""
14281436

1429-
#: ../../library/idle.rst:772
1437+
#: ../../library/idle.rst:776
14301438
msgid ""
14311439
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
14321440
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1436,18 +1444,18 @@ msgid ""
14361444
"scrolling."
14371445
msgstr ""
14381446

1439-
#: ../../library/idle.rst:780
1447+
#: ../../library/idle.rst:784
14401448
msgid ""
14411449
"Squeezed output is expanded in place by double-clicking the label. It can "
14421450
"also be sent to the clipboard or a separate view window by right-clicking "
14431451
"the label."
14441452
msgstr ""
14451453

1446-
#: ../../library/idle.rst:785
1454+
#: ../../library/idle.rst:789
14471455
msgid "Developing tkinter applications"
14481456
msgstr ""
14491457

1450-
#: ../../library/idle.rst:787
1458+
#: ../../library/idle.rst:791
14511459
msgid ""
14521460
"IDLE is intentionally different from standard Python in order to facilitate "
14531461
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1459,7 +1467,7 @@ msgid ""
14591467
" visibly changes in standard Python until one enters ``root.update()``."
14601468
msgstr ""
14611469

1462-
#: ../../library/idle.rst:796
1470+
#: ../../library/idle.rst:800
14631471
msgid ""
14641472
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
14651473
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1468,19 +1476,19 @@ msgid ""
14681476
"with."
14691477
msgstr ""
14701478

1471-
#: ../../library/idle.rst:802
1479+
#: ../../library/idle.rst:806
14721480
msgid ""
14731481
"When running a tkinter program from an IDLE editor, one can comment out the "
14741482
"mainloop call. One then gets a shell prompt immediately and can interact "
14751483
"with the live application. One just has to remember to re-enable the "
14761484
"mainloop call when running in standard Python."
14771485
msgstr ""
14781486

1479-
#: ../../library/idle.rst:808
1487+
#: ../../library/idle.rst:812
14801488
msgid "Running without a subprocess"
14811489
msgstr "サブプロセスを起こさずに起動する"
14821490

1483-
#: ../../library/idle.rst:810
1491+
#: ../../library/idle.rst:814
14841492
msgid ""
14851493
"By default, IDLE executes user code in a separate subprocess via a socket, "
14861494
"which uses the internal loopback interface. This connection is not "
@@ -1490,7 +1498,7 @@ msgstr ""
14901498
"デフォルトでは、IDLE "
14911499
"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
14921500

1493-
#: ../../library/idle.rst:815
1501+
#: ../../library/idle.rst:819
14941502
msgid ""
14951503
"If the attempt to make the socket connection fails, Idle will notify you. "
14961504
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1499,7 +1507,7 @@ msgid ""
14991507
" command line switch."
15001508
msgstr ""
15011509

1502-
#: ../../library/idle.rst:821
1510+
#: ../../library/idle.rst:825
15031511
msgid ""
15041512
"If IDLE is started with the -n command line switch it will run in a single "
15051513
"process and will not create the subprocess which runs the RPC Python "
@@ -1519,15 +1527,15 @@ msgstr ""
15191527
"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
15201528
"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
15211529

1522-
#: ../../library/idle.rst:836
1530+
#: ../../library/idle.rst:840
15231531
msgid "Help and preferences"
15241532
msgstr "ヘルプとお好み設定"
15251533

1526-
#: ../../library/idle.rst:841
1534+
#: ../../library/idle.rst:845
15271535
msgid "Help sources"
15281536
msgstr ""
15291537

1530-
#: ../../library/idle.rst:843
1538+
#: ../../library/idle.rst:847
15311539
msgid ""
15321540
"Help menu entry \"IDLE Help\" displays a formatted html version of the IDLE "
15331541
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1537,25 +1545,25 @@ msgid ""
15371545
"the opened box."
15381546
msgstr ""
15391547

1540-
#: ../../library/idle.rst:851
1548+
#: ../../library/idle.rst:855
15411549
msgid ""
15421550
"Help menu entry \"Python Docs\" opens the extensive sources of help, "
15431551
"including tutorials, available at docs.python.org/x.y, where 'x.y' is the "
15441552
"currently running Python version. If your system has an off-line copy of "
15451553
"the docs (this may be an installation option), that will be opened instead."
15461554
msgstr ""
15471555

1548-
#: ../../library/idle.rst:857
1556+
#: ../../library/idle.rst:861
15491557
msgid ""
15501558
"Selected URLs can be added or removed from the help menu at any time using "
15511559
"the General tab of the Configure IDLE dialog ."
15521560
msgstr ""
15531561

1554-
#: ../../library/idle.rst:863
1562+
#: ../../library/idle.rst:867
15551563
msgid "Setting preferences"
15561564
msgstr "Setting preferences [お好み設定]"
15571565

1558-
#: ../../library/idle.rst:865
1566+
#: ../../library/idle.rst:869
15591567
msgid ""
15601568
"The font preferences, highlighting, keys, and general preferences can be "
15611569
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1564,7 +1572,7 @@ msgid ""
15641572
"more of the files in .idlerc."
15651573
msgstr ""
15661574

1567-
#: ../../library/idle.rst:871
1575+
#: ../../library/idle.rst:875
15681576
msgid ""
15691577
"On the Font tab, see the text sample for the effect of font face and size on"
15701578
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1573,30 +1581,30 @@ msgid ""
15731581
"the top of the sample and try changing first size and then font."
15741582
msgstr ""
15751583

1576-
#: ../../library/idle.rst:878
1584+
#: ../../library/idle.rst:882
15771585
msgid ""
15781586
"On the Highlights and Keys tab, select a built-in or custom color theme and "
15791587
"key set. To use a newer built-in color theme or key set with older IDLEs, "
15801588
"save it as a new custom theme or key set and it well be accessible to older "
15811589
"IDLEs."
15821590
msgstr ""
15831591

1584-
#: ../../library/idle.rst:884
1592+
#: ../../library/idle.rst:888
15851593
msgid "IDLE on macOS"
15861594
msgstr ""
15871595

1588-
#: ../../library/idle.rst:886
1596+
#: ../../library/idle.rst:890
15891597
msgid ""
15901598
"Under System Preferences: Dock, one can set \"Prefer tabs when opening "
15911599
"documents\" to \"Always\". This setting is not compatible with the "
15921600
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
15931601
msgstr ""
15941602

1595-
#: ../../library/idle.rst:891
1603+
#: ../../library/idle.rst:895
15961604
msgid "Extensions"
15971605
msgstr "Extensions [拡張]"
15981606

1599-
#: ../../library/idle.rst:893
1607+
#: ../../library/idle.rst:897
16001608
msgid ""
16011609
"IDLE contains an extension facility. Preferences for extensions can be "
16021610
"changed with the Extensions tab of the preferences dialog. See the beginning"

0 commit comments

Comments
 (0)