Skip to content

Commit 5acfdf8

Browse files
[po] auto sync
1 parent 99f8d55 commit 5acfdf8

File tree

15 files changed

+1459
-1233
lines changed

15 files changed

+1459
-1233
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "81.33%", "updated_at": "2025-04-10T06:56:46Z"}
1+
{"translation": "81.20%", "updated_at": "2025-04-11T14:55:27Z"}

faq/programming.po

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.13\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2025-04-04 14:18+0000\n"
22+
"POT-Creation-Date: 2025-04-11 14:19+0000\n"
2323
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
2424
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2025\n"
2525
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -3511,26 +3511,23 @@ msgstr "但是,身份相等性测试 *只能* 在对象身份确定的场景
35113511

35123512
#: ../../faq/programming.rst:1870
35133513
msgid ""
3514-
"1) Assignments create new names but do not change object identity. After "
3515-
"the assignment ``new = old``, it is guaranteed that ``new is old``."
3516-
msgstr "1) 赋值操作创建了新的名称但没有改变对象身份。 在赋值操作 ``new = old`` 之后,可以保证 ``new is old``。"
3514+
"Assignments create new names but do not change object identity. After the "
3515+
"assignment ``new = old``, it is guaranteed that ``new is old``."
3516+
msgstr ""
35173517

35183518
#: ../../faq/programming.rst:1873
35193519
msgid ""
3520-
"2) Putting an object in a container that stores object references does not "
3520+
"Putting an object in a container that stores object references does not "
35213521
"change object identity. After the list assignment ``s[0] = x``, it is "
35223522
"guaranteed that ``s[0] is x``."
35233523
msgstr ""
3524-
"2) 将对象置入存放对象引用的容器,对象身份不会改变。在列表赋值操作 ``s[0] = x`` 之后,可以保证 ``s[0] is x``。"
35253524

35263525
#: ../../faq/programming.rst:1877
35273526
msgid ""
3528-
"3) If an object is a singleton, it means that only one instance of that "
3529-
"object can exist. After the assignments ``a = None`` and ``b = None``, it "
3530-
"is guaranteed that ``a is b`` because ``None`` is a singleton."
3527+
"If an object is a singleton, it means that only one instance of that object "
3528+
"can exist. After the assignments ``a = None`` and ``b = None``, it is "
3529+
"guaranteed that ``a is b`` because ``None`` is a singleton."
35313530
msgstr ""
3532-
"3) 单例对象,也即该对象只能存在一个实例。在赋值操作 ``a = None`` 和 ``b = None`` 之后,可以保证 ``a is "
3533-
"b``,因为 ``None`` 是单例对象。"
35343531

35353532
#: ../../faq/programming.rst:1881
35363533
msgid ""

howto/curses.po

Lines changed: 6 additions & 21 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
#
@@ -10,16 +10,16 @@
1010
# Xu Siyuan, 2021
1111
# ProgramRipper, 2023
1212
# Freesand Leo <yuqinju@163.com>, 2024
13-
# Wulian233 <xiguawulian@gmail.com>, 2024
13+
# lian Wu (Wulian) <xiguawulian@gmail.com>, 2024
1414
#
1515
#, fuzzy
1616
msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.13\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2024-09-20 14:17+0000\n"
20+
"POT-Creation-Date: 2025-04-11 14:19+0000\n"
2121
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
22-
"Last-Translator: Wulian233 <xiguawulian@gmail.com>, 2024\n"
22+
"Last-Translator: lian Wu (Wulian) <xiguawulian@gmail.com>, 2024\n"
2323
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2424
"MIME-Version: 1.0\n"
2525
"Content-Type: text/plain; charset=UTF-8\n"
@@ -280,26 +280,11 @@ msgid ""
280280
" v = i-10\n"
281281
" stdscr.addstr(i, 0, '10 divided by {} is {}'.format(v, 10/v))\n"
282282
"\n"
283-
" stdscr.refresh()\n"
284-
" stdscr.getkey()\n"
283+
" stdscr.refresh()\n"
284+
" stdscr.getkey()\n"
285285
"\n"
286286
"wrapper(main)"
287287
msgstr ""
288-
"from curses import wrapper\n"
289-
"\n"
290-
"def main(stdscr):\n"
291-
" # 清空屏幕\n"
292-
" stdscr.clear()\n"
293-
"\n"
294-
" # 当 i == 10 时这将引发 ZeroDivisionError。\n"
295-
" for i in range(0, 11):\n"
296-
" v = i-10\n"
297-
" stdscr.addstr(i, 0, '10 divided by {} is {}'.format(v, 10/v))\n"
298-
"\n"
299-
" stdscr.refresh()\n"
300-
" stdscr.getkey()\n"
301-
"\n"
302-
"wrapper(main)"
303288

304289
#: ../../howto/curses.rst:153
305290
msgid ""

0 commit comments

Comments
 (0)