🌐 AI搜索 & 代理 主页
Skip to content

Commit cb5887f

Browse files
[po] auto sync
1 parent 103af12 commit cb5887f

File tree

14 files changed

+13248
-13105
lines changed

14 files changed

+13248
-13105
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "99.81%", "updated_at": "2025-11-19T08:59:38Z"}
1+
{"translation": "99.76%", "updated_at": "2025-11-19T15:57:42Z"}

c-api/dict.po

Lines changed: 110 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-
# python-doc bot, 2025
87
# Freesand Leo <yuqinju@163.com>, 2025
8+
# python-doc bot, 2025
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-11-15 15:00+0000\n"
15+
"POT-Creation-Date: 2025-11-19 15:26+0000\n"
1616
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
17-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2025\n"
17+
"Last-Translator: python-doc bot, 2025\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"
@@ -646,6 +646,113 @@ msgid ""
646646
" always succeeds."
647647
msgstr "如果 *op* 是一个字典条目视图的实例则返回真值。 此函数总是会成功执行。"
648648

649+
#: ../../c-api/dict.rst:474
650+
msgid "Ordered Dictionaries"
651+
msgstr ""
652+
653+
#: ../../c-api/dict.rst:476
654+
msgid ""
655+
"Python's C API provides interface for :class:`collections.OrderedDict` from "
656+
"C. Since Python 3.7, dictionaries are ordered by default, so there is "
657+
"usually little need for these functions; prefer ``PyDict*`` where possible."
658+
msgstr ""
659+
660+
#: ../../c-api/dict.rst:483
661+
msgid ""
662+
"Type object for ordered dictionaries. This is the same object as "
663+
":class:`collections.OrderedDict` in the Python layer."
664+
msgstr ""
665+
666+
#: ../../c-api/dict.rst:489
667+
msgid ""
668+
"Return true if *od* is an ordered dictionary object or an instance of a "
669+
"subtype of the :class:`~collections.OrderedDict` type. This function always"
670+
" succeeds."
671+
msgstr ""
672+
673+
#: ../../c-api/dict.rst:496
674+
msgid ""
675+
"Return true if *od* is an ordered dictionary object, but not an instance of "
676+
"a subtype of the :class:`~collections.OrderedDict` type. This function "
677+
"always succeeds."
678+
msgstr ""
679+
680+
#: ../../c-api/dict.rst:503
681+
msgid "Analogous to :c:type:`PyDictKeys_Type` for ordered dictionaries."
682+
msgstr ""
683+
684+
#: ../../c-api/dict.rst:508
685+
msgid "Analogous to :c:type:`PyDictValues_Type` for ordered dictionaries."
686+
msgstr ""
687+
688+
#: ../../c-api/dict.rst:513
689+
msgid "Analogous to :c:type:`PyDictItems_Type` for ordered dictionaries."
690+
msgstr ""
691+
692+
#: ../../c-api/dict.rst:518
693+
msgid "Return a new empty ordered dictionary, or ``NULL`` on failure."
694+
msgstr ""
695+
696+
#: ../../c-api/dict.rst:520
697+
msgid "This is analogous to :c:func:`PyDict_New`."
698+
msgstr ""
699+
700+
#: ../../c-api/dict.rst:525
701+
msgid ""
702+
"Insert *value* into the ordered dictionary *od* with a key of *key*. Return "
703+
"``0`` on success or ``-1`` with an exception set on failure."
704+
msgstr ""
705+
706+
#: ../../c-api/dict.rst:528
707+
msgid "This is analogous to :c:func:`PyDict_SetItem`."
708+
msgstr ""
709+
710+
#: ../../c-api/dict.rst:533
711+
msgid ""
712+
"Remove the entry in the ordered dictionary *od* with key *key*. Return ``0``"
713+
" on success or ``-1`` with an exception set on failure."
714+
msgstr ""
715+
716+
#: ../../c-api/dict.rst:536
717+
msgid "This is analogous to :c:func:`PyDict_DelItem`."
718+
msgstr ""
719+
720+
#: ../../c-api/dict.rst:539
721+
msgid "These are :term:`soft deprecated` aliases to ``PyDict`` APIs:"
722+
msgstr ""
723+
724+
#: ../../c-api/dict.rst:546
725+
msgid "``PyODict``"
726+
msgstr ""
727+
728+
#: ../../c-api/dict.rst:547
729+
msgid "``PyDict``"
730+
msgstr ""
731+
732+
#: ../../c-api/dict.rst:549
733+
msgid ":c:func:`PyDict_GetItem`"
734+
msgstr ":c:func:`PyDict_GetItem`"
735+
736+
#: ../../c-api/dict.rst:551
737+
msgid ":c:func:`PyDict_GetItemWithError`"
738+
msgstr ":c:func:`PyDict_GetItemWithError`"
739+
740+
#: ../../c-api/dict.rst:553
741+
msgid ":c:func:`PyDict_GetItemString`"
742+
msgstr ":c:func:`PyDict_GetItemString`"
743+
744+
#: ../../c-api/dict.rst:555
745+
msgid ":c:func:`PyDict_Contains`"
746+
msgstr ""
747+
748+
#: ../../c-api/dict.rst:557
749+
msgid ":c:func:`PyDict_Size`"
750+
msgstr ""
751+
752+
#: ../../c-api/dict.rst:559
753+
msgid ":c:func:`PyDict_GET_SIZE`"
754+
msgstr ""
755+
649756
#: ../../c-api/dict.rst:8
650757
msgid "object"
651758
msgstr "object -- 对象"

