|
6 | 6 | msgstr "" |
7 | 7 | "Project-Id-Version: Python 3.14\n" |
8 | 8 | "Report-Msgid-Bugs-To: \n" |
9 | | -"POT-Creation-Date: 2026-02-07 00:19+0000\n" |
| 9 | +"POT-Creation-Date: 2026-06-19 00:50+0000\n" |
10 | 10 | "PO-Revision-Date: 2018-05-23 14:42+0000\n" |
11 | 11 | "Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n" |
12 | 12 | "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" |
@@ -42,88 +42,90 @@ msgstr "" |
42 | 42 |
|
43 | 43 | #: ../../library/curses.panel.rst:31 |
44 | 44 | msgid "" |
45 | | -"Returns a panel object, associating it with the given window *win*. Be aware " |
46 | | -"that you need to keep the returned panel object referenced explicitly. If " |
47 | | -"you don't, the panel object is garbage collected and removed from the panel " |
48 | | -"stack." |
| 45 | +"Returns a panel object, associating it with the given window *win* and " |
| 46 | +"placing the new panel on top of the panel stack. Be aware that you need to " |
| 47 | +"keep the returned panel object referenced explicitly. If you don't, the " |
| 48 | +"panel object is garbage collected and removed from the panel stack." |
49 | 49 | msgstr "" |
50 | 50 |
|
51 | | -#: ../../library/curses.panel.rst:38 |
| 51 | +#: ../../library/curses.panel.rst:39 |
52 | 52 | msgid "Returns the top panel in the panel stack." |
53 | 53 | msgstr "" |
54 | 54 |
|
55 | | -#: ../../library/curses.panel.rst:43 |
| 55 | +#: ../../library/curses.panel.rst:44 |
56 | 56 | msgid "" |
57 | 57 | "Updates the virtual screen after changes in the panel stack. This does not " |
58 | 58 | "call :func:`curses.doupdate`, so you'll have to do this yourself." |
59 | 59 | msgstr "" |
60 | 60 |
|
61 | | -#: ../../library/curses.panel.rst:50 |
62 | | -msgid "Panel Objects" |
| 61 | +#: ../../library/curses.panel.rst:51 |
| 62 | +msgid "Panel objects" |
63 | 63 | msgstr "" |
64 | 64 |
|
65 | | -#: ../../library/curses.panel.rst:52 |
| 65 | +#: ../../library/curses.panel.rst:53 |
66 | 66 | msgid "" |
67 | 67 | "Panel objects, as returned by :func:`new_panel` above, are windows with a " |
68 | 68 | "stacking order. There's always a window associated with a panel which " |
69 | 69 | "determines the content, while the panel methods are responsible for the " |
70 | 70 | "window's depth in the panel stack." |
71 | 71 | msgstr "" |
72 | 72 |
|
73 | | -#: ../../library/curses.panel.rst:57 |
| 73 | +#: ../../library/curses.panel.rst:58 |
74 | 74 | msgid "Panel objects have the following methods:" |
75 | 75 | msgstr "" |
76 | 76 |
|
77 | | -#: ../../library/curses.panel.rst:62 |
| 77 | +#: ../../library/curses.panel.rst:63 |
78 | 78 | msgid "Returns the panel above the current panel." |
79 | 79 | msgstr "" |
80 | 80 |
|
81 | | -#: ../../library/curses.panel.rst:67 |
| 81 | +#: ../../library/curses.panel.rst:68 |
82 | 82 | msgid "Returns the panel below the current panel." |
83 | 83 | msgstr "" |
84 | 84 |
|
85 | | -#: ../../library/curses.panel.rst:72 |
| 85 | +#: ../../library/curses.panel.rst:73 |
86 | 86 | msgid "Push the panel to the bottom of the stack." |
87 | 87 | msgstr "" |
88 | 88 |
|
89 | | -#: ../../library/curses.panel.rst:77 |
| 89 | +#: ../../library/curses.panel.rst:78 |
90 | 90 | msgid "" |
91 | 91 | "Returns ``True`` if the panel is hidden (not visible), ``False`` otherwise." |
92 | 92 | msgstr "" |
93 | 93 |
|
94 | | -#: ../../library/curses.panel.rst:82 |
| 94 | +#: ../../library/curses.panel.rst:83 |
95 | 95 | msgid "" |
96 | 96 | "Hide the panel. This does not delete the object, it just makes the window on " |
97 | 97 | "screen invisible." |
98 | 98 | msgstr "" |
99 | 99 |
|
100 | | -#: ../../library/curses.panel.rst:88 |
| 100 | +#: ../../library/curses.panel.rst:89 |
101 | 101 | msgid "Move the panel to the screen coordinates ``(y, x)``." |
102 | 102 | msgstr "" |
103 | 103 |
|
104 | | -#: ../../library/curses.panel.rst:93 |
| 104 | +#: ../../library/curses.panel.rst:94 |
105 | 105 | msgid "Change the window associated with the panel to the window *win*." |
106 | 106 | msgstr "" |
107 | 107 |
|
108 | | -#: ../../library/curses.panel.rst:98 |
| 108 | +#: ../../library/curses.panel.rst:99 |
109 | 109 | msgid "" |
110 | 110 | "Set the panel's user pointer to *obj*. This is used to associate an " |
111 | 111 | "arbitrary piece of data with the panel, and can be any Python object." |
112 | 112 | msgstr "" |
113 | 113 |
|
114 | | -#: ../../library/curses.panel.rst:104 |
115 | | -msgid "Display the panel (which might have been hidden)." |
| 114 | +#: ../../library/curses.panel.rst:105 |
| 115 | +msgid "" |
| 116 | +"Display the panel (which might have been hidden), placing it on top of the " |
| 117 | +"panel stack." |
116 | 118 | msgstr "" |
117 | 119 |
|
118 | | -#: ../../library/curses.panel.rst:109 |
| 120 | +#: ../../library/curses.panel.rst:111 |
119 | 121 | msgid "Push panel to the top of the stack." |
120 | 122 | msgstr "" |
121 | 123 |
|
122 | | -#: ../../library/curses.panel.rst:114 |
| 124 | +#: ../../library/curses.panel.rst:116 |
123 | 125 | msgid "" |
124 | 126 | "Returns the user pointer for the panel. This might be any Python object." |
125 | 127 | msgstr "" |
126 | 128 |
|
127 | | -#: ../../library/curses.panel.rst:119 |
| 129 | +#: ../../library/curses.panel.rst:121 |
128 | 130 | msgid "Returns the window object associated with the panel." |
129 | 131 | msgstr "" |
0 commit comments