Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ac351fe

Browse files
committed
[po] auto sync bot
1 parent 8459e80 commit ac351fe

3 files changed

Lines changed: 21 additions & 14 deletions

File tree

faq/gui.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# dgy18787 <[email protected]>, 2019
88
# Freesand Leo <[email protected]>, 2019
99
# 443 <[email protected]>, 2019
10+
# Kade For, 2019
1011
#
1112
#, fuzzy
1213
msgid ""
@@ -15,7 +16,7 @@ msgstr ""
1516
"Report-Msgid-Bugs-To: \n"
1617
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1718
"PO-Revision-Date: 2017-02-16 17:43+0000\n"
18-
"Last-Translator: 443 <[email protected]>, 2019\n"
19+
"Last-Translator: Kade For, 2019\n"
1920
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2021
"MIME-Version: 1.0\n"
2122
"Content-Type: text/plain; charset=UTF-8\n"
@@ -277,6 +278,9 @@ msgid ""
277278
"function which will be called from the Tk mainloop when I/O is possible on a"
278279
" file descriptor. See :ref:`tkinter-file-handlers`."
279280
msgstr ""
281+
"可以。在 Windows 以外的其他平台上,你甚至不需要使用线程!但是你不得不稍微修改一下你的 I/O 代码。Tk 有相应的 Xt 的 "
282+
":c:func:`XtAddInput()` 调用,它允许你注册一个回调函数,当一个文件描述符可以进行 I/O 操作的时候,Tk "
283+
"主循环可以调用这个回调函数。"
280284

281285
#: ../../faq/gui.rst:151
282286
msgid "I can't get key bindings to work in Tkinter: why?"
@@ -287,7 +291,7 @@ msgid ""
287291
"An often-heard complaint is that event handlers bound to events with the "
288292
":meth:`bind` method don't get handled even when the appropriate key is "
289293
"pressed."
290-
msgstr ""
294+
msgstr "经常听到的抱怨是:已经通过 :meth:`bind` 方法绑定了事件的处理程序,但是,当按下相关的按键后,这个处理程序却没有执行。"
291295

292296
#: ../../faq/gui.rst:156
293297
msgid ""
@@ -296,3 +300,5 @@ msgid ""
296300
"focus command. Usually a widget is given the keyboard focus by clicking in "
297301
"it (but not for labels; see the takefocus option)."
298302
msgstr ""
303+
"最常见的原因是,那个绑定的控件没有“键盘焦点”。请在 Tk 文档中查找 focus "
304+
"指令。通常一个控件要获得“键盘焦点”,需要点击那个控件(而不是标签;请查看 takefocus 选项)。"

library/concurrent.futures.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Freesand Leo <[email protected]>, 2019
87
# MuSheng Chen <[email protected]>, 2019
8+
# Freesand Leo <[email protected]>, 2019
99
#
1010
#, fuzzy
1111
msgid ""
@@ -14,7 +14,7 @@ msgstr ""
1414
"Report-Msgid-Bugs-To: \n"
1515
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1616
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
17-
"Last-Translator: MuSheng Chen <sheng.2179@gmail.com>, 2019\n"
17+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2019\n"
1818
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=UTF-8\n"
@@ -160,7 +160,7 @@ msgstr "ThreadPoolExecutor"
160160
msgid ""
161161
":class:`ThreadPoolExecutor` is an :class:`Executor` subclass that uses a "
162162
"pool of threads to execute calls asynchronously."
163-
msgstr ":class:`ThreadPoolExecutor`:class:`Executor` 的子类,它使用线程池来异步执行调用。"
163+
msgstr ":class:`ThreadPoolExecutor`:class:`Executor` 的子类,它使用线程池来异步执行调用。"
164164

165165
#: ../../library/concurrent.futures.rst:104
166166
msgid ""
@@ -176,7 +176,7 @@ msgstr "And::"
176176
msgid ""
177177
"An :class:`Executor` subclass that uses a pool of at most *max_workers* "
178178
"threads to execute calls asynchronously."
179-
msgstr ":class:`Executor`子类使用最多*max_workers*个线程的线程池来异步执行调用。"
179+
msgstr ":class:`Executor` 的一个子类,使用最多 *max_workers* 个线程的线程池来异步执行调用。"
180180

