Skip to content

Commit 04c443a

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 668e134 commit 04c443a

File tree

2 files changed

+4073
-4047
lines changed

2 files changed

+4073
-4047
lines changed

library/idle.po

Lines changed: 37 additions & 31 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-05-17 11:27+0900\n"
19+
"POT-Creation-Date: 2019-05-21 11:28+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"
@@ -1352,11 +1352,17 @@ msgid ""
13521352
" will not work correctly."
13531353
msgstr ""
13541354

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
13561362
msgid "User output in Shell"
13571363
msgstr ""
13581364

1359-
#: ../../library/idle.rst:706
1365+
#: ../../library/idle.rst:709
13601366
msgid ""
13611367
"When a program outputs text, the result is determined by the corresponding "
13621368
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1366,7 +1372,7 @@ msgid ""
13661372
"rather than production runs."
13671373
msgstr ""
13681374

1369-
#: ../../library/idle.rst:713
1375+
#: ../../library/idle.rst:716
13701376
msgid ""
13711377
"For instance, Shell never throws away output. A program that sends "
13721378
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1375,7 +1381,7 @@ msgid ""
13751381
"lines, with 300 the default."
13761382
msgstr ""
13771383

1378-
#: ../../library/idle.rst:719
1384+
#: ../../library/idle.rst:722
13791385
msgid ""
13801386
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
13811387
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1389,7 +1395,7 @@ msgid ""
13891395
"spacing behavior.) ::"
13901396
msgstr ""
13911397

1392-
#: ../../library/idle.rst:737
1398+
#: ../../library/idle.rst:740
13931399
msgid ""
13941400
"The ``repr`` function is used for interactive echo of expression values. It"
13951401
" returns an altered version of the input string in which control codes, some"
@@ -1398,13 +1404,13 @@ msgid ""
13981404
" regardless of how they are displayed."
13991405
msgstr ""
14001406

1401-
#: ../../library/idle.rst:743
1407+
#: ../../library/idle.rst:746
14021408
msgid ""
14031409
"Normal and error output are generally kept separate (on separate lines) from"
14041410
" code input and each other. They each get different highlight colors."
14051411
msgstr ""
14061412

1407-
#: ../../library/idle.rst:746
1413+
#: ../../library/idle.rst:749
14081414
msgid ""
14091415
"For SyntaxError tracebacks, the normal '^' marking where the error was "
14101416
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1413,7 +1419,7 @@ msgid ""
14131419
"opened if necessary."
14141420
msgstr ""
14151421

1416-
#: ../../library/idle.rst:752
1422+
#: ../../library/idle.rst:755
14171423
msgid ""
14181424
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
14191425
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1423,18 +1429,18 @@ msgid ""
14231429
"scrolling."
14241430
msgstr ""
14251431

1426-
#: ../../library/idle.rst:760
1432+
#: ../../library/idle.rst:763
14271433
msgid ""
14281434
"Squeezed output is expanded in place by double-clicking the label. It can "
14291435
"also be sent to the clipboard or a separate view window by right-clicking "
14301436
"the label."
14311437
msgstr ""
14321438

1433-
#: ../../library/idle.rst:765
1439+
#: ../../library/idle.rst:768
14341440
msgid "Developing tkinter applications"
14351441
msgstr ""
14361442

1437-
#: ../../library/idle.rst:767
1443+
#: ../../library/idle.rst:770
14381444
msgid ""
14391445
"IDLE is intentionally different from standard Python in order to facilitate "
14401446
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1446,7 +1452,7 @@ msgid ""
14461452
" visibly changes in standard Python until one enters ``root.update()``."
14471453
msgstr ""
14481454

1449-
#: ../../library/idle.rst:776
1455+
#: ../../library/idle.rst:779
14501456
msgid ""
14511457
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
14521458
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1455,19 +1461,19 @@ msgid ""
14551461
"with."
14561462
msgstr ""
14571463

1458-
#: ../../library/idle.rst:782
1464+
#: ../../library/idle.rst:785
14591465
msgid ""
14601466
"When running a tkinter program from an IDLE editor, one can comment out the "
14611467
"mainloop call. One then gets a shell prompt immediately and can interact "
14621468
"with the live application. One just has to remember to re-enable the "
14631469
"mainloop call when running in standard Python."
14641470
msgstr ""
14651471

