11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2025 , Python Software Foundation
2+ # Copyright (C) 2001-2026 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-01-03 14:16 +0000\n "
14+ "POT-Creation-Date : 2026-06-19 18:20 +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 "
@@ -47,29 +47,27 @@ msgstr "返回面板栈中的底部面板。"
4747
4848#: ../../library/curses.panel.rst:31
4949msgid ""
50- "Returns a panel object, associating it with the given window *win*. Be aware "
51- " that you need to keep the returned panel object referenced explicitly. If "
52- "you don't, the panel object is garbage collected and removed from the panel "
53- "stack."
50+ "Returns a panel object, associating it with the given window *win* and "
51+ "placing the new panel on top of the panel stack. Be aware that you need to "
52+ "keep the returned panel object referenced explicitly. If you don't, the "
53+ "panel object is garbage collected and removed from the panel stack."
5454msgstr ""
55- "返回一个面板对象,将其与给定的窗口 *win* 相关联。 请注意你必须显式地保持所返回的面板对象。 "
56- "如果你不这样做,面板对象会被垃圾回收并从面板栈中被移除。"
5755
58- #: ../../library/curses.panel.rst:38
56+ #: ../../library/curses.panel.rst:39
5957msgid "Returns the top panel in the panel stack."
6058msgstr "返回面板栈中的顶部面板。"
6159
62- #: ../../library/curses.panel.rst:43
60+ #: ../../library/curses.panel.rst:44
6361msgid ""
6462"Updates the virtual screen after changes in the panel stack. This does not "
6563"call :func:`curses.doupdate`, so you'll have to do this yourself."
6664msgstr "在面板栈发生改变后更新虚拟屏幕。 这不会调用 :func:`curses.doupdate`,因此你不必自己执行此操作。"
6765
68- #: ../../library/curses.panel.rst:50
69- msgid "Panel Objects "
70- msgstr "Panel 对象 "
66+ #: ../../library/curses.panel.rst:51
67+ msgid "Panel objects "
68+ msgstr ""
7169
72- #: ../../library/curses.panel.rst:52
70+ #: ../../library/curses.panel.rst:53
7371msgid ""
7472"Panel objects, as returned by :func:`new_panel` above, are windows with a "
7573"stacking order. There's always a window associated with a panel which "
@@ -79,60 +77,62 @@ msgstr ""
7977"Panel 对象,如上面 :func:`new_panel` 所返回的对象,是带有栈顺序的多个窗口。 "
8078"总是会有一个窗口与确定内容的面板相关联,面板方法会负责窗口在面板栈中的深度。"
8179
82- #: ../../library/curses.panel.rst:57
80+ #: ../../library/curses.panel.rst:58
8381msgid "Panel objects have the following methods:"
8482msgstr "Panel 对象具有以下方法:"
8583
86- #: ../../library/curses.panel.rst:62
84+ #: ../../library/curses.panel.rst:63
8785msgid "Returns the panel above the current panel."
8886msgstr "返回当前面板之上的面板。"
8987
90- #: ../../library/curses.panel.rst:67
88+ #: ../../library/curses.panel.rst:68
9189msgid "Returns the panel below the current panel."
9290msgstr "返回当前面板之下的面板。"
9391
94- #: ../../library/curses.panel.rst:72
92+ #: ../../library/curses.panel.rst:73
9593msgid "Push the panel to the bottom of the stack."
9694msgstr "将面板推至栈底部。"
9795
98- #: ../../library/curses.panel.rst:77
96+ #: ../../library/curses.panel.rst:78
9997msgid ""
10098"Returns ``True`` if the panel is hidden (not visible), ``False`` otherwise."
10199msgstr "如果面板被隐藏(不可见)则返回 ``True``,否则返回 ``False``。"
102100
103- #: ../../library/curses.panel.rst:82
101+ #: ../../library/curses.panel.rst:83
104102msgid ""
105103"Hide the panel. This does not delete the object, it just makes the window on"
106104" screen invisible."
107105msgstr "隐藏面板。 这不会删除对象,它只是让窗口在屏幕上不可见。"
108106
109- #: ../../library/curses.panel.rst:88
107+ #: ../../library/curses.panel.rst:89
110108msgid "Move the panel to the screen coordinates ``(y, x)``."
111109msgstr "将面板移至屏幕坐标 ``(y, x)``。"
112110
113- #: ../../library/curses.panel.rst:93
111+ #: ../../library/curses.panel.rst:94
114112msgid "Change the window associated with the panel to the window *win*."
115113msgstr "将与面板相关联的窗口改为窗口 *win*。"
116114
117- #: ../../library/curses.panel.rst:98
115+ #: ../../library/curses.panel.rst:99
118116msgid ""
119117"Set the panel's user pointer to *obj*. This is used to associate an "
120118"arbitrary piece of data with the panel, and can be any Python object."
121119msgstr "将面板的用户指向设为 *obj*。 这被用来将任意数据与面板相关联,数据可以是任何 Python 对象。"
122120
123- #: ../../library/curses.panel.rst:104
124- msgid "Display the panel (which might have been hidden)."
125- msgstr "显示面板(面板可能已被隐藏)。"
121+ #: ../../library/curses.panel.rst:105
122+ msgid ""
123+ "Display the panel (which might have been hidden), placing it on top of the "
124+ "panel stack."
125+ msgstr ""
126126
127- #: ../../library/curses.panel.rst:109
127+ #: ../../library/curses.panel.rst:111
128128msgid "Push panel to the top of the stack."
129129msgstr "将面板推至栈顶部。"
130130
131- #: ../../library/curses.panel.rst:114
131+ #: ../../library/curses.panel.rst:116
132132msgid ""
133133"Returns the user pointer for the panel. This might be any Python object."
134134msgstr "返回面板的用户指针。 这可以是任何 Python 对象。"
135135
136- #: ../../library/curses.panel.rst:119
136+ #: ../../library/curses.panel.rst:121
137137msgid "Returns the window object associated with the panel."
138138msgstr "返回与面板相关联的窗口对象。"
0 commit comments