Skip to content

Commit 68e261c

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent e7e4d81 commit 68e261c

File tree

8 files changed

+7052
-6997
lines changed

8 files changed

+7052
-6997
lines changed

faq/windows.po

+4-9
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.9\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
17+
"POT-Creation-Date: 2020-10-20 04:23+0000\n"
1818
"PO-Revision-Date: 2017-02-16 17:43+0000\n"
1919
"Last-Translator: tomo, 2018\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -205,15 +205,12 @@ msgstr "どうすれば Python スクリプトを EXE に出来ますか?"
205205

206206
#: ../../faq/windows.rst:143
207207
msgid ""
208-
"See `cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/>`_ for a "
208+
"See `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ for a "
209209
"distutils extension that allows you to create console and GUI executables "
210210
"from Python code. `py2exe <http://www.py2exe.org/>`_, the most popular "
211211
"extension for building Python 2.x-based executables, does not yet support "
212212
"Python 3 but a version that does is in development."
213213
msgstr ""
214-
"`cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/>`_ を参照して、 Python コードからコンソール、GUI の実行可能ファイルを作れるようにする distutils の拡張を調べてください。\n"
215-
"`py2exe <http://www.py2exe.org/>`_ は最も有名な Python 2.x-ベースの EXE を作る拡張です。\n"
216-
"これは Python 3 をまだサポートしていませんが、開発中です。"
217214

218215
#: ../../faq/windows.rst:151
219216
msgid "Is a ``*.pyd`` file the same as a DLL?"
@@ -449,9 +446,7 @@ msgstr "ブロックすることなく押鍵を検出するにはどうします
449446

450447
#: ../../faq/windows.rst:282
451448
msgid ""
452-
"Use the msvcrt module. This is a standard Windows-specific extension "
453-
"module. It defines a function ``kbhit()`` which checks whether a keyboard "
449+
"Use the :mod:`msvcrt` module. This is a standard Windows-specific extension"
450+
" module. It defines a function ``kbhit()`` which checks whether a keyboard "
454451
"hit is present, and ``getch()`` which gets one character without echoing it."
455452
msgstr ""
456-
"msvcrt モジュールを使ってください。これは標準の Windows 専用拡張モジュールです。これはキーボードが打たれているかを調べる関数 "
457-
"``kbhit()`` と、反響することなく一文字を得る ``getch()`` を定義します。"

library/ast.po

+42-14
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.9\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2020-08-12 03:50+0000\n"
20+
"POT-Creation-Date: 2020-10-20 04:23+0000\n"
2121
"PO-Revision-Date: 2017-02-16 17:48+0000\n"
2222
"Last-Translator: Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020\n"
2323
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1128,79 +1128,107 @@ msgid "Added the *indent* option."
11281128
msgstr ""
11291129

11301130
#: ../../library/ast.rst:1759
1131+
msgid "Compiler Flags"
1132+
msgstr ""
1133+
1134+
#: ../../library/ast.rst:1761
1135+
msgid ""
1136+
"The following flags may be passed to :func:`compile` in order to change "
1137+
"effects on the compilation of a program:"
1138+
msgstr ""
1139+
1140+
#: ../../library/ast.rst:1766
1141+
msgid ""
1142+
"Enables support for top-level ``await``, ``async for``, ``async with`` and "
1143+
"async comprehensions."
1144+
msgstr ""
1145+
1146+
#: ../../library/ast.rst:1773
1147+
msgid ""
1148+
"Generates and returns an abstract syntax tree instead of returning a "
1149+
"compiled code object."
1150+
msgstr ""
1151+
1152+
#: ../../library/ast.rst:1778
1153+
msgid ""
1154+
"Enables support for :pep:`484` and :pep:`526` style type comments (``# type:"
1155+
" <type>``, ``# type: ignore <stuff>``)."
1156+
msgstr ""
1157+
1158+
#: ../../library/ast.rst:1787
11311159
msgid "Command-Line Usage"
11321160
msgstr "コマンドラインからの使用"
11331161

