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

Skip to content

Commit 06f4358

Browse files
[po] auto sync
1 parent 2718f3e commit 06f4358

4 files changed

Lines changed: 17 additions & 9 deletions

File tree

howto/curses.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ msgid ""
279279
"returning the new window object. ::"
280280
msgstr ""
281281
"函数 :func:`~curses.initscr` 返回的 ``stdscr`` "
282-
"对象覆盖整个屏幕。许多程序可能只需要这一个窗口,但你可能希望把屏幕分割为多个更小的窗口,来分别重绘或者清楚它们。函数 "
282+
"对象覆盖整个屏幕。许多程序可能只需要这一个窗口,但你可能希望把屏幕分割为多个更小的窗口,来分别重绘或者清除它们。函数 "
283283
":func:`~curses.newwin` 根据给定的尺寸创建一个新窗口,并返回这个新的窗口对象:"
284284

285285
#: ../../howto/curses.rst:185

howto/logging-cookbook.po

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
# 欢 王 <[email protected]>, 2018
99
# MuSheng Chen <[email protected]>, 2019
1010
# 非法操作 <[email protected]>, 2019
11-
# Freesand Leo <[email protected]>, 2019
1211
# 浩听 王 <[email protected]>, 2019
1312
# Shengjing Zhu <[email protected]>, 2019
1413
# Meng Du <[email protected]>, 2020
14+
# Freesand Leo <[email protected]>, 2020
1515
#
1616
#, fuzzy
1717
msgid ""
@@ -20,7 +20,7 @@ msgstr ""
2020
"Report-Msgid-Bugs-To: \n"
2121
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
2222
"PO-Revision-Date: 2017-02-16 17:45+0000\n"
23-
"Last-Translator: Meng Du <alphanow@gmail.com>, 2020\n"
23+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2020\n"
2424
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2525
"MIME-Version: 1.0\n"
2626
"Content-Type: text/plain; charset=UTF-8\n"
@@ -499,6 +499,11 @@ msgid ""
499499
" lock functionality on all platforms (see "
500500
"https://bugs.python.org/issue3770)."
501501
msgstr ""
502+
"你也可以编写你自己的处理程序,让其使用 :mod:`multiprocessing` 模块中的 "
503+
":class:`~multiprocessing.Lock` 类来顺序访问你的多个进程中的文件。 现有的 :class:`FileHandler` "
504+
"及其子类目前并不使用 :mod:`multiprocessing`,尽管它们将来可能会这样做。 "
505+
"请注意在目前,:mod:`multiprocessing` 模块并未在所有平台上都提供可用的锁功能 (参见 "
506+
"https://bugs.python.org/issue3770)。"
502507

503508
#: ../../howto/logging-cookbook.rst:734
504509
msgid ""

library/trace.po

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# Freesand Leo <[email protected]>, 2020
8+
# yujie pu <[email protected]>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
1516
"PO-Revision-Date: 2017-02-16 23:32+0000\n"
16-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2020\n"
17+
"Last-Translator: yujie pu <614457953@qq.com>, 2020\n"
1718
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,11 +24,11 @@ msgstr ""
2324

2425
#: ../../library/trace.rst:2
2526
msgid ":mod:`trace` --- Trace or track Python statement execution"
26-
msgstr ""
27+
msgstr ":mod:`trace` --- 跟踪Python语句执行"
2728

2829
#: ../../library/trace.rst:7
2930
msgid "**Source code:** :source:`Lib/trace.py`"
30-
msgstr ""
31+
msgstr "**源代码:** :source:`Lib/trace.py`"
3132

3233
#: ../../library/trace.rst:11
3334
msgid ""
@@ -36,10 +37,12 @@ msgid ""
3637
" list functions executed during a program run. It can be used in another "
3738
"program or from the command line."
3839
msgstr ""
40+
"模块 :mod:`trace` module "
41+
"允许你跟踪程序的执行过程,生成带注释的语句覆盖率列表,打印调用/被调用关系以及列出在程序运行期间执行过的函数。可以在其他程序或者命令行中使用它"
3942

4043
#: ../../library/trace.rst:19
4144
msgid "`Coverage.py <https://coverage.readthedocs.io/>`_"
42-
msgstr ""
45+
msgstr "`Coverage.py <https://coverage.readthedocs.io/>`_"
4346

4447
#: ../../library/trace.rst:19
4548
msgid ""

tutorial/modules.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,9 +584,9 @@ msgid ""
584584
"package that were explicitly loaded by previous :keyword:`import` "
585585
"statements. Consider this code::"
586586
msgstr ""
587-
"如果没有定义 ``__all__``,``from sound.effects import *`` 语句 *不* 会从包 "
587+
"如果没有定义 ``__all__``,``from sound.effects import *`` 语句 *不会* 从包 "
588588
":mod:`sound.effects` 中导入所有子模块到当前命名空间;它只确保导入了包 :mod:`sound.effects` (可能运行任何在 "
589-
":file:`__init__.py` 中的初始化代码),然后导入包中定义的任何名称。这包括 :file:`__init__.py`` "
589+
":file:`__init__.py` 中的初始化代码),然后导入包中定义的任何名称。 这包括 :file:`__init__.py` "
590590
"定义的任何名称(以及显式加载的子模块)。它还包括由之前的 :keyword:`import` 语句显式加载的包的任何子模块。思考下面的代码::"
591591

592592
#: ../../tutorial/modules.rst:521

0 commit comments

Comments
 (0)