Skip to content

Commit cf8f0d4

Browse files
github-actions[bot]mattwang44
authored andcommitted
sync with cpython 88ff02e3
1 parent dcefeac commit cf8f0d4

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

faq/gui.po

+14-10
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 3.12\n"
1111
"Report-Msgid-Bugs-To: \n"
12-
"POT-Creation-Date: 2022-09-28 00:27+0000\n"
12+
"POT-Creation-Date: 2023-09-05 00:04+0000\n"
1313
"PO-Revision-Date: 2022-07-02 17:41+0800\n"
1414
"Last-Translator: Steven Hsu <hsuhaochun@gmail.com>\n"
1515
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -84,10 +84,11 @@ msgstr ""
8484
"用程式不是真正的獨立,因為該應用程式仍然需要 Tcl 和 Tk 函式庫。"
8585

8686
#: ../../faq/gui.rst:45
87+
#, fuzzy
8788
msgid ""
8889
"One solution is to ship the application with the Tcl and Tk libraries, and "
89-
"point to them at run-time using the :envvar:`TCL_LIBRARY` and :envvar:"
90-
"`TK_LIBRARY` environment variables."
90+
"point to them at run-time using the :envvar:`!TCL_LIBRARY` and :envvar:`!"
91+
"TK_LIBRARY` environment variables."
9192
msgstr ""
9293
"將應用程式與 Tcl 和 Tk 函式庫一併發送是一種解決方法,並在執行環境 (run-time) "
9394
"使用 :envvar:`TCL_LIBRARY` 和 :envvar:`TK_LIBRARY` 環境變數來指向該函式庫。"
@@ -104,9 +105,10 @@ msgstr ""
104105
"一部分 (https://tix.sourceforge.net/)。"
105106

106107
#: ../../faq/gui.rst:54
108+
#, fuzzy
107109
msgid ""
108-
"Build Tix with SAM enabled, perform the appropriate call to :c:func:"
109-
"`Tclsam_init`, etc. inside Python's :file:`Modules/tkappinit.c`, and link "
110+
"Build Tix with SAM enabled, perform the appropriate call to :c:func:`!"
111+
"Tclsam_init`, etc. inside Python's :file:`Modules/tkappinit.c`, and link "
110112
"with libtclsam and libtksam (you might include the Tix libraries as well)."
111113
msgstr ""
112114
"請在 SAM 被啟用的情況下建置 Tix,對 Python 的 :file:`Modules/tkappinit.c` 中"
@@ -118,10 +120,11 @@ msgid "Can I have Tk events handled while waiting for I/O?"
118120
msgstr "是否可以在等待 I/O 時處理 Tk 事件?"
119121

120122
#: ../../faq/gui.rst:63
123+
#, fuzzy
121124
msgid ""
122125
"On platforms other than Windows, yes, and you don't even need threads! But "
123126
"you'll have to restructure your I/O code a bit. Tk has the equivalent of "
124-
"Xt's :c:func:`XtAddInput()` call, which allows you to register a callback "
127+
"Xt's :c:func:`!XtAddInput` call, which allows you to register a callback "
125128
"function which will be called from the Tk mainloop when I/O is possible on a "
126129
"file descriptor. See :ref:`tkinter-file-handlers`."
127130
msgstr ""
@@ -136,15 +139,16 @@ msgid "I can't get key bindings to work in Tkinter: why?"
136139
msgstr "我無法讓鍵繫結 (key binding) 在 Tkinter 中作用:為什麼?"
137140

138141
#: ../../faq/gui.rst:73
142+
#, fuzzy
139143
msgid ""
140-
"An often-heard complaint is that event handlers bound to events with the :"
141-
"meth:`bind` method don't get handled even when the appropriate key is "
142-
"pressed."
144+
"An often-heard complaint is that event handlers :ref:`bound <bindings-and-"
145+
"events>` to events with the :meth:`!bind` method don't get handled even when "
146+
"the appropriate key is pressed."
143147
msgstr ""
144148
"一個經常聽到的抱怨是,儘管事件處理程式 (event handler) 已經繫結到帶有 :meth:"
145149
"`bind` method 的事件,但在按下相應的鍵時,該事件也沒有被處理。"
146150

147-
#: ../../faq/gui.rst:76
151+
#: ../../faq/gui.rst:77
148152
msgid ""
149153
"The most common cause is that the widget to which the binding applies "
150154
"doesn't have \"keyboard focus\". Check out the Tk documentation for the "

0 commit comments

Comments
 (0)