@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.7\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2020-02-10 04:47 +0000\n "
14
+ "POT-Creation-Date :2020-03-06 04:57 +0000\n "
15
15
"PO-Revision-Date :2019-09-01 03:25+0000\n "
16
16
"Last-Translator :tomo, 2019\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1296,33 +1296,35 @@ msgstr ""
1296
1296
#: ../../library/idle.rst:683
1297
1297
msgid ""
1298
1298
"A zombie pythonw.exe process could be a problem. On Windows, use Task "
1299
- "Manager to detect and stop one. Sometimes a restart initiated by a program "
1300
- "crash or Keyboard Interrupt (control-C) may fail to connect. Dismissing the"
1301
- " error box or Restart Shell on the Shell menu may fix a temporary problem."
1299
+ "Manager to check for one and stop it if there is. Sometimes a restart "
1300
+ "initiated by a program crash or Keyboard Interrupt (control-C) may fail to "
1301
+ "connect. Dismissing the error box or using Restart Shell on the Shell menu "
1302
+ "may fix a temporary problem."
1302
1303
msgstr ""
1303
1304
1304
- #: ../../library/idle.rst:688
1305
+ #: ../../library/idle.rst:689
1305
1306
msgid ""
1306
1307
"When IDLE first starts, it attempts to read user configuration files in "
1307
1308
"``~/.idlerc/`` (~ is one's home directory). If there is a problem, an error"
1308
1309
" message should be displayed. Leaving aside random disk glitches, this can "
1309
- "be prevented by never editing the files by hand, using the configuration "
1310
- "dialog, under Options, instead Options. Once it happens, the solution may "
1311
- "be to delete one or more of the configuration files."
1310
+ "be prevented by never editing the files by hand. Instead, use the "
1311
+ "configuration dialog, under Options. Once there is an error in a user "
1312
+ "configuration file, the best solution may be to delete it and start over "
1313
+ "with the settings dialog."
1312
1314
msgstr ""
1313
1315
1314
- #: ../../library/idle.rst:695
1316
+ #: ../../library/idle.rst:697
1315
1317
msgid ""
1316
1318
"If IDLE quits with no message, and it was not started from a console, try "
1317
- "starting from a console (``python -m idlelib``) and see if a message "
1318
- "appears ."
1319
+ "startingit from a consoleor terminal (``python -m idlelib``) and see if "
1320
+ "this results in an error message ."
1319
1321
msgstr ""
1320
1322
1321
- #: ../../library/idle.rst:699
1323
+ #: ../../library/idle.rst:702
1322
1324
msgid "Running user code"
1323
1325
msgstr ""
1324
1326
1325
- #: ../../library/idle.rst:701
1327
+ #: ../../library/idle.rst:704
1326
1328
msgid ""
1327
1329
"With rare exceptions, the result of executing Python code with IDLE is "
1328
1330
"intended to be the same as executing the same code by the default method, "
@@ -1332,7 +1334,7 @@ msgid ""
1332
1334
"``threading.activeCount()`` returns 2 instead of 1."
1333
1335
msgstr ""
1334
1336
1335
- #: ../../library/idle.rst:708
1337
+ #: ../../library/idle.rst:711
1336
1338
msgid ""
1337
1339
"By default, IDLE runs user code in a separate OS process rather than in the "
1338
1340
"user interface process that runs the shell and editor. In the execution "
@@ -1342,15 +1344,15 @@ msgid ""
1342
1344
"``sys.__stderr__`` are not touched, but may be ``None``."
1343
1345
msgstr ""
1344
1346
1345
- #: ../../library/idle.rst:715
1347
+ #: ../../library/idle.rst:718
1346
1348
msgid ""
1347
1349
"When Shell has the focus, it controls the keyboard and screen. This is "
1348
1350
"normally transparent, but functions that directly access the keyboard and "
1349
1351
"screen will not work. These include system-specific functions that "
1350
1352
"determine whether a key has been pressed and if so, which."
1351
1353
msgstr ""
1352
1354
1353
- #: ../../library/idle.rst:720
1355
+ #: ../../library/idle.rst:723
1354
1356
msgid ""
1355
1357
"IDLE's standard stream replacements are not inherited by subprocesses "
1356
1358
"created in the execution process, whether directly by user code or by "
@@ -1360,32 +1362,32 @@ msgid ""
1360
1362
" attached to that window for input and output."
1361
1363
msgstr ""
1362
1364
1363
- #: ../../library/idle.rst:727
1365
+ #: ../../library/idle.rst:730
1364
1366
msgid ""
1365
1367
"The IDLE code running in the execution process adds frames to the call stack"
1366
1368
" that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
1367
1369
"and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
1368
1370
"frames."
1369
1371
msgstr ""
1370
1372
1371
- #: ../../library/idle.rst:731
1373
+ #: ../../library/idle.rst:734
1372
1374
msgid ""
1373
1375
"If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
1374
1376
"IDLE's changes are lost and input from the keyboard and output to the screen"
1375
1377
" will not work correctly."
1376
1378
msgstr ""
1377
1379
1378
- #: ../../library/idle.rst:735
1380
+ #: ../../library/idle.rst:738
1379
1381
msgid ""
1380
1382
"When user code raises SystemExit either directly or by calling sys.exit, "
1381
1383
"IDLE returns to a Shell prompt instead of exiting."
1382
1384
msgstr ""
1383
1385
1384
- #: ../../library/idle.rst:739
1386
+ #: ../../library/idle.rst:742
1385
1387
msgid "User output in Shell"
1386
1388
msgstr ""
1387
1389
1388
- #: ../../library/idle.rst:741
1390
+ #: ../../library/idle.rst:744
1389
1391
msgid ""
1390
1392
"When a program outputs text, the result is determined by the corresponding "
1391
1393
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1395,7 +1397,7 @@ msgid ""
1395
1397
"rather than production runs."
1396
1398
msgstr ""
1397
1399
1398
- #: ../../library/idle.rst:748
1400
+ #: ../../library/idle.rst:751
1399
1401
msgid ""
1400
1402
"For instance, Shell never throws away output. A program that sends "
1401
1403
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1404,7 +1406,7 @@ msgid ""
1404
1406
"lines, with 300 the default."
1405
1407
msgstr ""
1406
1408
1407
- #: ../../library/idle.rst:754
1409
+ #: ../../library/idle.rst:757
1408
1410
msgid ""
1409
1411
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
1410
1412
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1418,7 +1420,7 @@ msgid ""
1418
1420
"spacing behavior.) ::"
1419
1421
msgstr ""
1420
1422
1421
- #: ../../library/idle.rst:772
1423
+ #: ../../library/idle.rst:775
1422
1424
msgid ""
1423
1425
"The ``repr`` function is used for interactive echo of expression values. It"
1424
1426
" returns an altered version of the input string in which control codes, some"
@@ -1427,13 +1429,13 @@ msgid ""
1427
1429
" regardless of how they are displayed."
1428
1430
msgstr ""
1429
1431
1430
- #: ../../library/idle.rst:778
1432
+ #: ../../library/idle.rst:781
1431
1433
msgid ""
1432
1434
"Normal and error output are generally kept separate (on separate lines) from"
1433
1435
" code input and each other. They each get different highlight colors."
1434
1436
msgstr ""
1435
1437
1436
- #: ../../library/idle.rst:781
1438
+ #: ../../library/idle.rst:784
1437
1439
msgid ""
1438
1440
"For SyntaxError tracebacks, the normal '^' marking where the error was "
1439
1441
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1442,7 +1444,7 @@ msgid ""
1442
1444
"opened if necessary."
1443
1445
msgstr ""
1444
1446
1445
- #: ../../library/idle.rst:787
1447
+ #: ../../library/idle.rst:790
1446
1448
msgid ""
1447
1449
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
1448
1450
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1452,18 +1454,18 @@ msgid ""
1452
1454
"scrolling."
1453
1455
msgstr ""
1454
1456
1455
- #: ../../library/idle.rst:795
1457
+ #: ../../library/idle.rst:798
1456
1458
msgid ""
1457
1459
"Squeezed output is expanded in place by double-clicking the label. It can "
1458
1460
"also be sent to the clipboard or a separate view window by right-clicking "
1459
1461
"the label."
1460
1462
msgstr ""
1461
1463
1462
- #: ../../library/idle.rst:800
1464
+ #: ../../library/idle.rst:803
1463
1465
msgid "Developing tkinter applications"
1464
1466
msgstr ""
1465
1467
1466
- #: ../../library/idle.rst:802
1468
+ #: ../../library/idle.rst:805
1467
1469
msgid ""
1468
1470
"IDLE is intentionally different from standard Python in order to facilitate "
1469
1471
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1475,7 +1477,7 @@ msgid ""
1475
1477
" visibly changes in standard Python until one enters ``root.update()``."
1476
1478
msgstr ""
1477
1479
1478
- #: ../../library/idle.rst:811
1480
+ #: ../../library/idle.rst:814
1479
1481
msgid ""
1480
1482
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
1481
1483
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1484,19 +1486,19 @@ msgid ""
1484
1486
"with."
1485
1487
msgstr ""
1486
1488
1487
- #: ../../library/idle.rst:817
1489
+ #: ../../library/idle.rst:820
1488
1490
msgid ""
1489
1491
"When running a tkinter program from an IDLE editor, one can comment out the "
1490
1492
"mainloop call. One then gets a shell prompt immediately and can interact "
1491
1493
"with the live application. One just has to remember to re-enable the "
1492
1494
"mainloop call when running in standard Python."
1493
1495
msgstr ""
1494
1496
1495
- #: ../../library/idle.rst:823
1497
+ #: ../../library/idle.rst:826
1496
1498
msgid "Running without a subprocess"
1497
1499
msgstr "サブプロセスを起こさずに起動する"
1498
1500
1499
- #: ../../library/idle.rst:825
1501
+ #: ../../library/idle.rst:828
1500
1502
msgid ""
1501
1503
"By default, IDLE executes user code in a separate subprocess via a socket, "
1502
1504
"which uses the internal loopback interface. This connection is not "
@@ -1506,7 +1508,7 @@ msgstr ""
1506
1508
"デフォルトでは、IDLE "
1507
1509
"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
1508
1510
1509
- #: ../../library/idle.rst:830
1511
+ #: ../../library/idle.rst:833
1510
1512
msgid ""
1511
1513
"If the attempt to make the socket connection fails, Idle will notify you. "
1512
1514
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1515,7 +1517,7 @@ msgid ""
1515
1517
" command line switch."
1516
1518
msgstr ""
1517
1519
1518
- #: ../../library/idle.rst:836
1520
+ #: ../../library/idle.rst:839
1519
1521
msgid ""
1520
1522
"If IDLE is started with the -n command line switch it will run in a single "
1521
1523
"process and will not create the subprocess which runs the RPC Python "
@@ -1535,15 +1537,15 @@ msgstr ""
1535
1537
"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
1536
1538
"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
1537
1539
1538
- #: ../../library/idle.rst:851
1540
+ #: ../../library/idle.rst:854
1539
1541
msgid "Help and preferences"
1540
1542
msgstr "ヘルプとお好み設定"
1541
1543
1542
- #: ../../library/idle.rst:856
1544
+ #: ../../library/idle.rst:859
1543
1545
msgid "Help sources"
1544
1546
msgstr ""
1545
1547
1546
- #: ../../library/idle.rst:858
1548
+ #: ../../library/idle.rst:861
1547
1549
msgid ""
1548
1550
"Help menu entry\" IDLE Help\" displays a formatted html version of the IDLE "
1549
1551
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1553,7 +1555,7 @@ msgid ""
1553
1555
"the opened box."
1554
1556
msgstr ""
1555
1557
1556
- #: ../../library/idle.rst:866
1558
+ #: ../../library/idle.rst:869
1557
1559
msgid ""
1558
1560
"Help menu entry\" Python Docs\" opens the extensive sources of help, "
1559
1561
"including tutorials, available at ``docs.python.org/x.y``, where 'x.y' is "
@@ -1562,17 +1564,17 @@ msgid ""
1562
1564
"instead."
1563
1565
msgstr ""
1564
1566
1565
- #: ../../library/idle.rst:872
1567
+ #: ../../library/idle.rst:875
1566
1568
msgid ""
1567
1569
"Selected URLs can be added or removed from the help menu at any time using "
1568
1570
"the General tab of the Configure IDLE dialog."
1569
1571
msgstr ""
1570
1572
1571
- #: ../../library/idle.rst:878
1573
+ #: ../../library/idle.rst:881
1572
1574
msgid "Setting preferences"
1573
1575
msgstr "Setting preferences [お好み設定]"
1574
1576
1575
- #: ../../library/idle.rst:880
1577
+ #: ../../library/idle.rst:883
1576
1578
msgid ""
1577
1579
"The font preferences, highlighting, keys, and general preferences can be "
1578
1580
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1581,7 +1583,7 @@ msgid ""
1581
1583
" or more of the files in ``.idlerc``."
1582
1584
msgstr ""
1583
1585
1584
- #: ../../library/idle.rst:886
1586
+ #: ../../library/idle.rst:889
1585
1587
msgid ""
1586
1588
"On the Font tab, see the text sample for the effect of font face and size on"
1587
1589
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1590,30 +1592,30 @@ msgid ""
1590
1592
"the top of the sample and try changing first size and then font."
1591
1593
msgstr ""
1592
1594
1593
- #: ../../library/idle.rst:893
1595
+ #: ../../library/idle.rst:896
1594
1596
msgid ""
1595
1597
"On the Highlights and Keys tab, select a built-in or custom color theme and "
1596
1598
"key set. To use a newer built-in color theme or key set with older IDLEs, "
1597
1599
"save it as a new custom theme or key set and it well be accessible to older "
1598
1600
"IDLEs."
1599
1601
msgstr ""
1600
1602
1601
- #: ../../library/idle.rst:899
1603
+ #: ../../library/idle.rst:902
1602
1604
msgid "IDLE on macOS"
1603
1605
msgstr ""
1604
1606
1605
- #: ../../library/idle.rst:901
1607
+ #: ../../library/idle.rst:904
1606
1608
msgid ""
1607
1609
"Under System Preferences: Dock, one can set\" Prefer tabs when opening "
1608
1610
"documents\" to\" Always\" . This setting is not compatible with the "
1609
1611
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
1610
1612
msgstr ""
1611
1613
1612
- #: ../../library/idle.rst:906
1614
+ #: ../../library/idle.rst:909
1613
1615
msgid "Extensions"
1614
1616
msgstr "Extensions [拡張]"
1615
1617
1616
- #: ../../library/idle.rst:908
1618
+ #: ../../library/idle.rst:911
1617
1619
msgid ""
1618
1620
"IDLE contains an extension facility. Preferences for extensions can be "
1619
1621
"changed with the Extensions tab of the preferences dialog. See the beginning"