Skip to content

Commit 97507d3

Browse files
[po] auto sync
1 parent 4142700 commit 97507d3

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "81.70%", "updated_at": "2025-07-14T13:10:04Z"}
1+
{"translation": "81.72%", "updated_at": "2025-07-15T15:58:07Z"}

whatsnew/3.3.po

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-05-16 14:58+0000\n"
15+
"POT-Creation-Date: 2025-07-11 15:02+0000\n"
1616
"PO-Revision-Date: 2025-05-08 05:10+0000\n"
1717
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2025\n"
1818
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -1903,13 +1903,17 @@ msgid ""
19031903
"collections classes. Aliases for ABCs are still present in the "
19041904
":mod:`collections` module to preserve existing imports. (:issue:`11085`)"
19051905
msgstr ""
1906+
"抽象基类被移到新的 :mod:`collections.abc` 模块中,以更好地区分抽象和实体多项集类。 ABC 的别名仍然存在于 "
1907+
":mod:`collections` 模块中以维持现有的导入操作。 (:issue:`11085`)"
19061908

19071909
#: ../../whatsnew/3.3.rst:1034
19081910
msgid ""
19091911
"The :class:`~collections.Counter` class now supports the unary ``+`` and "
19101912
"``-`` operators, as well as the in-place operators ``+=``, ``-=``, ``|=``, "
19111913
"and ``&=``. (Contributed by Raymond Hettinger in :issue:`13121`.)"
19121914
msgstr ""
1915+
"现在 :class:`~collections.Counter` 类支持单目的 ``+`` 和 ``-`` 运算符,以及原地修改的运算符 ``+=``,"
1916+
" ``-=``, ``|=`` 和 ``&=``。 (由 Raymond Hettinger 在 :issue:`13121` 中贡献。)"
19131917

19141918
#: ../../whatsnew/3.3.rst:1040
19151919
msgid "contextlib"
@@ -1939,7 +1943,7 @@ msgstr "crypt"
19391943
msgid ""
19401944
"Addition of salt and modular crypt format (hashing method) and the "
19411945
":func:`!mksalt` function to the :mod:`!crypt` module."
1942-
msgstr ""
1946+
msgstr "将加盐和求模加密格式(哈希方法)和 :func:`!mksalt` 函数添加到 :mod:`!crypt` 模块。"
19431947

19441948
#: ../../whatsnew/3.3.rst:1060
19451949
msgid "(:issue:`10924`)"
@@ -1955,11 +1959,13 @@ msgid ""
19551959
"functions when Unicode strings or characters are passed (e.g. "
19561960
":c:func:`waddwstr`), and bytes functions otherwise (e.g. :c:func:`waddstr`)."
19571961
msgstr ""
1962+
"如果 :mod:`curses` 模块被链接到 ncursesw 库,则在传入 Unicode 字符串或字符时使用 Unicode 函数 (例如 "
1963+
":c:func:`waddwstr`),否则使用字节函数 (例如 :c:func:`waddstr`)。"
19581964

19591965
#: ../../whatsnew/3.3.rst:1068
19601966
msgid ""
19611967
"Use the locale encoding instead of ``utf-8`` to encode Unicode strings."
1962-
msgstr ""
1968+
msgstr "使用语言区域编码格式而不是 ``utf-8`` 来编码 Unicode 字符串。"
19631969

19641970
#: ../../whatsnew/3.3.rst:1069
19651971
msgid ""
@@ -1996,32 +2002,37 @@ msgid ""
19962002
"instances now return :const:`False` instead of raising :exc:`TypeError` "
19972003
"(:issue:`15006`)."
19982004
msgstr ""
2005+
"简单型和感知型 :class:`~datetime.datetime` 实例之间的相等比较现在将返回 :const:`False` 而不是引发 "
2006+
":exc:`TypeError` (:issue:`15006`)。"
19992007

20002008
#: ../../whatsnew/3.3.rst:1084
20012009
msgid ""
20022010
"New :meth:`datetime.datetime.timestamp` method: Return POSIX timestamp "
20032011
"corresponding to the :class:`~datetime.datetime` instance."
20042012
msgstr ""
2013+
"新增 :meth:`datetime.datetime.timestamp` 方法:返回与 :class:`~datetime.datetime` "
2014+
"实例对应的 POSIX 时间戳。"
20052015

20062016
#: ../../whatsnew/3.3.rst:1086
20072017
msgid ""
20082018
"The :meth:`datetime.datetime.strftime` method supports formatting years "
20092019
"older than 1000."
2010-
msgstr ""
2020+
msgstr ":meth:`datetime.datetime.strftime` 方法支持格式化早于 1000 的年份。"
20112021

20122022
#: ../../whatsnew/3.3.rst:1088
20132023
msgid ""
20142024
"The :meth:`datetime.datetime.astimezone` method can now be called without "
20152025
"arguments to convert datetime instance to the system timezone."
20162026
msgstr ""
2027+
"现在 :meth:`datetime.datetime.astimezone` 方法可不带参数被调用以将 datetime 实例转换至系统时区。"
20172028

20182029
#: ../../whatsnew/3.3.rst:1096
20192030
msgid "decimal"
20202031
msgstr "decimal"
20212032

20222033
#: ../../whatsnew/3.3.rst:1098
20232034
msgid ":issue:`7652` - integrate fast native decimal arithmetic."
2024-
msgstr ""
2035+
msgstr ":issue:`7652` - 集成快速的原生十进制算术运算。"
20252036

20262037
#: ../../whatsnew/3.3.rst:1099
20272038
msgid "C-module and libmpdec written by Stefan Krah."

0 commit comments

Comments
 (0)