Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbc5f257

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent1790aef commitbc5f257

File tree

4 files changed

+5661
-5643
lines changed

4 files changed

+5661
-5643
lines changed

‎library/idle.po

Lines changed: 51 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version:Python 3.8\n"
1818
"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"
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"
@@ -1301,33 +1301,35 @@ msgstr ""
13011301
#:../../library/idle.rst:683
13021302
msgid""
13031303
"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."
13071308
msgstr""
13081309

1309-
#:../../library/idle.rst:688
1310+
#:../../library/idle.rst:689
13101311
msgid""
13111312
"When IDLE first starts, it attempts to read user configuration files in "
13121313
"``~/.idlerc/`` (~ is one's home directory). If there is a problem, an error"
13131314
" 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."
13171319
msgstr""
13181320

1319-
#:../../library/idle.rst:695
1321+
#:../../library/idle.rst:697
13201322
msgid""
13211323
"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+
"startingitfrom a consoleor terminal(``python -m idlelib``) and see if "
1325+
"this results in an error message."
13241326
msgstr""
13251327

1326-
#:../../library/idle.rst:699
1328+
#:../../library/idle.rst:702
13271329
msgid"Running user code"
13281330
msgstr""
13291331

1330-
#:../../library/idle.rst:701
1332+
#:../../library/idle.rst:704
13311333
msgid""
13321334
"With rare exceptions, the result of executing Python code with IDLE is "
13331335
"intended to be the same as executing the same code by the default method, "
@@ -1337,7 +1339,7 @@ msgid ""
13371339
"``threading.activeCount()`` returns 2 instead of 1."
13381340
msgstr""
13391341

1340-
#:../../library/idle.rst:708
1342+
#:../../library/idle.rst:711
13411343
msgid""
13421344
"By default, IDLE runs user code in a separate OS process rather than in the "
13431345
"user interface process that runs the shell and editor. In the execution "
@@ -1347,15 +1349,15 @@ msgid ""
13471349
"``sys.__stderr__`` are not touched, but may be ``None``."
13481350
msgstr""
13491351

1350-
#:../../library/idle.rst:715
1352+
#:../../library/idle.rst:718
13511353
msgid""
13521354
"When Shell has the focus, it controls the keyboard and screen. This is "
13531355
"normally transparent, but functions that directly access the keyboard and "
13541356
"screen will not work. These include system-specific functions that "
13551357
"determine whether a key has been pressed and if so, which."
13561358
msgstr""
13571359

1358-
#:../../library/idle.rst:720
1360+
#:../../library/idle.rst:723
13591361
msgid""
13601362
"IDLE's standard stream replacements are not inherited by subprocesses "
13611363
"created in the execution process, whether directly by user code or by "
@@ -1365,32 +1367,32 @@ msgid ""
13651367
" attached to that window for input and output."
13661368
msgstr""
13671369

1368-
#:../../library/idle.rst:727
1370+
#:../../library/idle.rst:730
13691371
msgid""
13701372
"The IDLE code running in the execution process adds frames to the call stack"
13711373
" that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
13721374
"and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
13731375
"frames."
13741376
msgstr""
13751377

1376-
#:../../library/idle.rst:731
1378+
#:../../library/idle.rst:734
13771379
msgid""
13781380
"If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
13791381
"IDLE's changes are lost and input from the keyboard and output to the screen"
13801382
" will not work correctly."
13811383
msgstr""
13821384

1383-
#:../../library/idle.rst:735
1385+
#:../../library/idle.rst:738
13841386
msgid""
13851387
"When user code raises SystemExit either directly or by calling sys.exit, "
13861388
"IDLE returns to a Shell prompt instead of exiting."
13871389
msgstr""
13881390

1389-
#:../../library/idle.rst:739
1391+
#:../../library/idle.rst:742
13901392
msgid"User output in Shell"
13911393
msgstr""
13921394

1393-
#:../../library/idle.rst:741
1395+
#:../../library/idle.rst:744
13941396
msgid""
13951397
"When a program outputs text, the result is determined by the corresponding "
13961398
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1400,7 +1402,7 @@ msgid ""
14001402
"rather than production runs."
14011403
msgstr""
14021404