1466-
#: ../../library/idle.rst:788
1472+
#: ../../library/idle.rst:791
14671473
msgid "Running without a subprocess"
14681474
msgstr "サブプロセスを起こさずに起動する"
14691475

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

1480-
#: ../../library/idle.rst:795
1486+
#: ../../library/idle.rst:798
14811487
msgid ""
14821488
"If the attempt to make the socket connection fails, Idle will notify you. "
14831489
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1486,7 +1492,7 @@ msgid ""
14861492
" command line switch."
14871493
msgstr ""
14881494

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

1509-
#: ../../library/idle.rst:816
1515+
#: ../../library/idle.rst:819
15101516
msgid "Help and preferences"
15111517
msgstr "ヘルプとお好み設定"
15121518

1513-
#: ../../library/idle.rst:821
1519+
#: ../../library/idle.rst:824
15141520
msgid "Help sources"
15151521
msgstr ""
15161522

1517-
#: ../../library/idle.rst:823
1523+
#: ../../library/idle.rst:826
15181524
msgid ""
15191525
"Help menu entry \"IDLE Help\" displays a formatted html version of the IDLE "
15201526
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1524,25 +1530,25 @@ msgid ""
15241530
"the opened box."
15251531
msgstr ""
15261532

1527-
#: ../../library/idle.rst:831
1533+
#: ../../library/idle.rst:834
15281534
msgid ""
15291535
"Help menu entry \"Python Docs\" opens the extensive sources of help, "
15301536
"including tutorials, available at docs.python.org/x.y, where 'x.y' is the "
15311537
"currently running Python version. If your system has an off-line copy of "
15321538
"the docs (this may be an installation option), that will be opened instead."
15331539
msgstr ""
15341540

1535-
#: ../../library/idle.rst:837
1541+
#: ../../library/idle.rst:840
15361542
msgid ""
15371543
"Selected URLs can be added or removed from the help menu at any time using "
15381544
"the General tab of the Configure IDLE dialog ."
15391545
msgstr ""
15401546

1541-
#: ../../library/idle.rst:843
1547+
#: ../../library/idle.rst:846
15421548
msgid "Setting preferences"
15431549
msgstr "Setting preferences [お好み設定]"
15441550

1545-
#: ../../library/idle.rst:845
1551+
#: ../../library/idle.rst:848
15461552
msgid ""
15471553
"The font preferences, highlighting, keys, and general preferences can be "
15481554
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1551,7 +1557,7 @@ msgid ""
15511557
"more of the files in .idlerc."
15521558
msgstr ""
15531559

1554-
#: ../../library/idle.rst:851
1560+
#: ../../library/idle.rst:854
15551561
msgid ""
15561562
"On the Font tab, see the text sample for the effect of font face and size on"
15571563
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1560,30 +1566,30 @@ msgid ""
15601566
"the top of the sample and try changing first size and then font."
15611567
msgstr ""
15621568

1563-
#: ../../library/idle.rst:858
1569+
#: ../../library/idle.rst:861
15641570
msgid ""
15651571
"On the Highlights and Keys tab, select a built-in or custom color theme and "
15661572
"key set. To use a newer built-in color theme or key set with older IDLEs, "
15671573
"save it as a new custom theme or key set and it well be accessible to older "
15681574
"IDLEs."
15691575
msgstr ""
15701576

1571-
#: ../../library/idle.rst:864
1577+
#: ../../library/idle.rst:867
15721578
msgid "IDLE on macOS"
15731579
msgstr ""
15741580

1575-
#: ../../library/idle.rst:866
1581+
#: ../../library/idle.rst:869
15761582
msgid ""
15771583
"Under System Preferences: Dock, one can set \"Prefer tabs when opening "
15781584
"documents\" to \"Always\". This setting is not compatible with the "
15791585
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
15801586
msgstr ""
15811587

1582-
#: ../../library/idle.rst:871
1588+
#: ../../library/idle.rst:874
15831589
msgid "Extensions"
15841590
msgstr "Extensions [拡張]"
15851591

1586-
#: ../../library/idle.rst:873
1592+
#: ../../library/idle.rst:876
15871593
msgid ""
15881594
"IDLE contains an extension facility. Preferences for extensions can be "
15891595
"changed with the Extensions tab of the preferences dialog. See the beginning"

0 commit comments

Comments
 (0)