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

Skip to content

Commit c85e298

Browse files
[po] auto sync
1 parent ae85f2a commit c85e298

4 files changed

Lines changed: 65 additions & 44 deletions

File tree

library/enum.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Arisaka97 <[email protected]>, 2020
88
# dannyvi <[email protected]>, 2020
99
# ppcfish <[email protected]>, 2020
10-
# Freesand Leo <[email protected]>, 2020
10+
# Freesand Leo <[email protected]>, 2021
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2020-09-23 15:13+0000\n"
1818
"PO-Revision-Date: 2020-05-30 12:01+0000\n"
19-
"Last-Translator: Freesand Leo <[email protected]>, 2020\n"
19+
"Last-Translator: Freesand Leo <[email protected]>, 2021\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"
@@ -154,8 +154,8 @@ msgid ""
154154
"The enum members have *names* and *values* (the name of :attr:`Color.RED` is"
155155
" ``RED``, the value of :attr:`Color.BLUE` is ``3``, etc.)"
156156
msgstr ""
157-
"枚举成员具有 *名称* 和 *值* (:attr:`Color.RED` 的名称为 ``RED``,:attr:`Color.BLUE` 的值为 "
158-
"``3`` 等等)"
157+
"枚举成员具有 *名称* 和 *值* (例如 :attr:`Color.RED` 的名称为 ``RED``,:attr:`Color.BLUE` 的值为 "
158+
"``3`` 等等)"
159159

160160
#: ../../library/enum.rst:103
161161
msgid ""

library/signal.po

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# cdarlint <[email protected]>, 2020
88
# Menghua Xiao <[email protected]>, 2020
99
# Meng Du <[email protected]>, 2020
10-
# Freesand Leo <[email protected]>, 2020
10+
# Freesand Leo <[email protected]>, 2021
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2020-12-20 15:58+0000\n"
1818
"PO-Revision-Date: 2020-05-30 12:09+0000\n"
19-
"Last-Translator: Freesand Leo <[email protected]>, 2020\n"
19+
"Last-Translator: Freesand Leo <[email protected]>, 2021\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"
@@ -447,76 +447,83 @@ msgid ""
447447
"attribute of :class:`threading.Thread` objects to get a suitable value for "
448448
"*thread_id*."
449449
msgstr ""
450+
"使用 :func:`threading.get_ident()` 或 :class:`threading.Thread` 对象的 "
451+
":attr:`~threading.Thread.ident` 属性为 *thread_id* 获取合适的值。"
450452

451453
#: ../../library/signal.rst:368
452454
msgid ""
453455
"If *signalnum* is 0, then no signal is sent, but error checking is still "
454456
"performed; this can be used to check if the target thread is still running."
455-
msgstr ""
457+
msgstr "如果 *signalnum* 为 0,则不会发送信号,但仍然会执行错误检测;这可被用来检测目标线程是否仍在运行。"
456458

457459
#: ../../library/signal.rst:372
458460
msgid ""
459461
"Raises an :ref:`auditing event <auditing>` ``signal.pthread_kill`` with "
460462
"arguments ``thread_id``, ``signalnum``."
461463
msgstr ""
464+
"引发一个 :ref:`审计事件 <auditing>` ``signal.pthread_kill``,附带参数 ``thread_id``, "
465+
"``signalnum``。"
462466

463467
#: ../../library/signal.rst:375
464468
msgid ""
465469
":ref:`Availability <availability>`: Unix. See the man page "
466470
":manpage:`pthread_kill(3)` for further information."
467471
msgstr ""
472+
":ref:`可用性 <availability>`: Unix。 更多信息请参见手册页面 :manpage:`pthread_kill(3)`。"
468473

469474
#: ../../library/signal.rst:376
470475
msgid "See also :func:`os.kill`."
471-
msgstr ""
476+
msgstr "另请参阅 :func:`os.kill`。"
472477

473478
#: ../../library/signal.rst:383
474479
msgid ""
475480
"Fetch and/or change the signal mask of the calling thread. The signal mask "
476481
"is the set of signals whose delivery is currently blocked for the caller. "
477482
"Return the old signal mask as a set of signals."
478-
msgstr ""
483+
msgstr "获取和/或修改调用方线程的信号掩码。 信号掩码是一组传送过程目前为调用者而阻塞的信号集。 返回旧的信号掩码作为一组信号。"
479484

480485
#: ../../library/signal.rst:387
481486
msgid ""
482487
"The behavior of the call is dependent on the value of *how*, as follows."
483-
msgstr ""
488+
msgstr "该调用的行为取决于 *how* 的值,具体见下。"
484489

