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

Skip to content

Commit 41ab2fd

Browse files
committed
[po] auto sync bot
1 parent 5044c9a commit 41ab2fd

2 files changed

Lines changed: 21 additions & 4 deletions

File tree

c-api/buffer.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Translators:
77
# Fei Yin <[email protected]>, 2018
88
# 演奏王 <[email protected]>, 2019
9-
# Freesand Leo <[email protected]>, 2019
109
# 马强 <[email protected]>, 2019
10+
# Freesand Leo <[email protected]>, 2019
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1818
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
19-
"Last-Translator: 马强 <jackylvm@foxmail.com>, 2019\n"
19+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2019\n"
2020
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"
@@ -76,8 +76,8 @@ msgid ""
7676
"example, the elements exposed by an :class:`array.array` can be multi-byte "
7777
"values."
7878
msgstr ""
79-
"一些简单的对象,例如:class`bytes`和:class`bytearray`可以以面向字节的形式公开它们的底层缓冲区。 对于其他形式的对象; "
80-
"例如,:class`array.array`公开的则是元素的多字节值。"
79+
"一些简单的对象例如 :class:`bytes` 和 :class:`bytearray` 会以面向字节的形式公开它们的底层缓冲区。 "
80+
"也可能会用其他形式;例如 :class:`array.array` 所公开的元素可以是多字节值。"
8181

8282
#: ../../c-api/buffer.rst:45
8383
msgid ""

whatsnew/3.7.po

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3424,6 +3424,8 @@ msgid ""
34243424
"Use :func:`aifc.open` instead. (Contributed by Brian Curtin in "
34253425
":issue:`31985`.)"
34263426
msgstr ""
3427+
":func:`aifc.openfp` 已弃用并将在 Python 3.9 中被移除。 请改用 :func:`aifc.open`。 (由 Brian "
3428+
"Curtin 在 :issue:`31985` 中贡献。)"
34273429

34283430
#: ../../whatsnew/3.7.rst:1945
34293431
msgid ""
@@ -3433,13 +3435,17 @@ msgid ""
34333435
"the synchronization resource. (Contributed by Andrew Svetlov in "
34343436
":issue:`32253`.)"
34353437
msgstr ""
3438+
"对 :class:`asyncio.Lock` 和其他 asyncio 同步原语的 ``await`` 实例的直接支持已弃用。 "
3439+
"想要获取并释放同步资源必须使用异步上下文管理器。 (由 Andrew Svetlov 在 :issue:`32253` 中贡献。)"
34363440

34373441
#: ../../whatsnew/3.7.rst:1951
34383442
msgid ""
34393443
"The :meth:`asyncio.Task.current_task` and :meth:`asyncio.Task.all_tasks` "
34403444
"methods have been deprecated. (Contributed by Andrew Svetlov in "
34413445
":issue:`32250`.)"
34423446
msgstr ""
3447+
":meth:`asyncio.Task.current_task` 和 :meth:`asyncio.Task.all_tasks` 方法已弃用。 (由"
3448+
" Andrew Svetlov 在 :issue:`32250` 中贡献。)"
34433449

34443450
#: ../../whatsnew/3.7.rst:1959
34453451
msgid ""
@@ -3448,6 +3454,8 @@ msgid ""
34483454
"create a clearer distinction between the concrete classes and the abstract "
34493455
"base classes. (Contributed by Serhiy Storchaka in :issue:`25988`.)"
34503456
msgstr ""
3457+
"在 Python 3.8 中,:mod:`collections.abc` 内的抽象基类将不会再通过常规的 :mod:`collections` "
3458+
"模块公开。 这有助于更清晰地区别具体类与抽象基类。 (由 Serhiy Storchaka 在 :issue:`25988` 中贡献。)"
34513459

34523460
#: ../../whatsnew/3.7.rst:1969
34533461
msgid ""
@@ -3457,6 +3465,9 @@ msgid ""
34573465
" (this will be an error in future Python releases). (Contributed by Serhiy "
34583466
"Storchaka in :issue:`28847`.)"
34593467
msgstr ""
3468+
":mod:`dbm.dumb` 现在支持读取只读文件,且当其未被更改时不会再写入索引文件。 现在如果索引文件丢失并在 ``'r'`` 与 ``'w'``"
3469+
" 模式下被重新创建,则会发出已弃用警告(在未来的 Python 发布版中将改为错误)。 (由 Serhiy Storchaka 在 "
3470+
":issue:`28847` 中贡献。)"
34603471

34613472
#: ../../whatsnew/3.7.rst:1979
34623473
msgid ""
@@ -3467,6 +3478,10 @@ msgid ""
34673478
"return :const:`False` instead. (Contributed by Ethan Furman in "
34683479
":issue:`33217`.)"
34693480
msgstr ""
3481+
"在 Python 3.8 中,尝试在 :class:`Enum` 类中检查非 Enum 对象将引发 :exc:`TypeError` (例如 ``1 "
3482+
"in Color``);类似地,尝试在 :class:`Flag` 成员中检查非 Flag 对象也将引发 :exc:`TypeError` (例如 "
3483+
"``1 in Perm.RW``);目前,两种操作均会返回 :const:`False`。 (由 Ethan Furman 在 "
3484+
":issue:`33217` 中贡献。)"
34703485

34713486
#: ../../whatsnew/3.7.rst:1988
34723487
msgid "gettext"
@@ -3478,6 +3493,8 @@ msgid ""
34783493
" deprecated. It never correctly worked. (Contributed by Serhiy Storchaka in"
34793494
" :issue:`28692`.)"
34803495
msgstr ""
3496+
"使用非整数值在 :mod:`gettext` 中选择复数形式现在已弃用。 它从未正确地发挥作用。 (由 Serhiy Storchaka 在 "
3497+
":issue:`28692` 中贡献。)"
34813498

34823499
#: ../../whatsnew/3.7.rst:1998
34833500
msgid ""

0 commit comments

Comments
 (0)