library/cmdline.po

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 2025-05-08 03:57+0000\n"
14+
"POT-Creation-Date: 2025-11-19 15:26+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -74,8 +74,8 @@ msgid ":mod:`!encodings.rot_13`"
7474
msgstr ":mod:`!encodings.rot_13`"
7575

7676
#: ../../library/cmdline.rst:18
77-
msgid ":mod:`ensurepip`"
78-
msgstr ":mod:`ensurepip`"
77+
msgid ":ref:`ensurepip <ensurepip-cli>`"
78+
msgstr ""
7979

8080
#: ../../library/cmdline.rst:19
8181
msgid ":mod:`filecmp`"
@@ -98,8 +98,8 @@ msgid ":ref:`http.server <http-server-cli>`"
9898
msgstr ":ref:`http.server <http-server-cli>`"
9999

100100
#: ../../library/cmdline.rst:24
101-
msgid ":mod:`!idlelib`"
102-
msgstr ":mod:`!idlelib`"
101+
msgid ":ref:`idlelib <idlelib-cli>`"
102+
msgstr ""
103103

104104
#: ../../library/cmdline.rst:25
105105
msgid ":ref:`inspect <inspect-module-cli>`"
@@ -114,8 +114,8 @@ msgid ":mod:`mimetypes`"
114114
msgstr ":mod:`mimetypes`"
115115

116116
#: ../../library/cmdline.rst:28
117-
msgid ":mod:`pdb`"
118-
msgstr ":mod:`pdb`"
117+
msgid ":ref:`pdb <pdb-cli>`"
118+
msgstr ""
119119

120120
#: ../../library/cmdline.rst:29
121121
msgid ":mod:`pickle`"
@@ -218,12 +218,12 @@ msgid ":ref:`uuid <uuid-cli>`"
218218
msgstr ":ref:`uuid <uuid-cli>`"
219219

220220
#: ../../library/cmdline.rst:54
221-
msgid ":mod:`venv`"
222-
msgstr ":mod:`venv`"
221+
msgid ":ref:`venv <venv-cli>`"
222+
msgstr ""
223223

224224
#: ../../library/cmdline.rst:55
225-
msgid ":mod:`webbrowser`"
226-
msgstr ":mod:`webbrowser`"
225+
msgid ":ref:`webbrowser <webbrowser-cli>`"
226+
msgstr ""
227227

228228
#: ../../library/cmdline.rst:56
229229
msgid ":ref:`zipapp <zipapp-command-line-interface>`"

library/decimal.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 2025-05-23 14:55+0000\n"
14+
"POT-Creation-Date: 2025-11-19 15:26+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -422,10 +422,9 @@ msgstr "如上所示,:func:`getcontext` 函数访问当前上下文并允许
422422
#: ../../library/decimal.rst:266
423423
msgid ""
424424
"For more advanced work, it may be useful to create alternate contexts using "
425-
"the Context() constructor. To make an alternate active, use the "
425+
"the :meth:`Context` constructor. To make an alternate active, use the "
426426
":func:`setcontext` function."
427427
msgstr ""
428-
"对于更高级的工作,使用 Context() 构造函数创建备用上下文可能很有用。 要使用备用活动,请使用 :func:`setcontext` 函数。"
429428

430429
#: ../../library/decimal.rst:270
431430
msgid ""

0 commit comments

Comments
 (0)