@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.8\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2021-01-27 16:18 +0000\n "
14+ "POT-Creation-Date :2021-02-21 16:31 +0000\n "
1515"PO-Revision-Date :2020-05-30 12:04+0000\n "
1616"Last-Translator :tomo, 2020\n "
1717"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1322,14 +1322,6 @@ msgstr ""
13221322
13231323#: ../../library/idle.rst:729
13241324msgid ""
1325- "When Shell has the focus, it controls the keyboard and screen. This is "
1326- "normally transparent, but functions that directly access the keyboard and "
1327- "screen will not work. These include system-specific functions that "
1328- "determine whether a key has been pressed and if so, which."
1329- msgstr ""
1330-
1331- #: ../../library/idle.rst:734
1332- msgid ""
13331325"IDLE's standard stream replacements are not inherited by subprocesses "
13341326"created in the execution process, whether directly by user code or by "
13351327"modules such as multiprocessing. If such subprocess use ``input`` from "
@@ -1338,32 +1330,40 @@ msgid ""
13381330" attached to that window for input and output."
13391331msgstr ""
13401332
1341- #: ../../library/idle.rst:741
1333+ #: ../../library/idle.rst:736
13421334msgid ""
1343- "The IDLE code running in the execution process adds frames to the call stack"
1344- " that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
1345- "and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
1346- "frames."
1335+ "If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
1336+ "IDLE's changes are lost and input from the keyboard and output to the screen"
1337+ " will not work correctly."
1338+ msgstr ""
1339+
1340+ #: ../../library/idle.rst:740
1341+ msgid ""
1342+ "When Shell has the focus, it controls the keyboard and screen. This is "
1343+ "normally transparent, but functions that directly access the keyboard and "
1344+ "screen will not work. These include system-specific functions that "
1345+ "determine whether a key has been pressed and if so, which."
13471346msgstr ""
13481347
13491348#: ../../library/idle.rst:745
13501349msgid ""
1351- "If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
1352- "IDLE's changes are lost and input from the keyboard and output to the screen"
1353- " will not work correctly."
1350+ "The IDLE code running in the execution process adds frames to the call stack"
1351+ " that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
1352+ "and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
1353+ "frames."
13541354msgstr ""
13551355
1356- #: ../../library/idle.rst:749
1356+ #: ../../library/idle.rst:750
13571357msgid ""
13581358"When user code raises SystemExit either directly or by calling sys.exit, "
13591359"IDLE returns to a Shell prompt instead of exiting."
13601360msgstr ""
13611361
1362- #: ../../library/idle.rst:753
1362+ #: ../../library/idle.rst:754
13631363msgid "User output in Shell"
13641364msgstr ""
13651365
1366- #: ../../library/idle.rst:755
1366+ #: ../../library/idle.rst:756
13671367msgid ""
13681368"When a program outputs text, the result is determined by the corresponding "
13691369"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1373,7 +1373,7 @@ msgid ""
13731373"rather than production runs."
13741374msgstr ""
13751375
1376- #: ../../library/idle.rst:762
1376+ #: ../../library/idle.rst:763
13771377msgid ""
13781378"For instance, Shell never throws away output. A program that sends "
13791379"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1382,7 +1382,7 @@ msgid ""
13821382"lines, with 300 the default."
13831383msgstr ""
13841384
1385- #: ../../library/idle.rst:768
1385+ #: ../../library/idle.rst:769
13861386msgid ""
13871387"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
13881388"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1396,7 +1396,7 @@ msgid ""
13961396"spacing behavior.) ::"
13971397msgstr ""
13981398
1399- #: ../../library/idle.rst:786
1399+ #: ../../library/idle.rst:787
14001400msgid ""
14011401"The ``repr`` function is used for interactive echo of expression values. It"
14021402" returns an altered version of the input string in which control codes, some"
@@ -1405,13 +1405,13 @@ msgid ""
14051405" regardless of how they are displayed."
14061406msgstr ""
14071407
1408- #: ../../library/idle.rst:792
1408+ #: ../../library/idle.rst:793
14091409msgid ""
14101410"Normal and error output are generally kept separate (on separate lines) from"
14111411" code input and each other. They each get different highlight colors."
14121412msgstr ""
14131413
1414- #: ../../library/idle.rst:795
1414+ #: ../../library/idle.rst:796
14151415msgid ""
14161416"For SyntaxError tracebacks, the normal '^' marking where the error was "
14171417"detected is replaced by coloring the text with an error highlight. When code"
@@ -1420,7 +1420,7 @@ msgid ""
14201420"opened if necessary."
14211421msgstr ""
14221422
1423- #: ../../library/idle.rst:801
1423+ #: ../../library/idle.rst:802
14241424msgid ""
14251425"Shell has a special facility for squeezing output lines down to a 'Squeezed "
14261426"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1430,18 +1430,18 @@ msgid ""
14301430"scrolling."
14311431msgstr ""
14321432
1433- #: ../../library/idle.rst:809
1433+ #: ../../library/idle.rst:810
14341434msgid ""
14351435"Squeezed output is expanded in place by double-clicking the label. It can "
14361436"also be sent to the clipboard or a separate view window by right-clicking "
14371437"the label."
14381438msgstr ""
14391439
1440- #: ../../library/idle.rst:814
1440+ #: ../../library/idle.rst:815
14411441msgid "Developing tkinter applications"
14421442msgstr ""
14431443
1444- #: ../../library/idle.rst:816
1444+ #: ../../library/idle.rst:817
14451445msgid ""
14461446"IDLE is intentionally different from standard Python in order to facilitate "
14471447"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1453,7 +1453,7 @@ msgid ""
14531453" visibly changes in standard Python until one enters ``root.update()``."
14541454msgstr ""
14551455
1456- #: ../../library/idle.rst:825
1456+ #: ../../library/idle.rst:826
14571457msgid ""
14581458"Most tkinter programs run ``root.mainloop()``, which usually does not return"
14591459" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1462,19 +1462,19 @@ msgid ""
14621462"with."
14631463msgstr ""
14641464
1465- #: ../../library/idle.rst:831
1465+ #: ../../library/idle.rst:832
14661466msgid ""
14671467"When running a tkinter program from an IDLE editor, one can comment out the "
14681468"mainloop call. One then gets a shell prompt immediately and can interact "
14691469"with the live application. One just has to remember to re-enable the "
14701470"mainloop call when running in standard Python."
14711471msgstr ""
14721472
1473- #: ../../library/idle.rst:837
1473+ #: ../../library/idle.rst:838
14741474msgid "Running without a subprocess"
14751475msgstr "サブプロセスを起こさずに起動する"
14761476
1477- #: ../../library/idle.rst:839
1477+ #: ../../library/idle.rst:840
14781478msgid ""
14791479"By default, IDLE executes user code in a separate subprocess via a socket, "
14801480"which uses the internal loopback interface. This connection is not "
@@ -1484,7 +1484,7 @@ msgstr ""
14841484"デフォルトでは、IDLE "
14851485"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
14861486
1487- #: ../../library/idle.rst:844
1487+ #: ../../library/idle.rst:845
14881488msgid ""
14891489"If the attempt to make the socket connection fails, Idle will notify you. "
14901490"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1493,7 +1493,7 @@ msgid ""
14931493" command line switch."
14941494msgstr ""
14951495
1496- #: ../../library/idle.rst:850
1496+ #: ../../library/idle.rst:851
14971497msgid ""
14981498"If IDLE is started with the -n command line switch it will run in a single "
14991499"process and will not create the subprocess which runs the RPC Python "
@@ -1513,15 +1513,15 @@ msgstr ""
15131513"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
15141514"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
15151515
1516- #: ../../library/idle.rst:865
1516+ #: ../../library/idle.rst:866
15171517msgid "Help and preferences"
15181518msgstr "ヘルプとお好み設定"
15191519
1520- #: ../../library/idle.rst:870
1520+ #: ../../library/idle.rst:871
15211521msgid "Help sources"
15221522msgstr ""
15231523
1524- #: ../../library/idle.rst:872
1524+ #: ../../library/idle.rst:873
15251525msgid ""
15261526"Help menu entry\" IDLE Help\" displays a formatted html version of the IDLE "
15271527"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1531,7 +1531,7 @@ msgid ""
15311531"the opened box."
15321532msgstr ""
15331533
1534- #: ../../library/idle.rst:880
1534+ #: ../../library/idle.rst:881
15351535msgid ""
15361536"Help menu entry\" Python Docs\" opens the extensive sources of help, "
15371537"including tutorials, available at ``docs.python.org/x.y``, where 'x.y' is "
@@ -1540,17 +1540,17 @@ msgid ""
15401540"instead."
15411541msgstr ""
15421542
1543- #: ../../library/idle.rst:886
1543+ #: ../../library/idle.rst:887
15441544msgid ""
15451545"Selected URLs can be added or removed from the help menu at any time using "
15461546"the General tab of the Configure IDLE dialog."
15471547msgstr ""
15481548
1549- #: ../../library/idle.rst:892
1549+ #: ../../library/idle.rst:893
15501550msgid "Setting preferences"
15511551msgstr "Setting preferences [お好み設定]"
15521552
1553- #: ../../library/idle.rst:894
1553+ #: ../../library/idle.rst:895
15541554msgid ""
15551555"The font preferences, highlighting, keys, and general preferences can be "
15561556"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1559,7 +1559,7 @@ msgid ""
15591559" or more of the files in ``.idlerc``."
15601560msgstr ""
15611561
1562- #: ../../library/idle.rst:900
1562+ #: ../../library/idle.rst:901
15631563msgid ""
15641564"On the Font tab, see the text sample for the effect of font face and size on"
15651565" multiple characters in multiple languages. Edit the sample to add other "
@@ -1568,30 +1568,30 @@ msgid ""
15681568"the top of the sample and try changing first size and then font."
15691569msgstr ""
15701570
1571- #: ../../library/idle.rst:907
1571+ #: ../../library/idle.rst:908
15721572msgid ""
15731573"On the Highlights and Keys tab, select a built-in or custom color theme and "
15741574"key set. To use a newer built-in color theme or key set with older IDLEs, "
15751575"save it as a new custom theme or key set and it well be accessible to older "
15761576"IDLEs."
15771577msgstr ""
15781578
1579- #: ../../library/idle.rst:913
1579+ #: ../../library/idle.rst:914
15801580msgid "IDLE on macOS"
15811581msgstr ""
15821582
1583- #: ../../library/idle.rst:915
1583+ #: ../../library/idle.rst:916
15841584msgid ""
15851585"Under System Preferences: Dock, one can set\" Prefer tabs when opening "
15861586"documents\" to\" Always\" . This setting is not compatible with the "
15871587"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
15881588msgstr ""
15891589
1590- #: ../../library/idle.rst:920
1590+ #: ../../library/idle.rst:921
15911591msgid "Extensions"
15921592msgstr "Extensions [拡張]"
15931593
1594- #: ../../library/idle.rst:922
1594+ #: ../../library/idle.rst:923
15951595msgid ""
15961596"IDLE contains an extension facility. Preferences for extensions can be "
15971597"changed with the Extensions tab of the preferences dialog. See the beginning"