485490
#: ../../library/signal.rst:389
486491
msgid ""
487492
":data:`SIG_BLOCK`: The set of blocked signals is the union of the current "
488493
"set and the *mask* argument."
489-
msgstr ""
494+
msgstr ":data:`SIG_BLOCK`: 被阻塞的信号集是当前集与 *mask* 参数的并集。"
490495

491496
#: ../../library/signal.rst:391
492497
msgid ""
493498
":data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current set "
494499
"of blocked signals. It is permissible to attempt to unblock a signal which "
495500
"is not blocked."
496-
msgstr ""
501+
msgstr ":data:`SIG_UNBLOCK`: *mask* 中的信号会从当前已阻塞信号集中被移除。 允许尝试取消对一个非阻塞信号的阻塞。"
497502

498503
#: ../../library/signal.rst:394
499504
msgid ""
500505
":data:`SIG_SETMASK`: The set of blocked signals is set to the *mask* "
501506
"argument."
502-
msgstr ""
507+
msgstr ":data:`SIG_SETMASK`: 已阻塞信号集会被设为 *mask* 参数的值。"
503508

504509
#: ../../library/signal.rst:397
505510
msgid ""
506511
"*mask* is a set of signal numbers (e.g. {:const:`signal.SIGINT`, "
507512
":const:`signal.SIGTERM`}). Use :func:`~signal.valid_signals` for a full mask"
508513
" including all signals."
509514
msgstr ""
515+
"*mask* 是一个信号编号集合 (例如 {:const:`signal.SIGINT`, :const:`signal.SIGTERM`})。 请使用"
516+
" :func:`~signal.valid_signals` 表示包含所有信号的完全掩码。"
510517

511518
#: ../../library/signal.rst:401
512519
msgid ""
513520
"For example, ``signal.pthread_sigmask(signal.SIG_BLOCK, [])`` reads the "
514521
"signal mask of the calling thread."
515-
msgstr ""
522+
msgstr "例如,``signal.pthread_sigmask(signal.SIG_BLOCK, [])`` 会读取调用方线程的信号掩码。"
516523

517524
#: ../../library/signal.rst:404
518525
msgid ":data:`SIGKILL` and :data:`SIGSTOP` cannot be blocked."
519-
msgstr ""
526+
msgstr ":data:`SIGKILL` 和 :data:`SIGSTOP` 不能被阻塞。"
520527

521528
#: ../../library/signal.rst:408
522529
msgid ""

library/symtable.po

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.8\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2020-02-09 12:40+0000\n"
14+
"POT-Creation-Date: 2020-12-31 16:07+0000\n"
1515
"PO-Revision-Date: 2020-05-30 12:11+0000\n"
1616
"Last-Translator: dannyvi <[email protected]>, 2020\n"
1717
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -186,41 +186,45 @@ msgid "Return ``True`` if the symbol is local to its block."
186186
msgstr ""
187187

188188
#: ../../library/symtable.rst:165
189+
msgid "Return ``True`` if the symbol is annotated."
190+
msgstr ""
191+
192+
#: ../../library/symtable.rst:171
189193
msgid ""
190194
"Return ``True`` if the symbol is referenced in its block, but not assigned "
191195
"to."
192196
msgstr ""
193197

194-
#: ../../library/symtable.rst:170
198+
#: ../../library/symtable.rst:176
195199
msgid "Return ``True`` if the symbol is assigned to in its block."
196200
msgstr ""
197201

198-
#: ../../library/symtable.rst:174
202+
#: ../../library/symtable.rst:180
199203
msgid "Return ``True`` if name binding introduces new namespace."
200204
msgstr ""
201205

202-
#: ../../library/symtable.rst:176
206+
#: ../../library/symtable.rst:182
203207
msgid ""
204208
"If the name is used as the target of a function or class statement, this "
205209
"will be true."
206210
msgstr ""
207211

208-
#: ../../library/symtable.rst:179
212+
#: ../../library/symtable.rst:185
209213
msgid "For example::"
210214
msgstr "例如 ::"
211215

212-
#: ../../library/symtable.rst:185
216+
#: ../../library/symtable.rst:191
213217
msgid ""
214218
"Note that a single name can be bound to multiple objects. If the result is "
215219
"``True``, the name may also be bound to other objects, like an int or list, "
216220
"that does not introduce a new namespace."
217221
msgstr ""
218222

219-
#: ../../library/symtable.rst:191
223+
#: ../../library/symtable.rst:197
220224
msgid "Return a list of namespaces bound to this name."
221225
msgstr ""
222226

223-
#: ../../library/symtable.rst:195
227+
#: ../../library/symtable.rst:201
224228
msgid ""
225229
"Return the namespace bound to this name. If more than one namespace is "
226230
"bound, :exc:`ValueError` is raised."

0 commit comments

Comments
 (0)