1134-
#: ../../library/ast.rst:1763
1162+
#: ../../library/ast.rst:1791
11351163
msgid ""
11361164
"The :mod:`ast` module can be executed as a script from the command line. It "
11371165
"is as simple as:"
11381166
msgstr ""
11391167

1140-
#: ../../library/ast.rst:1770
1168+
#: ../../library/ast.rst:1798
11411169
msgid "The following options are accepted:"
11421170
msgstr "以下のオプションが使用できます:"
11431171

1144-
#: ../../library/ast.rst:1776
1172+
#: ../../library/ast.rst:1804
11451173
msgid "Show the help message and exit."
11461174
msgstr ""
11471175

1148-
#: ../../library/ast.rst:1781
1176+
#: ../../library/ast.rst:1809
11491177
msgid ""
11501178
"Specify what kind of code must be compiled, like the *mode* argument in "
11511179
":func:`parse`."
11521180
msgstr ""
11531181

1154-
#: ../../library/ast.rst:1786
1182+
#: ../../library/ast.rst:1814
11551183
msgid "Don't parse type comments."
11561184
msgstr ""
11571185

1158-
#: ../../library/ast.rst:1790
1186+
#: ../../library/ast.rst:1818
11591187
msgid "Include attributes such as line numbers and column offsets."
11601188
msgstr ""
11611189

1162-
#: ../../library/ast.rst:1795
1190+
#: ../../library/ast.rst:1823
11631191
msgid "Indentation of nodes in AST (number of spaces)."
11641192
msgstr ""
11651193

1166-
#: ../../library/ast.rst:1797
1194+
#: ../../library/ast.rst:1825
11671195
msgid ""
11681196
"If :file:`infile` is specified its contents are parsed to AST and dumped to "
11691197
"stdout. Otherwise, the content is read from stdin."
11701198
msgstr ""
11711199

1172-
#: ../../library/ast.rst:1803
1200+
#: ../../library/ast.rst:1831
11731201
msgid ""
11741202
"`Green Tree Snakes <https://greentreesnakes.readthedocs.io/>`_, an external "
11751203
"documentation resource, has good details on working with Python ASTs."
11761204
msgstr ""
11771205
"外部ドキュメント `Green Tree Snakes <https://greentreesnakes.readthedocs.io/>`_ には "
11781206
"Python AST についての詳細が書かれています。"
11791207

1180-
#: ../../library/ast.rst:1806
1208+
#: ../../library/ast.rst:1834
11811209
msgid ""
11821210
"`ASTTokens <https://asttokens.readthedocs.io/en/latest/user-guide.html>`_ "
11831211
"annotates Python ASTs with the positions of tokens and text in the source "
11841212
"code that generated them. This is helpful for tools that make source code "
11851213
"transformations."
11861214
msgstr ""
11871215

1188-
#: ../../library/ast.rst:1811
1216+
#: ../../library/ast.rst:1839
11891217
msgid ""
11901218
"`leoAst.py <http://leoeditor.com/appendices.html#leoast-py>`_ unifies the "
11911219
"token-based and parse-tree-based views of python programs by inserting two-"
11921220
"way links between tokens and ast nodes."
11931221
msgstr ""
11941222

1195-
#: ../../library/ast.rst:1815
1223+
#: ../../library/ast.rst:1843
11961224
msgid ""
11971225
"`LibCST <https://libcst.readthedocs.io/>`_ parses code as a Concrete Syntax "
11981226
"Tree that looks like an ast tree and keeps all formatting details. It's "
11991227
"useful for building automated refactoring (codemod) applications and "
12001228
"linters."
12011229
msgstr ""
12021230

1203-
#: ../../library/ast.rst:1820
1231+
#: ../../library/ast.rst:1848
12041232
msgid ""
12051233
"`Parso <https://parso.readthedocs.io>`_ is a Python parser that supports "
12061234
"error recovery and round-trip parsing for different Python versions (in "

0 commit comments

Comments
 (0)