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

Skip to content

Commit 537de98

Browse files
committed
[po] auto sync bot
1 parent 9581f6b commit 537de98

2 files changed

Lines changed: 20 additions & 4 deletions

File tree

library/colorsys.po

Lines changed: 10 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]>, 2018
87
# nickle <[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: nickle <2330458484@qq.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"
@@ -24,7 +24,7 @@ msgstr ""
2424

2525
#: ../../library/colorsys.rst:2
2626
msgid ":mod:`colorsys` --- Conversions between color systems"
27-
msgstr ":mod:`colorsys` --- 颜色系统间的对话"
27+
msgstr ":mod:`colorsys` --- 颜色系统间的转换"
2828

2929
#: ../../library/colorsys.rst:9
3030
msgid "**Source code:** :source:`Lib/colorsys.py`"
@@ -40,21 +40,27 @@ msgid ""
4040
"coordinate is between 0 and 1, but the I and Q coordinates can be positive "
4141
"or negative. In all other spaces, the coordinates are all between 0 and 1."
4242
msgstr ""
43+
":mod:`colorsys` 模块定义了计算机显示器所用的 RGB (Red Green Blue) 色彩空间与三种其他色彩坐标系统 YIQ, HLS"
44+
" (Hue Lightness Saturation) 和 HSV (Hue Saturation Value) 表示的颜色值之间的双向转换。 "
45+
"所有这些色彩空间的坐标都使用浮点数值来表示。 在 YIQ 空间中,Y 坐标取值为 0 和 1 之间,而 I 和 Q 坐标均可以为正数或负数。 "
46+
"在所有其他空间中,坐标取值均为 0 和 1 之间。"
4347

4448
#: ../../library/colorsys.rst:23
4549
msgid ""
4650
"More information about color spaces can be found at "
4751
"http://poynton.ca/ColorFAQ.html and "
4852
"https://www.cambridgeincolour.com/tutorials/color-spaces.htm."
4953
msgstr ""
54+
"有关色彩空间的更多信息可访问 http://poynton.ca/ColorFAQ.html 和 "
55+
"https://www.cambridgeincolour.com/tutorials/color-spaces.htm."
5056

5157
#: ../../library/colorsys.rst:27
5258
msgid "The :mod:`colorsys` module defines the following functions:"
5359
msgstr ":mod:`colorsys` 模块定义了如下函数:"
5460

5561
#: ../../library/colorsys.rst:32
5662
msgid "Convert the color from RGB coordinates to YIQ coordinates."
57-
msgstr "把颜色从RGB值转为YIQ值。<br>"
63+
msgstr "把颜色从RGB值转为YIQ值。"
5864

5965
#: ../../library/colorsys.rst:37
6066
msgid "Convert the color from YIQ coordinates to RGB coordinates."

library/concurrent.futures.po

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ msgid ""
334334
"``False``, otherwise the call will be cancelled and the method will return "
335335
"``True``."
336336
msgstr ""
337+
"尝试取消调用。 如果调用正在执行或已结束运行不能被取消则该方法将返回 ``False``,否则调用会被取消并且该方法将返回 ``True``。"
337338

338339
#: ../../library/concurrent.futures.rst:303
339340
msgid "Return ``True`` if the call was successfully cancelled."
@@ -487,6 +488,9 @@ msgid ""
487488
"second set, named ``not_done``, contains the futures that did not complete "
488489
"(pending or running futures)."
489490
msgstr ""
491+
"等待 *fs* 指定的 :class:`Future` 实例(可能由不同的 :class:`Executor` 实例创建)完成。 "
492+
"返回一个由集合构成的具名 2 元组。 第一个集合名称为 ``done``,包含在等待完成之前已完成的期程(包括正常结束或被取消的期程)。 "
493+
"第二个集合名称为 ``not_done``,包含未完成的期程(包括挂起的或正在运行的期程)。"
490494

491495
#: ../../library/concurrent.futures.rst:409
492496
msgid ""
@@ -551,6 +555,12 @@ msgid ""
551555
" can be an int or float. If *timeout* is not specified or ``None``, there is"
552556
" no limit to the wait time."
553557
msgstr ""
558+
"返回一个包含 *fs* 所指定的 :class:`Future` 实例(可能由不同的 :class:`Executor` "
559+
"实例创建)的迭代器,这些实例会在完成时生成期程(包括正常结束或被取消的期程)。 任何由 *fs* 所指定的重复期程将只被返回一次。 任何在 "
560+
":func:`as_completed` 被调用之前完成的期程将优先被生成。 如果 :meth:`~iterator.__next__` 被调用并且在对"
561+
" :func:`as_completed` 的原始调用 *timeout* 秒之后结果仍不可用,则返回的迭代器将引发 "
562+
":exc:`concurrent.futures.TimeoutError`。 *timeout* 可以为整数或浮点数。 如果 *timeout* "
563+
"未指定或为 ``None``,则不限制等待时间。"
554564

555565
#: ../../library/concurrent.futures.rst:450
556566
msgid ":pep:`3148` -- futures - execute computations asynchronously"

0 commit comments

Comments
 (0)