1403-
#:../../library/idle.rst:748
1405+
#:../../library/idle.rst:751
14041406
msgid""
14051407
"For instance, Shell never throws away output. A program that sends "
14061408
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1409,7 +1411,7 @@ msgid ""
14091411
"lines, with 300 the default."
14101412
msgstr""
14111413

1412-
#:../../library/idle.rst:754
1414+
#:../../library/idle.rst:757
14131415
msgid""
14141416
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
14151417
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1423,7 +1425,7 @@ msgid ""
14231425
"spacing behavior.) ::"
14241426
msgstr""
14251427

1426-
#:../../library/idle.rst:772
1428+
#:../../library/idle.rst:775
14271429
msgid""
14281430
"The ``repr`` function is used for interactive echo of expression values. It"
14291431
" returns an altered version of the input string in which control codes, some"
@@ -1432,13 +1434,13 @@ msgid ""
14321434
" regardless of how they are displayed."
14331435
msgstr""
14341436

1435-
#:../../library/idle.rst:778
1437+
#:../../library/idle.rst:781
14361438
msgid""
14371439
"Normal and error output are generally kept separate (on separate lines) from"
14381440
" code input and each other. They each get different highlight colors."
14391441
msgstr""
14401442

1441-
#:../../library/idle.rst:781
1443+
#:../../library/idle.rst:784
14421444
msgid""
14431445
"For SyntaxError tracebacks, the normal '^' marking where the error was "
14441446
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1447,7 +1449,7 @@ msgid ""
14471449
"opened if necessary."
14481450
msgstr""
14491451

1450-
#:../../library/idle.rst:787
1452+
#:../../library/idle.rst:790
14511453
msgid""
14521454
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
14531455
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1457,18 +1459,18 @@ msgid ""
14571459
"scrolling."
14581460
msgstr""
14591461

1460-
#:../../library/idle.rst:795
1462+
#:../../library/idle.rst:798
14611463
msgid""
14621464
"Squeezed output is expanded in place by double-clicking the label. It can "
14631465
"also be sent to the clipboard or a separate view window by right-clicking "
14641466
"the label."
14651467
msgstr""
14661468

1467-
#:../../library/idle.rst:800
1469+
#:../../library/idle.rst:803
14681470
msgid"Developing tkinter applications"
14691471
msgstr""
14701472

1471-
#:../../library/idle.rst:802
1473+
#:../../library/idle.rst:805
14721474
msgid""
14731475
"IDLE is intentionally different from standard Python in order to facilitate "
14741476
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1480,7 +1482,7 @@ msgid ""
14801482
" visibly changes in standard Python until one enters ``root.update()``."
14811483
msgstr""
14821484

1483-
#:../../library/idle.rst:811
1485+
#:../../library/idle.rst:814
14841486
msgid""
14851487
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
14861488
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1489,19 +1491,19 @@ msgid ""
14891491
"with."
14901492
msgstr""
14911493

1492-
#:../../library/idle.rst:817
1494+
#:../../library/idle.rst:820
14931495
msgid""
14941496
"When running a tkinter program from an IDLE editor, one can comment out the "
14951497
"mainloop call. One then gets a shell prompt immediately and can interact "
14961498
"with the live application. One just has to remember to re-enable the "
14971499
"mainloop call when running in standard Python."
14981500
msgstr""
14991501

1500-
#:../../library/idle.rst:823
1502+
#:../../library/idle.rst:826
15011503
msgid"Running without a subprocess"
15021504
msgstr"サブプロセスを起こさずに起動する"
15031505

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

1514-
#:../../library/idle.rst:830
1516+
#:../../library/idle.rst:833
15151517
msgid""
15161518
"If the attempt to make the socket connection fails, Idle will notify you. "
15171519
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1520,7 +1522,7 @@ msgid ""
15201522
" command line switch."
15211523
msgstr""
15221524

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

1543-
#:../../library/idle.rst:851
1545+
#:../../library/idle.rst:854
15441546
msgid"Help and preferences"
15451547
msgstr"ヘルプとお好み設定"
15461548

1547-
#:../../library/idle.rst:856
1549+
#:../../library/idle.rst:859
15481550
msgid"Help sources"
15491551
msgstr""
15501552