181181
#: ../../library/concurrent.futures.rst:140
182182
msgid ""
@@ -195,6 +195,7 @@ msgid ""
195195
" and the number of workers should be higher than the number of workers for "
196196
":class:`ProcessPoolExecutor`."
197197
msgstr ""
198+
"如果*max_workers*为``None``或没有指定,将默认为机器处理器的个数,假如:class:`ThreadPoolExecutor`则重于I/O操作而不是CPU运算,那么可以乘以``5``,同时工作线程的数量可以比:class:`ProcessPoolExecutor`的数量高。"
198199

199200
#: ../../library/concurrent.futures.rst:154
200201
msgid ""

library/json.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
# Jerry Chen <[email protected]>, 2017
88
# ww song <[email protected]>, 2018
99
# Danny Vi <[email protected]>, 2018
10-
# Freesand Leo <[email protected]>, 2018
1110
# 叶浚安 <[email protected]>, 2019
1211
# sgqy <[email protected]>, 2019
1312
# Siyuan Xu <[email protected]>, 2019
13+
# Freesand Leo <[email protected]>, 2019
1414
#
1515
#, fuzzy
1616
msgid ""
@@ -19,7 +19,7 @@ msgstr ""
1919
"Report-Msgid-Bugs-To: \n"
2020
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
2121
"PO-Revision-Date: 2017-02-16 23:16+0000\n"
22-
"Last-Translator: Siyuan Xu <mf20070535@126.com>, 2019\n"
22+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2019\n"
2323
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2424
"MIME-Version: 1.0\n"
2525
"Content-Type: text/plain; charset=UTF-8\n"
@@ -145,8 +145,8 @@ msgid ""
145145
"reference check for container types will be skipped and a circular reference"
146146
" will result in an :exc:`OverflowError` (or worse)."
147147
msgstr ""
148-
"如果 *check_circular* 是 false (默认为 ``True``,那么容器类型的循环引用检验会被跳过并且循环引用会引发一个 "
149-
":exc:`OverflowError`或者更糟的情况。"
148+
"如果 *check_circular* 是为假值 (默认为 ``True``),那么容器类型的循环引用检验会被跳过并且循环引用会引发一个 "
149+
":exc:`OverflowError` (或者更糟的情况)。"
150150

151151
#: ../../library/json.rst:152
152152
msgid ""
@@ -238,8 +238,8 @@ msgid ""
238238
" table <py-to-json-table>`. The arguments have the same meaning as in "
239239
":func:`dump`."
240240
msgstr ""
241-
"使用这个:ref:`转换表 <py-to-json-table>`序列化 *obj* 为一个 JSON 格式的 :class:`str`。参数和 "
242-
":func:`dump` 中的具有相同的含义。"
241+
"使用这个 :ref:`转换表 <py-to-json-table>`*obj* 序列化为 JSON 格式的 :class:`str`。 "
242+
"其参数的含义与 :func:`dump` 中的相同。"
243243

244244
#: ../../library/json.rst:208
245245
msgid ""
@@ -259,8 +259,8 @@ msgid ""
259259
":term:`binary file` containing a JSON document) to a Python object using "
260260
"this :ref:`conversion table <json-to-py-table>`."
261261
msgstr ""
262-
"使用这个:ref:`转换表<json-to-py-table>`来反序列化 *fp* 一个支持 ``.read()`` 并包含一个 JSON 文档的 "
263-
":term:`text file` 或者 :term:`binary file`)为一个 Python 对象。"
262+
"使用这个 :ref:`转换表<json-to-py-table>`*fp* (一个支持 ``.read()`` 并包含一个 JSON 文档的 "
263+
":term:`text file` 或者 :term:`binary file`) 反序列化为一个 Python 对象。"
264264

265265
#: ../../library/json.rst:221
266266
msgid ""

0 commit comments

Comments
 (0)