Skip to content

Commit 00fc986

Browse files
[po] auto sync
1 parent a62036b commit 00fc986

File tree

172 files changed

+24755
-21019
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+24755
-21019
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "94.86%", "updated_at": "2024-05-10T14:56:46Z"}
1+
{"translation": "91.81%", "updated_at": "2024-05-11T01:20:52Z"}

c-api/arg.po

Lines changed: 157 additions & 142 deletions
Large diffs are not rendered by default.

c-api/bool.po

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2023, 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
#
@@ -10,9 +10,9 @@
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Python 3.12\n"
13+
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
15+
"POT-Creation-Date: 2024-05-10 22:05-0300\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2023\n"
1818
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -52,27 +52,23 @@ msgstr "如果 *o* 的类型为 :c:data:`PyBool_Type` 则返回真值。 此函
5252

5353
#: ../../c-api/bool.rst:28
5454
msgid ""
55-
"The Python ``False`` object. This object has no methods and is `immortal "
56-
"<https://peps.python.org/pep-0683/>`_."
55+
"The Python ``False`` object. This object has no methods and is "
56+
":term:`immortal`."
5757
msgstr ""
58-
"Python ``False`` 对象。 该对象没有任何方法并且是 `永久性对象 "
59-
"<https://peps.python.org/pep-0683/>`_。"
6058

6159
#: ../../c-api/bool.rst:31
62-
msgid ":c:data:`Py_False` is immortal."
63-
msgstr ":c:data:`Py_False` 是永久性对象。"
60+
msgid ":c:data:`Py_False` is :term:`immortal`."
61+
msgstr ""
6462

6563
#: ../../c-api/bool.rst:37
6664
msgid ""
67-
"The Python ``True`` object. This object has no methods and is `immortal "
68-
"<https://peps.python.org/pep-0683/>`_."
65+
"The Python ``True`` object. This object has no methods and is "
66+
":term:`immortal`."
6967
msgstr ""
70-
"Python ``True`` 对象。 该对象没有任何方法并且是 `永久性对象 "
71-
"<https://peps.python.org/pep-0683/>`_。"
7268

7369
#: ../../c-api/bool.rst:40
74-
msgid ":c:data:`Py_True` is immortal."
75-
msgstr ":c:data:`Py_True` 是永久性对象。"
70+
msgid ":c:data:`Py_True` is :term:`immortal`."
71+
msgstr ""
7672

7773
#: ../../c-api/bool.rst:46
7874
msgid "Return :c:data:`Py_False` from a function."

c-api/bytes.po

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2023, 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
#
@@ -16,9 +16,9 @@
1616
#, fuzzy
1717
msgid ""
1818
msgstr ""
19-
"Project-Id-Version: Python 3.12\n"
19+
"Project-Id-Version: Python 3.13\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2023-12-29 14:13+0000\n"
21+
"POT-Creation-Date: 2024-05-10 22:05-0300\n"
2222
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
2323
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2023\n"
2424
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -352,22 +352,15 @@ msgstr ""
352352

353353
#: ../../c-api/bytes.rst:194
354354
msgid ""
355-
"A way to resize a bytes object even though it is \"immutable\". Only use "
356-
"this to build up a brand new bytes object; don't use this if the bytes may "
357-
"already be known in other parts of the code. It is an error to call this "
358-
"function if the refcount on the input bytes object is not one. Pass the "
359-
"address of an existing bytes object as an lvalue (it may be written into), "
360-
"and the new size desired. On success, *\\*bytes* holds the resized bytes "
361-
"object and ``0`` is returned; the address in *\\*bytes* may differ from its "
362-
"input value. If the reallocation fails, the original bytes object at "
363-
"*\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError`"
364-
" is set, and ``-1`` is returned."
355+
"Resize a bytes object. *newsize* will be the new length of the bytes object."
356+
" You can think of it as creating a new bytes object and destroying the old "
357+
"one, only more efficiently. Pass the address of an existing bytes object as "
358+
"an lvalue (it may be written into), and the new size desired. On success, "
359+
"*\\*bytes* holds the resized bytes object and ``0`` is returned; the address"
360+
" in *\\*bytes* may differ from its input value. If the reallocation fails, "
361+
"the original bytes object at *\\*bytes* is deallocated, *\\*bytes* is set to"
362+
" ``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned."
365363
msgstr ""
366-
"改变字节串大小的一种方式,即使其为“不可变对象”。 此方式仅用于创建全新的字节串对象;如果字节串在代码的其他部分已知则不可使用此方式。 "
367-
"如果输入字节串对象的引用计数不为一则调用此函数将报错。 传入一个现有字节串对象的地址作为 lvalue(它可能会被写入),并传入希望的新大小。 "
368-
"当成功时,*\\*bytes* 将存放改变大小后的字节串对象并返回 ``0``;*\\*bytes* 中的地址可能与其输入值不同。 如果重新分配失败,则"
369-
" *\\*bytes* 上的原字节串对象将被撤销分配,*\\*bytes* 会被设为 ``NULL``,同时设置 :exc:`MemoryError` "
370-
"并返回 ``-1``。"
371364

372365
#: ../../c-api/bytes.rst:11
373366
msgid "object"

0 commit comments

Comments
 (0)