@@ -16,7 +16,7 @@ msgid ""
16
16
msgstr ""
17
17
"Project-Id-Version : Python 3.7\n "
18
18
"Report-Msgid-Bugs-To : \n "
19
- "POT-Creation-Date : 2019-05-17 11:27 +0900\n "
19
+ "POT-Creation-Date : 2019-05-21 11:28 +0900\n "
20
20
"PO-Revision-Date : 2017-02-16 23:14+0000\n "
21
21
"Last-Translator : tomo, 2018\n "
22
22
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1352,11 +1352,17 @@ msgid ""
1352
1352
" will not work correctly."
1353
1353
msgstr ""
1354
1354
1355
- #: ../../library/idle.rst:704
1355
+ #: ../../library/idle.rst:703
1356
+ msgid ""
1357
+ "When user code raises SystemExit either directly or by calling sys.exit, "
1358
+ "IDLE returns to a Shell prompt instead of exiting."
1359
+ msgstr ""
1360
+
1361
+ #: ../../library/idle.rst:707
1356
1362
msgid "User output in Shell"
1357
1363
msgstr ""
1358
1364
1359
- #: ../../library/idle.rst:706
1365
+ #: ../../library/idle.rst:709
1360
1366
msgid ""
1361
1367
"When a program outputs text, the result is determined by the corresponding "
1362
1368
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1366,7 +1372,7 @@ msgid ""
1366
1372
"rather than production runs."
1367
1373
msgstr ""
1368
1374
1369
- #: ../../library/idle.rst:713
1375
+ #: ../../library/idle.rst:716
1370
1376
msgid ""
1371
1377
"For instance, Shell never throws away output. A program that sends "
1372
1378
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1375,7 +1381,7 @@ msgid ""
1375
1381
"lines, with 300 the default."
1376
1382
msgstr ""
1377
1383
1378
- #: ../../library/idle.rst:719
1384
+ #: ../../library/idle.rst:722
1379
1385
msgid ""
1380
1386
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
1381
1387
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1389,7 +1395,7 @@ msgid ""
1389
1395
"spacing behavior.) ::"
1390
1396
msgstr ""
1391
1397
1392
- #: ../../library/idle.rst:737
1398
+ #: ../../library/idle.rst:740
1393
1399
msgid ""
1394
1400
"The ``repr`` function is used for interactive echo of expression values. It"
1395
1401
" returns an altered version of the input string in which control codes, some"
@@ -1398,13 +1404,13 @@ msgid ""
1398
1404
" regardless of how they are displayed."
1399
1405
msgstr ""
1400
1406
1401
- #: ../../library/idle.rst:743
1407
+ #: ../../library/idle.rst:746
1402
1408
msgid ""
1403
1409
"Normal and error output are generally kept separate (on separate lines) from"
1404
1410
" code input and each other. They each get different highlight colors."
1405
1411
msgstr ""
1406
1412
1407
- #: ../../library/idle.rst:746
1413
+ #: ../../library/idle.rst:749
1408
1414
msgid ""
1409
1415
"For SyntaxError tracebacks, the normal '^' marking where the error was "
1410
1416
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1413,7 +1419,7 @@ msgid ""
1413
1419
"opened if necessary."
1414
1420
msgstr ""
1415
1421
1416
- #: ../../library/idle.rst:752
1422
+ #: ../../library/idle.rst:755
1417
1423
msgid ""
1418
1424
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
1419
1425
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1423,18 +1429,18 @@ msgid ""
1423
1429
"scrolling."
1424
1430
msgstr ""
1425
1431
1426
- #: ../../library/idle.rst:760
1432
+ #: ../../library/idle.rst:763
1427
1433
msgid ""
1428
1434
"Squeezed output is expanded in place by double-clicking the label. It can "
1429
1435
"also be sent to the clipboard or a separate view window by right-clicking "
1430
1436
"the label."
1431
1437
msgstr ""
1432
1438
1433
- #: ../../library/idle.rst:765
1439
+ #: ../../library/idle.rst:768
1434
1440
msgid "Developing tkinter applications"
1435
1441
msgstr ""
1436
1442
1437
- #: ../../library/idle.rst:767
1443
+ #: ../../library/idle.rst:770
1438
1444
msgid ""
1439
1445
"IDLE is intentionally different from standard Python in order to facilitate "
1440
1446
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1446,7 +1452,7 @@ msgid ""
1446
1452
" visibly changes in standard Python until one enters ``root.update()``."
1447
1453
msgstr ""
1448
1454
1449
- #: ../../library/idle.rst:776
1455
+ #: ../../library/idle.rst:779
1450
1456
msgid ""
1451
1457
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
1452
1458
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1455,19 +1461,19 @@ msgid ""
1455
1461
"with."
1456
1462
msgstr ""
1457
1463
1458
- #: ../../library/idle.rst:782
1464
+ #: ../../library/idle.rst:785
1459
1465
msgid ""
1460
1466
"When running a tkinter program from an IDLE editor, one can comment out the "
1461
1467
"mainloop call. One then gets a shell prompt immediately and can interact "
1462
1468
"with the live application. One just has to remember to re-enable the "
1463
1469
"mainloop call when running in standard Python."
1464
1470
msgstr ""
1465
1471
1466
- #: ../../library/idle.rst:788
1472
+ #: ../../library/idle.rst:791
1467
1473
msgid "Running without a subprocess"
1468
1474
msgstr "サブプロセスを起こさずに起動する"
1469
1475
1470
- #: ../../library/idle.rst:790
1476
+ #: ../../library/idle.rst:793
1471
1477
msgid ""
1472
1478
"By default, IDLE executes user code in a separate subprocess via a socket, "
1473
1479
"which uses the internal loopback interface. This connection is not "
@@ -1477,7 +1483,7 @@ msgstr ""
1477
1483
"デフォルトでは、IDLE "
1478
1484
"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
1479
1485
1480
- #: ../../library/idle.rst:795
1486
+ #: ../../library/idle.rst:798
1481
1487
msgid ""
1482
1488
"If the attempt to make the socket connection fails, Idle will notify you. "
1483
1489
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1486,7 +1492,7 @@ msgid ""
1486
1492
" command line switch."
1487
1493
msgstr ""
1488
1494
1489
- #: ../../library/idle.rst:801
1495
+ #: ../../library/idle.rst:804
1490
1496
msgid ""
1491
1497
"If IDLE is started with the -n command line switch it will run in a single "
1492
1498
"process and will not create the subprocess which runs the RPC Python "
@@ -1506,15 +1512,15 @@ msgstr ""
1506
1512
"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
1507
1513
"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
1508
1514
1509
- #: ../../library/idle.rst:816
1515
+ #: ../../library/idle.rst:819
1510
1516
msgid "Help and preferences"
1511
1517
msgstr "ヘルプとお好み設定"
1512
1518
1513
- #: ../../library/idle.rst:821
1519
+ #: ../../library/idle.rst:824
1514
1520
msgid "Help sources"
1515
1521
msgstr ""
1516
1522
1517
- #: ../../library/idle.rst:823
1523
+ #: ../../library/idle.rst:826
1518
1524
msgid ""
1519
1525
"Help menu entry \" IDLE Help\" displays a formatted html version of the IDLE "
1520
1526
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1524,25 +1530,25 @@ msgid ""
1524
1530
"the opened box."
1525
1531
msgstr ""
1526
1532
1527
- #: ../../library/idle.rst:831
1533
+ #: ../../library/idle.rst:834
1528
1534
msgid ""
1529
1535
"Help menu entry \" Python Docs\" opens the extensive sources of help, "
1530
1536
"including tutorials, available at docs.python.org/x.y, where 'x.y' is the "
1531
1537
"currently running Python version. If your system has an off-line copy of "
1532
1538
"the docs (this may be an installation option), that will be opened instead."
1533
1539
msgstr ""
1534
1540
1535
- #: ../../library/idle.rst:837
1541
+ #: ../../library/idle.rst:840
1536
1542
msgid ""
1537
1543
"Selected URLs can be added or removed from the help menu at any time using "
1538
1544
"the General tab of the Configure IDLE dialog ."
1539
1545
msgstr ""
1540
1546
1541
- #: ../../library/idle.rst:843
1547
+ #: ../../library/idle.rst:846
1542
1548
msgid "Setting preferences"
1543
1549
msgstr "Setting preferences [お好み設定]"
1544
1550
1545
- #: ../../library/idle.rst:845
1551
+ #: ../../library/idle.rst:848
1546
1552
msgid ""
1547
1553
"The font preferences, highlighting, keys, and general preferences can be "
1548
1554
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1551,7 +1557,7 @@ msgid ""
1551
1557
"more of the files in .idlerc."
1552
1558
msgstr ""
1553
1559
1554
- #: ../../library/idle.rst:851
1560
+ #: ../../library/idle.rst:854
1555
1561
msgid ""
1556
1562
"On the Font tab, see the text sample for the effect of font face and size on"
1557
1563
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1560,30 +1566,30 @@ msgid ""
1560
1566
"the top of the sample and try changing first size and then font."
1561
1567
msgstr ""
1562
1568
1563
- #: ../../library/idle.rst:858
1569
+ #: ../../library/idle.rst:861
1564
1570
msgid ""
1565
1571
"On the Highlights and Keys tab, select a built-in or custom color theme and "
1566
1572
"key set. To use a newer built-in color theme or key set with older IDLEs, "
1567
1573
"save it as a new custom theme or key set and it well be accessible to older "
1568
1574
"IDLEs."
1569
1575
msgstr ""
1570
1576
1571
- #: ../../library/idle.rst:864
1577
+ #: ../../library/idle.rst:867
1572
1578
msgid "IDLE on macOS"
1573
1579
msgstr ""
1574
1580
1575
- #: ../../library/idle.rst:866
1581
+ #: ../../library/idle.rst:869
1576
1582
msgid ""
1577
1583
"Under System Preferences: Dock, one can set \" Prefer tabs when opening "
1578
1584
"documents\" to \" Always\" . This setting is not compatible with the "
1579
1585
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
1580
1586
msgstr ""
1581
1587
1582
- #: ../../library/idle.rst:871
1588
+ #: ../../library/idle.rst:874
1583
1589
msgid "Extensions"
1584
1590
msgstr "Extensions [拡張]"
1585
1591
1586
- #: ../../library/idle.rst:873
1592
+ #: ../../library/idle.rst:876
1587
1593
msgid ""
1588
1594
"IDLE contains an extension facility. Preferences for extensions can be "
1589
1595
"changed with the Extensions tab of the preferences dialog. See the beginning"
0 commit comments