8000 [po] auto sync · python/python-docs-zh-cn@a3f9328 · GitHub
[go: up one dir, main page]

Skip to content

Commit a3f9328

Browse files
[po] auto sync
1 parent 55a21db commit a3f9328

File tree

6 files changed

+904
-767
lines changed

6 files changed

+904
-767
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "81.18%", "updated_at": "2025-03-28T04:55:56Z"}
1+
{"translation": "81.06%", "updated_at": "2025-03-28T14:55:36Z"}

howto/perf_profiling.po

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-09-27 14:17+0000\n"
14+
"POT-Creation-Date: 2025-03-28 14:18+0000\n"
1515
"PO-Revision-Date: 2023-05-24 13:07+0000\n"
1616
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -327,23 +327,19 @@ msgstr "示例,使用环境变量::"
327327

328328
#: ../../howto/perf_profiling.rst:165
329329
msgid ""
330-
"$ PYTHONPERFSUPPORT=1 perf record -F 9999 -g -o perf.data python script.py\n"
330+
"$ PYTHONPERFSUPPORT=1 perf record -F 9999 -g -o perf.data python my_script.py\n"
331331
"$ perf report -g -i perf.data"
332332
msgstr ""
333-
"$ PYTHONPERFSUPPORT=1 perf record -F 9999 -g -o perf.data python script.py\n"
334-
"$ perf report -g -i perf.data"
335333

336334
#: ../../howto/perf_profiling.rst:168
337335
msgid "Example, using the :option:`!-X` option::"
338336
msgstr "示例,使用 :option:`!-X` 选项::"
339337

340338
#: ../../howto/perf_profiling.rst:170
341339
msgid ""
342-
"$ perf record -F 9999 -g -o perf.data python -X perf script.py\n"
340+
"$ perf record -F 9999 -g -o perf.data python -X perf my_script.py\n"
343341
"$ perf report -g -i perf.data"
344342
msgstr ""
345-
"$ perf record -F 9999 -g -o perf.data python -X perf script.py\n"
346-
"$ perf report -g -i perf.data"
347343

348344
#: ../../howto/perf_profiling.rst:173
349345
msgid "Example, using the :mod:`sys` APIs in file :file:`example.py`:"
@@ -468,13 +464,10 @@ msgstr ""
468464

469465
#: ../../howto/perf_profiling.rst:239
470466
msgid ""
471-
"$ perf record -F 9999 -g --call-graph dwarf -o perf.data python -Xperf_jit my_script.py\n"
467+
"$ perf record -F 9999 -g -k 1 --call-graph dwarf -o perf.data python -Xperf_jit my_script.py\n"
472468
"$ perf inject -i perf.data --jit --output perf.jit.data\n"
473469
"$ perf report -g -i perf.jit.data"
474470
msgstr ""
475-
"$ perf record -F 9999 -g --call-graph dwarf -o perf.data python -Xperf_jit my_script.py\n"
476-
"$ perf inject -i perf.data --jit --output perf.jit.data\n"
477-
"$ perf report -g -i perf.jit.data"
478471

479472
#: ../../howto/perf_profiling.rst:243
480473
msgid "or using the environment variable::"

library/importlib.metadata.po

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2025-03-07 14:18+0000\n"
18+
"POT-Creation-Date: 2025-03-28 14:18+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:08+0000\n"
2020
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2025\n"
2121
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -744,15 +744,10 @@ msgid ""
744744
"class. :class:`!Distribution` is an abstract object that represents the "
745745
"metadata for a Python `Distribution Package "
746746
"<https://packaging.python.org/en/latest/glossary/#term-Distribution-"
747-
"Package>`_. You can get the concreate :class:`!Distribution` subclass "
747+
"Package>`_. You can get the concrete :class:`!Distribution` subclass "
748748
"instance for an installed distribution package by calling the "
749749
":func:`distribution` function::"
750750
msgstr ""
751-
"虽然上面描述的模块级 API 是最常见且便捷的用法,但你也可以从 :class:`!Distribution` 类获取所有信息。 "
752-
":class:`!Distribution` 是一个代表 Python `分发包 "
753-
"<https://packaging.python.org/en/latest/glossary/#term-Distribution-"
754-
"Package>`_ 元数据的抽象对象。 你可以通过调用 :func:`distribution` 函数来获取对应于某个已安装分发包的具体 "
755-
":class:`!Distribution` 子类实例::"
756751

757752
#: ../../library/importlib.metadata.rst:428
758753
msgid ""

0 commit comments

Comments
 (0)
0