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