@@ -17,7 +17,7 @@ msgid ""
17
17
msgstr ""
18
18
"Project-Id-Version : Python 3.9\n "
19
19
"Report-Msgid-Bugs-To : \n "
20
- "POT-Creation-Date : 2024-04-15 06:01 +0000\n "
20
+ "POT-Creation-Date : 2024-04-19 21:47 +0000\n "
21
21
"PO-Revision-Date : 2017-02-16 17:40+0000\n "
22
22
"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
23
23
"Language-Team : Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -41,6 +41,8 @@ msgid ""
41
41
"and other APIs, makes the API consistent across different Python versions, "
42
42
"and is hence recommended over using ``distutils`` directly."
43
43
msgstr ""
44
+ "``setuptools`` 项目为 ``setup`` 函数和其他 API 添加了新的功能,使得 API 在不同 Python "
45
+ "版本间保持一致,因此推荐以它来取代直接使用 ``distutils``。"
44
46
45
47
#: ../../distutils/_setuptools_disclaimer.rst:3
46
48
msgid ""
@@ -72,13 +74,13 @@ msgstr ""
72
74
msgid ""
73
75
"The basic do-everything function that does most everything you could ever "
74
76
"ask for from a Distutils method."
75
- msgstr ""
77
+ msgstr "基本的包办一切的函数,它完成了您可以从Distutils方法中请求的大部分事情。 "
76
78
77
79
#: ../../distutils/apiref.rst:36
78
80
msgid ""
79
81
"The setup function takes a large number of arguments. These are laid out in "
80
82
"the following table."
81
- msgstr ""
83
+ msgstr "setup函数接受大量参数。这些都列在下表中。 "
82
84
83
85
#: ../../distutils/apiref.rst:42 ../../distutils/apiref.rst:185
84
86
msgid "argument name"
@@ -153,14 +155,15 @@ msgstr "包的作者的电子邮件"
153
155
154
156
#: ../../distutils/apiref.rst:61
155
157
msgid "*maintainer*"
156
- msgstr "*维护者 *"
158
+ msgstr "*maintainer *"
157
159
158
160
#: ../../distutils/apiref.rst:61
159
161
msgid ""
160
162
"The name of the current maintainer, if different from the author. Note that "
161
163
"if the maintainer is provided, distutils will use it as the author in "
162
164
":file:`PKG-INFO`"
163
165
msgstr ""
166
+ "当前维护者的名字,如果与作者不同的话。 请注意,如果提供了维护者,distutils 将使用它作为 :file:`PKG-INFO` 中的作者。"
164
167
165
168
#: ../../distutils/apiref.rst:68
166
169
msgid "*maintainer_email*"
@@ -169,7 +172,7 @@ msgstr "*maintainer_email*"
169
172
#: ../../distutils/apiref.rst:68
170
173
msgid ""
171
174
"The email address of the current maintainer, if different from the author"
172
- msgstr "当前维护者的电子邮件地址,如果不同与作者 "
175
+ msgstr "当前维护者的电子邮件地址(如果与作者不同) "
173
176
174
177
#: ../../distutils/apiref.rst:72
175
178
msgid "*url*"
@@ -193,7 +196,7 @@ msgstr "*packages*"
193
196
194
197
#: ../../distutils/apiref.rst:77
195
198
msgid "A list of Python packages that distutils will manipulate"
196
- msgstr ""
199
+ msgstr "distutils将操作的Python软件包的列表 "
197
200
198
201
#: ../../distutils/apiref.rst:77 ../../distutils/apiref.rst:80
199
202
#: ../../distutils/apiref.rst:83 ../../distutils/apiref.rst:100
@@ -339,7 +342,7 @@ msgstr "*package_dir*"
339
342
340
343
#: ../../distutils/apiref.rst:119
341
344
msgid "A mapping of package to directory names"
342
- msgstr "一个从包到目录名称的映射 "
345
+ msgstr "包到目录名的映射 "
343
346
344
347
#: ../../distutils/apiref.rst:127
345
348
msgid ""
@@ -349,6 +352,8 @@ msgid ""
349
352
"keyword args from *script* to :func:`setup`), or the contents of the config"
350
353
" files or command-line."
351
354
msgstr ""
355
+ "在某种程度上受控制的环境中运行一个安装脚本,并返回驱动程序的 :class:`distutils.dist.Distribution` 实例。 "
356
+ "如果你需要查找分发元数据 (作为关键字 args 从 *script* 传递到 :func:`setup`),或者配置文件或命令行的内容,这将非常有用。"
352
357
353
358
#: ../../distutils/apiref.rst:133
354
359
msgid ""
@@ -357,11 +362,14 @@ msgid ""
357
362
" *script_args* is a list of strings; if supplied, ``sys.argv[1:]`` will be "
358
363
"replaced by *script_args* for the duration of the call."
359
364
msgstr ""
365
+ "*script_name* 是一个将使用 :func:`exec` 读取和运行的文件。在调用期间,``sys.argv[0]`` 将被替换为 "
366
+ "*script*。 *script_args* 是一个字符串列表;如果提供了 ``sys.argv[1:]``,则在调用期间将被 "
367
+ "*script_args* 替换。"
360
368
361
369
#: ../../distutils/apiref.rst:138
362
370
msgid ""
363
371
"*stop_after* tells :func:`setup` when to stop processing; possible values:"
364
- msgstr ""
372
+ msgstr "*stop_after* 告诉 :func:`setup` 何时停止处理;可能的值有: "
365
373
366
374
#: ../../distutils/apiref.rst:143 ../../distutils/apiref.rst:562
367
375
#: ../../distutils/apiref.rst:1601
@@ -418,10 +426,11 @@ msgstr ""
418
426
msgid ""
419
427
":class:`~distutils.extension.Extension` from :mod:`distutils.extension`"
420
428
msgstr ""
429
+ "来自 :mod:`distutils.extension` 的 :class:`~distutils.extension.Extension`"
421
430
422
431
#: ../../distutils/apiref.rst:169
423
432
msgid ":class:`~distutils.cmd.Command` from :mod:`distutils.cmd`"
424
- msgstr ""
433
+ msgstr "来自 :mod:`distutils.cmd` 的 :class:`~distutils.cmd.Command` "
425
434
426
435
#: ../../distutils/apiref.rst:171
427
436
msgid ":class:`~distutils.dist.Distribution` from :mod:`distutils.dist`"
@@ -1220,15 +1229,15 @@ msgstr ""
1220
1229
1221
1230
#: ../../distutils/apiref.rst:812
1222
1231
msgid "macros defined with :option:`!-Dname[=value]`"
1223
- msgstr "使用 :option:`!-Dname[=value]` 定义的宏"
1232
+ msgstr "通过 :option:`!-Dname[=value]` 定义的宏"
1224
1233
1225
1234
#: ../../distutils/apiref.rst:814
1226
1235
msgid "macros undefined with :option:`!-Uname`"
1227
- msgstr "使用 :option:`!-Uname` 取消定义的宏"
1236
+ msgstr "通过 :option:`!-Uname` 取消定义的宏"
1228
1237
1229
1238
#: ../../distutils/apiref.rst:816
1230
1239
msgid "include search directories specified with :option:`!-Idir`"
1231
- msgstr "包括使用 :option:`!-Idir` 指定的搜索目录"
1240
+ msgstr "包括通过 :option:`!-Idir` 指定的搜索目录"
1232
1241
1233
1242
#: ../../distutils/apiref.rst:818
1234
1243
msgid "libraries specified with :option:`!-llib`"
0 commit comments