1551-
#:../../library/idle.rst:858
1553+
#:../../library/idle.rst:861
15521554
msgid""
15531555
"Help menu entry\"IDLE Help\" displays a formatted html version of the IDLE "
15541556
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1558,7 +1560,7 @@ msgid ""
15581560
"the opened box."
15591561
msgstr""
15601562

1561-
#:../../library/idle.rst:866
1563+
#:../../library/idle.rst:869
15621564
msgid""
15631565
"Help menu entry\"Python Docs\" opens the extensive sources of help, "
15641566
"including tutorials, available at ``docs.python.org/x.y``, where 'x.y' is "
@@ -1567,17 +1569,17 @@ msgid ""
15671569
"instead."
15681570
msgstr""
15691571

1570-
#:../../library/idle.rst:872
1572+
#:../../library/idle.rst:875
15711573
msgid""
15721574
"Selected URLs can be added or removed from the help menu at any time using "
15731575
"the General tab of the Configure IDLE dialog."
15741576
msgstr""
15751577

1576-
#:../../library/idle.rst:878
1578+
#:../../library/idle.rst:881
15771579
msgid"Setting preferences"
15781580
msgstr"Setting preferences [お好み設定]"
15791581

1580-
#:../../library/idle.rst:880
1582+
#:../../library/idle.rst:883
15811583
msgid""
15821584
"The font preferences, highlighting, keys, and general preferences can be "
15831585
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1586,7 +1588,7 @@ msgid ""
15861588
" or more of the files in ``.idlerc``."
15871589
msgstr""
15881590

1589-
#:../../library/idle.rst:886
1591+
#:../../library/idle.rst:889
15901592
msgid""
15911593
"On the Font tab, see the text sample for the effect of font face and size on"
15921594
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1595,30 +1597,30 @@ msgid ""
15951597
"the top of the sample and try changing first size and then font."
15961598
msgstr""
15971599

1598-
#:../../library/idle.rst:893
1600+
#:../../library/idle.rst:896
15991601
msgid""
16001602
"On the Highlights and Keys tab, select a built-in or custom color theme and "
16011603
"key set. To use a newer built-in color theme or key set with older IDLEs, "
16021604
"save it as a new custom theme or key set and it well be accessible to older "
16031605
"IDLEs."
16041606
msgstr""
16051607

1606-
#:../../library/idle.rst:899
1608+
#:../../library/idle.rst:902
16071609
msgid"IDLE on macOS"
16081610
msgstr""
16091611

1610-
#:../../library/idle.rst:901
1612+
#:../../library/idle.rst:904
16111613
msgid""
16121614
"Under System Preferences: Dock, one can set\"Prefer tabs when opening "
16131615
"documents\" to\"Always\". This setting is not compatible with the "
16141616
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
16151617
msgstr""
16161618

1617-
#:../../library/idle.rst:906
1619+
#:../../library/idle.rst:909
16181620
msgid"Extensions"
16191621
msgstr"Extensions [拡張]"
16201622

1621-
#:../../library/idle.rst:908
1623+
#:../../library/idle.rst:911
16221624
msgid""
16231625
"IDLE contains an extension facility. Preferences for extensions can be "
16241626
"changed with the Extensions tab of the preferences dialog. See the beginning"

‎library/pathlib.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version:Python 3.8\n"
1919
"Report-Msgid-Bugs-To:\n"
20-
"POT-Creation-Date:2020-02-09 12:40+0000\n"
20+
"POT-Creation-Date:2020-03-06 12:53+0000\n"
2121
"PO-Revision-Date:2017-02-16 23:21+0000\n"
2222
"Last-Translator:tomo, 2018\n"
2323
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -541,9 +541,10 @@ msgstr ""
541541

542542
#:../../library/pathlib.rst:675
543543
msgid""
544-
"Return information about this path (similarly to :func:`os.stat`). The "
545-
"result is looked up at each call to this method."
546-
msgstr"(:func:`os.stat` と同様の) 現在のパスに関する情報を返します。値はそれぞれのメソッドを呼び出した時点のものになります。"
544+
"Return a :class:`os.stat_result` object containing information about this "
545+
"path, like :func:`os.stat`. The result is looked up at each call to this "
546+
"method."
547+
msgstr""
547548

548549
#:../../library/pathlib.rst:689
549550
msgid"Change the file mode and permissions, like :func:`os.chmod`::"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp