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

Commit69f1799

Browse files
[po] auto sync
1 parent08bd1e7 commit69f1799

File tree

15 files changed

+181
-118
lines changed

15 files changed

+181
-118
lines changed

‎.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation":"94.34%","updated_at":"2024-10-13T15:38:46Z"}
1+
{"translation":"94.35%","updated_at":"2024-11-26T13:21:47Z"}

‎c-api/sys.po

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.11\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2024-04-19 16:58+0000\n"
14+
"POT-Creation-Date:2024-11-12 09:45+0000\n"
1515
"PO-Revision-Date:2023-05-24 02:09+0000\n"
1616
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -552,12 +552,6 @@ msgstr ""
552552
"请参阅 :pep:`578` 了解有关审计的详细描述。 在运行时和标准库中会引发审计事件的函数清单见 :ref:`审计事件表 <audit-"
553553
"events>`。 更多细节见每个函数的文档。"
554554

555-
#:../../c-api/sys.rst:393
556-
msgid""
557-
"Raises an :ref:`auditing event <auditing>` ``sys.addaudithook`` with no "
558-
"arguments."
559-
msgstr" "
560-
561555
#:../../c-api/sys.rst:395
562556
msgid""
563557
"If the interpreter is initialized, this function raises an auditing event "

‎extending/extending.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.11\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-04-19 16:58+0000\n"
15+
"POT-Creation-Date:2024-11-12 09:45+0000\n"
1616
"PO-Revision-Date:2023-05-24 02:10+0000\n"
1717
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1818
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -66,7 +66,7 @@ msgid ""
6666
msgstr""
6767
"C扩展接口特指CPython,扩展模块无法在其他Python实现上工作。在大多数情况下,应该避免写C扩展,来保持可移植性。举个例子,如果你的用例调用了C库或系统调用,你应该考虑使用"
6868
" :mod:`ctypes` 模块或 `cffi <https://cffi.readthedocs.io/>`_ "
69-
"库,而不是自己写C代码。这些模块允许你写Python代码来接口C代码,而且可移植性更好。不知为何编译失败了。"
69+
"库,而不是自己写C代码。这些模块允许你写Python代码来接口C代码,并且相较于编写和编译C扩展模块,该方法在不同Python实现之间具有更高的可移植性。"
7070

7171
#:../../extending/extending.rst:40
7272
msgid"A Simple Example"

‎faq/design.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
87
# Freesand Leo <yuqinju@163.com>, 2024
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
99
#
1010
#,fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.11\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-05-03 16:27+0000\n"
15+
"POT-Creation-Date:2024-11-01 15:27+0000\n"
1616
"PO-Revision-Date:2023-05-24 02:10+0000\n"
17-
"Last-Translator:Freesand Leo <yuqinju@163.com>, 2024\n"
17+
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1818
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1919
"MIME-Version:1.0\n"
2020
"Content-Type:text/plain; charset=UTF-8\n"
@@ -480,8 +480,8 @@ msgid ""
480480
"(which is exactly the same type of object that a lambda expression yields) "
481481
"is assigned!"
482482
msgstr""
483-
"函数已经是 Python 中的第一等对象,最可在局部作用域中声明。 因此使用 lambda 而非局部定义函数的唯一优点是你不需要为函数指定名称 --"
484-
"但那只是一个被赋值为函数对象(它的类型与 lambda 表达式所产生的对象完全相同)的局部变量!"
483+
"函数已经是 Python 中的第一等对象,并且可以在局部作用域中声明。 因此使用 lambda 而非局部定义函数的唯一优点是你不需要为函数指定名称 --"
484+
"但那只是一个被赋值为函数对象(它的类型与 lambda 表达式所产生的对象完全相同)的局部变量!"
485485

486486
#:../../faq/design.rst:327
487487
msgid"Can Python be compiled to machine code, C or some other language?"

‎library/idle.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.11\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2024-03-1516:48+0000\n"
14+
"POT-Creation-Date:2024-11-1515:27+0000\n"
1515
"PO-Revision-Date:2023-05-24 02:16+0000\n"
1616
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -1541,7 +1541,7 @@ msgid ""
15411541
"text cursor through such output with arrow keys may exhibit some surprising "
15421542
"spacing behavior.) ::"
15431543
msgstr""
1544-
"IDLE 的 Shell 所使用的 Tk Text 部件可显示的字符 (码位) 为 Unicode 的 BMP (基本多语言平面) 子集。 "
1544+
"IDLE 的 Shell 所使用的 Tk Text 部件可显示的字符 (码位) 为 Unicode 的 BMP (基本多语言平面) 子集。 "
15451545
"具体哪些字符会显示为正确的字形而哪些会以方框代替取决于操作系统和所安装的字体。 制表符会使之后的文本从下一个制表位开始。 (每 8 个 '字符' "
15461546
"对应一个制表位)。 换行符会使之后的文本开始新的一行。 其他控制符会被忽略或是显示为空格、方框或其他形式,具体取决于操作系统和字体。 "
15471547
"(使用方向键在这样的输出中移动文本光标有可能让显示间距发生怪异的变化。) ::"

‎library/index.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.11\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2024-07-1215:17+0000\n"
14+
"POT-Creation-Date:2024-11-1209:45+0000\n"
1515
"PO-Revision-Date:2023-05-24 02:16+0000\n"
1616
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -70,5 +70,5 @@ msgid ""
7070
" packages and entire application development frameworks), available from the"
7171
" `Python Package Index <https://pypi.org>`_."
7272
msgstr""
73-
"在标准库以外,还存在成千上万并且不断增加的其他组件集(从单独的程序和模块到软件包以及完整的应用程序开发框架),这些组件集可以从`Python 包索引 "
73+
"在标准库以外,还存在成千上万并且不断增加的其他组件集(从单独的程序和模块到软件包以及完整的应用程序开发框架),这些组件集可以从`Python 包索引 "
7474
"<https://pypi.org>`_ 获取。"

‎library/math.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.11\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2024-03-15 16:48+0000\n"
14+
"POT-Creation-Date:2024-11-08 15:21+0000\n"
1515
"PO-Revision-Date:2023-05-24 02:17+0000\n"
1616
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -43,7 +43,7 @@ msgid ""
4343
" can determine how and why it was generated in the first place."
4444
msgstr""
4545
"这些函数不适用于复数;如果你需要计算复数,请使用 :mod:`cmath` "
46-
"模块中的同名函数。将支持计算复数的函数区分开的目的,来自于大多数开发者并不愿意像数学家一样需要学习复数的概念。得到一个异常而不是一个复数结果使得开发者能够更早地监测到传递给这些函数的参数中包含复数,进而调查其产生的原因。"
46+
"模块中的同名函数。将支持计算复数的函数区分开的目的,在于大多数用户并不愿意为了理解复数而去学习太多数学知识。得到一个异常而不是一个复数结果能让复数当作参数的情况更早被监测到,进而程序员可以第一时间调查其产生的原因。"
4747

4848
#:../../library/math.rst:25
4949
msgid""
@@ -744,8 +744,8 @@ msgid ""
744744
"from one would cause a `loss of significance "
745745
"<https://en.wikipedia.org/wiki/Loss_of_significance>`_\\."
746746
msgstr""
747-
"返回 *x* 处的互补误差函数。 `互补错误函数 <https://en.wikipedia.org/wiki/Error_function>`_ "
748-
"定义为 ``1.0 - erf(x)``。它用于 *x*的大值,从其中减去一个会导致 `有效位数损失 "
747+
"返回 *x* 处的互补误差函数。 `互补误差函数 <https://en.wikipedia.org/wiki/Error_function>`_ "
748+
"定义为 ``1.0 - erf(x)``。它用于大的 *x*取值,以避免直接用 1 减其误差函数值导致的 `有效位数损失 "
749749
"<https://en.wikipedia.org/wiki/Loss_of_significance>`_\\。"
750750

751751
#:../../library/math.rst:603

‎library/netdata.po

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2022, Python Software Foundation
2+
# Copyright (C) 2001-2024, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# 叶浚安 <ye.pandaaaa906@gmail.com>, 2021
8-
# Freesand Leo <yuqinju@163.com>, 2021
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
98
#
109
#,fuzzy
1110
msgid ""
1211
msgstr ""
13-
"Project-Id-Version:Python 3.10\n"
12+
"Project-Id-Version:Python 3.11\n"
1413
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2022-11-04 14:28+0000\n"
16-
"PO-Revision-Date:2021-06-28 01:10+0000\n"
17-
"Last-Translator:Freesand Leo <yuqinju@163.com>,2021\n"
18-
"Language-Team:Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
14+
"POT-Creation-Date:2024-11-19 02:05+0000\n"
15+
"PO-Revision-Date:2023-05-24 02:18+0000\n"
16+
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>,2024\n"
17+
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1918
"MIME-Version:1.0\n"
2019
"Content-Type:text/plain; charset=UTF-8\n"
2120
"Content-Transfer-Encoding:8bit\n"

‎library/optparse.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.11\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2024-04-19 16:58+0000\n"
14+
"POT-Creation-Date:2024-11-15 15:27+0000\n"
1515
"PO-Revision-Date:2023-05-24 02:18+0000\n"
1616
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"

‎library/os.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# 钟旭尧 <python_zhong@qq.com>,2023
7+
# 钟旭尧 <python_zhong@163.com>,2024
88
# Freesand Leo <yuqinju@163.com>, 2024
99
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
1010
#
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version:Python 3.11\n"
1515
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2024-08-16 15:24+0000\n"
16+
"POT-Creation-Date:2024-11-12 09:45+0000\n"
1717
"PO-Revision-Date:2023-05-24 02:18+0000\n"
1818
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1919
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"

‎library/pipes.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
87
# Freesand Leo <yuqinju@163.com>, 2024
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
99
#
1010
#,fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.11\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-02-09 16:33+0000\n"
15+
"POT-Creation-Date:2024-11-15 15:27+0000\n"
1616
"PO-Revision-Date:2023-05-24 02:18+0000\n"
17-
"Last-Translator:Freesand Leo <yuqinju@163.com>, 2024\n"
17+
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1818
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1919
"MIME-Version:1.0\n"
2020
"Content-Type:text/plain; charset=UTF-8\n"

‎library/sys.po

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.11\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-08-16 15:24+0000\n"
15+
"POT-Creation-Date:2024-11-12 09:45+0000\n"
1616
"PO-Revision-Date:2023-05-24 02:20+0000\n"
1717
"Last-Translator:Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1818
"Language-Team:Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -81,12 +81,6 @@ msgstr ""
8181
":c:func:`PySys_AddAuditHook` 来添加任何安全敏感的钩子,并且应当完全删除或密切监视任何允许任意修改内存的模块 (如 "
8282
":mod:`ctypes`)。"
8383

84-
#:../../library/sys.rst:47
85-
msgid""
86-
"Raises an :ref:`auditing event <auditing>` ``sys.addaudithook`` with no "
87-
"arguments."
88-
msgstr" "
89-
9084
#:../../library/sys.rst:49
9185
msgid""
9286
"Calling :func:`sys.addaudithook` will itself raise an auditing event named "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp