@@ -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-01-01 10:14 +0900\n "
19
+ "POT-Creation-Date : 2019-02-10 10: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 "
@@ -1377,23 +1377,34 @@ msgstr ""
1377
1377
1378
1378
#: ../../library/idle.rst:719
1379
1379
msgid ""
1380
- "Text widgets display a subset of Unicode, the Basic Multilingual Plane "
1381
- "(BMP). Which characters get a proper glyph instead of a replacement box "
1382
- "depends on the operating system and installed fonts. Newline characters "
1383
- "cause following text to appear on a new line, but other control characters "
1384
- "are either replaced with a box or deleted. However, ``repr()``, which is "
1385
- "used for interactive echo of expression values, replaces control characters,"
1386
- " some BMP codepoints, and all non-BMP characters with escape codes before "
1387
- "they are output."
1380
+ "A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
1381
+ "in the the BMP (Basic Multilingual Plane) subset of Unicode. Which "
1382
+ "characters are displayed with a proper glyph and which with a replacement "
1383
+ "box depends on the operating system and installed fonts. Tab characters "
1384
+ "cause the following text to begin after the next tab stop. (They occur every"
1385
+ " 8 'characters'). Newline characters cause following text to appear on a new"
1386
+ " line. Other control characters are ignored or displayed as a space, box, or"
1387
+ " something else, depending on the operating system and font. (Moving the "
1388
+ "text cursor through such output with arrow keys may exhibit some surprising "
1389
+ "spacing behavior.)"
1388
1390
msgstr ""
1389
1391
1390
- #: ../../library/idle.rst:728
1392
+ #: ../../library/idle.rst:741
1393
+ msgid ""
1394
+ "The ``repr`` function is used for interactive echo of expression values. It"
1395
+ " returns an altered version of the input string in which control codes, some"
1396
+ " BMP codepoints, and all non-BMP codepoints are replaced with escape codes. "
1397
+ "As demonstrated above, it allows one to identify the characters in a string,"
1398
+ " regardless of how they are displayed."
1399
+ msgstr ""
1400
+
1401
+ #: ../../library/idle.rst:747
1391
1402
msgid ""
1392
1403
"Normal and error output are generally kept separate (on separate lines) from"
1393
1404
" code input and each other. They each get different highlight colors."
1394
1405
msgstr ""
1395
1406
1396
- #: ../../library/idle.rst:731
1407
+ #: ../../library/idle.rst:750
1397
1408
msgid ""
1398
1409
"For SyntaxError tracebacks, the normal '^' marking where the error was "
1399
1410
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1402,7 +1413,7 @@ msgid ""
1402
1413
"opened if necessary."
1403
1414
msgstr ""
1404
1415
1405
- #: ../../library/idle.rst:737
1416
+ #: ../../library/idle.rst:756
1406
1417
msgid ""
1407
1418
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
1408
1419
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1412,18 +1423,18 @@ msgid ""
1412
1423
"scrolling."
1413
1424
msgstr ""
1414
1425
1415
- #: ../../library/idle.rst:745
1426
+ #: ../../library/idle.rst:764
1416
1427
msgid ""
1417
1428
"Squeezed output is expanded in place by double-clicking the label. It can "
1418
1429
"also be sent to the clipboard or a separate view window by right-clicking "
1419
1430
"the label."
1420
1431
msgstr ""
1421
1432
1422
- #: ../../library/idle.rst:750
1433
+ #: ../../library/idle.rst:769
1423
1434
msgid "Developing tkinter applications"
1424
1435
msgstr ""
1425
1436
1426
- #: ../../library/idle.rst:752
1437
+ #: ../../library/idle.rst:771
1427
1438
msgid ""
1428
1439
"IDLE is intentionally different from standard Python in order to facilitate "
1429
1440
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1435,7 +1446,7 @@ msgid ""
1435
1446
" visibly changes in standard Python until one enters ``root.update()``."
1436
1447
msgstr ""
1437
1448
1438
- #: ../../library/idle.rst:761
1449
+ #: ../../library/idle.rst:780
1439
1450
msgid ""
1440
1451
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
1441
1452
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1444,19 +1455,19 @@ msgid ""
1444
1455
"with."
1445
1456
msgstr ""
1446
1457
1447
- #: ../../library/idle.rst:767
1458
+ #: ../../library/idle.rst:786
1448
1459
msgid ""
1449
1460
"When running a tkinter program from an IDLE editor, one can comment out the "
1450
1461
"mainloop call. One then gets a shell prompt immediately and can interact "
1451
1462
"with the live application. One just has to remember to re-enable the "
1452
1463
"mainloop call when running in standard Python."
1453
1464
msgstr ""
1454
1465
1455
- #: ../../library/idle.rst:773
1466
+ #: ../../library/idle.rst:792
1456
1467
msgid "Running without a subprocess"
1457
1468
msgstr "サブプロセスを起こさずに起動する"
1458
1469
1459
- #: ../../library/idle.rst:775
1470
+ #: ../../library/idle.rst:794
1460
1471
msgid ""
1461
1472
"By default, IDLE executes user code in a separate subprocess via a socket, "
1462
1473
"which uses the internal loopback interface. This connection is not "
@@ -1466,7 +1477,7 @@ msgstr ""
1466
1477
"デフォルトでは、IDLE "
1467
1478
"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
1468
1479
1469
- #: ../../library/idle.rst:780
1480
+ #: ../../library/idle.rst:799
1470
1481
msgid ""
1471
1482
"If the attempt to make the socket connection fails, Idle will notify you. "
1472
1483
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1475,7 +1486,7 @@ msgid ""
1475
1486
" command line switch."
1476
1487
msgstr ""
1477
1488
1478
- #: ../../library/idle.rst:786
1489
+ #: ../../library/idle.rst:805
1479
1490
msgid ""
1480
1491
"If IDLE is started with the -n command line switch it will run in a single "
1481
1492
"process and will not create the subprocess which runs the RPC Python "
@@ -1495,15 +1506,15 @@ msgstr ""
1495
1506
"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
1496
1507
"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
1497
1508
1498
- #: ../../library/idle.rst:801
1509
+ #: ../../library/idle.rst:820
1499
1510
msgid "Help and preferences"
1500
1511
msgstr "ヘルプとお好み設定"
1501
1512
1502
- #: ../../library/idle.rst:806
1513
+ #: ../../library/idle.rst:825
1503
1514
msgid "Help sources"
1504
1515
msgstr ""
1505
1516
1506
- #: ../../library/idle.rst:808
1517
+ #: ../../library/idle.rst:827
1507
1518
msgid ""
1508
1519
"Help menu entry \" IDLE Help\" displays a formatted html version of the IDLE "
1509
1520
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1513,25 +1524,25 @@ msgid ""
1513
1524
"the opened box."
1514
1525
msgstr ""
1515
1526
1516
- #: ../../library/idle.rst:816
1527
+ #: ../../library/idle.rst:835
1517
1528
msgid ""
1518
1529
"Help menu entry \" Python Docs\" opens the extensive sources of help, "
1519
1530
"including tutorials, available at docs.python.org/x.y, where 'x.y' is the "
1520
1531
"currently running Python version. If your system has an off-line copy of "
1521
1532
"the docs (this may be an installation option), that will be opened instead."
1522
1533
msgstr ""
1523
1534
1524
- #: ../../library/idle.rst:822
1535
+ #: ../../library/idle.rst:841
1525
1536
msgid ""
1526
1537
"Selected URLs can be added or removed from the help menu at any time using "
1527
1538
"the General tab of the Configure IDLE dialog ."
1528
1539
msgstr ""
1529
1540
1530
- #: ../../library/idle.rst:828
1541
+ #: ../../library/idle.rst:847
1531
1542
msgid "Setting preferences"
1532
1543
msgstr "Setting preferences [お好み設定]"
1533
1544
1534
- #: ../../library/idle.rst:830
1545
+ #: ../../library/idle.rst:849
1535
1546
msgid ""
1536
1547
"The font preferences, highlighting, keys, and general preferences can be "
1537
1548
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1540,30 +1551,30 @@ msgid ""
1540
1551
"more of the files in .idlerc."
1541
1552
msgstr ""
1542
1553
1543
- #: ../../library/idle.rst:836
1554
+ #: ../../library/idle.rst:855
1544
1555
msgid ""
1545
1556
"On the Highlights and Keys tab, select a built-in or custom color theme and "
1546
1557
"key set. To use a newer built-in color theme or key set with older IDLEs, "
1547
1558
"save it as a new custom theme or key set and it well be accessible to older "
1548
1559
"IDLEs."
1549
1560
msgstr ""
1550
1561
1551
- #: ../../library/idle.rst:842
1562
+ #: ../../library/idle.rst:861
1552
1563
msgid "IDLE on macOS"
1553
1564
msgstr ""
1554
1565
1555
- #: ../../library/idle.rst:844
1566
+ #: ../../library/idle.rst:863
1556
1567
msgid ""
1557
1568
"Under System Preferences: Dock, one can set \" Prefer tabs when opening "
1558
1569
"documents\" to \" Always\" . This setting is not compatible with the "
1559
1570
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
1560
1571
msgstr ""
1561
1572
1562
- #: ../../library/idle.rst:849
1573
+ #: ../../library/idle.rst:868
1563
1574
msgid "Extensions"
1564
1575
msgstr "Extensions [拡張]"
1565
1576
1566
- #: ../../library/idle.rst:851
1577
+ #: ../../library/idle.rst:870
1567
1578
msgid ""
1568
1579
"IDLE contains an extension facility. Preferences for extensions can be "
1569
1580
"changed with the Extensions tab of the preferences dialog. See the beginning"
0 commit comments