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

Skip to content

Commit bfeea8e

Browse files
[po] auto sync
1 parent bfbea52 commit bfeea8e

60 files changed

Lines changed: 278 additions & 275 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bugs.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ msgid ""
6161
"tracker>`. If you have a suggestion on how to fix it, include that as well."
6262
msgstr ""
6363
"如果您在本文档中发现了错误并打算帮助我们改进,请将错误提交到 :ref:`追踪系统 <using-the-tracker>`。 "
64-
"如果您有相应的修正建议,请一并提交。 (译者注:如果是中文文档翻译相关的错误,请务必提交到 https://github.com/python"
65-
"/python-docs-zh-cn/issues。如果将翻译问题反馈到了其他地方,可能会因为语言不通而不能及时处理。)"
64+
"如果您有相应的修正建议,请一并提交。 (译者注:如果是中文文档翻译相关的错误,请务必提交到 "
65+
"https://github.com/python/python-docs-zh-"
66+
"cn/issues。如果将翻译问题反馈到了其他地方,可能会因为语言不通而不能及时处理。)"
6667

6768
#: ../../bugs.rst:22
6869
msgid ""

c-api/arg.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ msgstr "解析参数并构建值变量"
3737
#: ../../c-api/arg.rst:8
3838
msgid ""
3939
"These functions are useful when creating your own extensions functions and "
40-
"methods. Additional information and examples are available in "
41-
":ref:`extending-index`."
40+
"methods. Additional information and examples are available in :ref"
41+
":`extending-index`."
4242
msgstr "在创建你自己的扩展函数和方法时,这些函数是有用的。其它的信息和样例见 :ref:`extending-index` 。"
4343

4444
#: ../../c-api/arg.rst:12

c-api/init.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -933,9 +933,9 @@ msgid ""
933933
"process forks only the thread that issued the fork will exist. That also "
934934
"means any locks held by other threads will never be released. Python solves "
935935
"this for :func:`os.fork` by acquiring the locks it uses internally before "
936-
"the fork, and releasing them afterwards. In addition, it resets any :ref"
937-
":`lock-objects` in the child. When extending or embedding Python, there is "
938-
"no way to inform Python of additional (non-Python) locks that need to be "
936+
"the fork, and releasing them afterwards. In addition, it resets any "
937+
":ref:`lock-objects` in the child. When extending or embedding Python, there "
938+
"is no way to inform Python of additional (non-Python) locks that need to be "
939939
"acquired before or reset after a fork. OS facilities such as "
940940
":c:func:`pthread_atfork` would need to be used to accomplish the same thing."
941941
" Additionally, when extending or embedding Python, calling :c:func:`fork` "

distutils/builtdist.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,8 @@ msgstr ""
604604

605605
#: ../../distutils/builtdist.rst:269
606606
msgid ""
607-
"If you wish, you can separate these three steps. You can use the :option"
608-
":`!--spec-only` option to make :command:`bdist_rpm` just create the "
607+
"If you wish, you can separate these three steps. You can use the :option:`!"
608+
"--spec-only` option to make :command:`bdist_rpm` just create the "
609609
":file:`.spec` file and exit; in this case, the :file:`.spec` file will be "
610610
"written to the \"distribution directory\"---normally :file:`dist/`, but "
611611
"customizable with the :option:`!--dist-dir` option. (Normally, the "

distutils/examples.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ msgid ""
291291
"distribution is created with Distutils, the metadata fields are written in a"
292292
" static file called :file:`PKG-INFO`. When a Distutils-based project is "
293293
"installed in Python, the :file:`PKG-INFO` file is copied alongside the "
294-
"modules and packages of the distribution under :file:`NAME-VERSION-"
295-
"pyX.X.egg-info`, where ``NAME`` is the name of the project, ``VERSION`` its "
294+
"modules and packages of the distribution under :file:`NAME-VERSION-pyX.X"
295+
".egg-info`, where ``NAME`` is the name of the project, ``VERSION`` its "
296296
"version as defined in the Metadata, and ``pyX.X`` the major and minor "
297297
"version of Python like ``2.7`` or ``3.2``."
298298
msgstr ""

distutils/introduction.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ msgstr "Distutils 模块介绍"
3434
msgid ""
3535
"This document covers using the Distutils to distribute your Python modules, "
3636
"concentrating on the role of developer/distributor: if you're looking for "
37-
"information on installing Python modules, you should refer to the "
38-
":ref:`install-index` chapter."
37+
"information on installing Python modules, you should refer to the :ref"
38+
":`install-index` chapter."
3939
msgstr ""
4040
"本文档介绍了使用 Distutils 模块分发你的 Python 模块,主要是针对开发者/分发者的使用的——如果你想了解如何安装 Python "
4141
"模块,你应该参考这个章节: :ref:`install-index`。"

extending/extending.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,9 +1035,9 @@ msgid ""
10351035
" available."
10361036
msgstr ""
10371037
"循环探测器可以检测垃圾循环并回收。 :mod:`gc` 模块提供了方法运行探测器 ( :func:`~gc.collect` 函数) "
1038-
",而且可以在运行时配置禁用探测器。循环探测器被当作可选组件,默认是包含的,也可以在构建时禁用,在Unix平台(包括Mac OS X)使用 :option"
1039-
":`!--without-cycle-gc` 选项到 :program:`configure` 脚本。如果循环探测器被禁用, :mod:`gc` "
1040-
"模块就不可用了。"
1038+
",而且可以在运行时配置禁用探测器。循环探测器被当作可选组件,默认是包含的,也可以在构建时禁用,在Unix平台(包括Mac OS X)使用 "
1039+
":option:`!--without-cycle-gc` 选项到 :program:`configure` 脚本。如果循环探测器被禁用, "
1040+
":mod:`gc` 模块就不可用了。"
10411041

10421042
#: ../../extending/extending.rst:917
10431043
msgid "Reference Counting in Python"

faq/design.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -497,9 +497,9 @@ msgstr ""
497497

498498
#: ../../faq/design.rst:352
499499
msgid ""
500-
"Answer 2: Fortunately, there is `Stackless Python <https://github.com"
501-
"/stackless-dev/stackless/wiki>`_, which has a completely redesigned "
502-
"interpreter loop that avoids the C stack."
500+
"Answer 2: Fortunately, there is `Stackless Python "
501+
"<https://github.com/stackless-dev/stackless/wiki>`_, which has a completely "
502+
"redesigned interpreter loop that avoids the C stack."
503503
msgstr ""
504504
"答案2: 幸运的是, `Stackless Python <https://github.com/stackless-"
505505
"dev/stackless/wiki>`_ 有一个完全重新设计的解释器循环,可以避免C堆栈。"
@@ -575,8 +575,8 @@ msgid ""
575575
"reference counting implementation."
576576
msgstr ""
577577
"但是,其他实现(如 `Jython <http://www.jython.org>`_ 或 `PyPy "
578-
"<http://www.pypy.org>`_ ),)可以依赖不同的机制,如完全的垃圾回收器 "
579-
"。如果你的Python代码依赖于引用计数实现的行为,则这种差异可能会导致一些微妙的移植问题。"
578+
"<http://www.pypy.org>`_ "
579+
"),)可以依赖不同的机制,如完全的垃圾回收器 。如果你的Python代码依赖于引用计数实现的行为,则这种差异可能会导致一些微妙的移植问题。"
580580

581581
#: ../../faq/design.rst:399
582582
msgid ""
@@ -1003,8 +1003,8 @@ msgid ""
10031003
" pass on the string quote character by escaping it with a backslash. These "
10041004
"rules work well when r-strings are used for their intended purpose."
10051005
msgstr ""
1006-
"原始字符串的设计是为了方便想要执行自己的反斜杠转义处理的处理器(主要是正则表达式引擎)创建输入。此类处理器将不匹配的尾随反斜杠视为错误,因此原始字符串不允许这样做。反过来,允许通过使用引号字符转义反斜杠转义字符串"
1007-
"。当r-string用于它们的预期目的时,这些规则工作的很好。"
1006+
"原始字符串的设计是为了方便想要执行自己的反斜杠转义处理的处理器(主要是正则表达式引擎)创建输入。此类处理器将不匹配的尾随反斜杠视为错误,因此原始字符串不允许这样做。反过来,允许通过使用引号字符转义反斜杠转义字符串。当r-"
1007+
"string用于它们的预期目的时,这些规则工作的很好。"
10081008

10091009
#: ../../faq/design.rst:685
10101010
msgid ""

faq/extending.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ msgstr "可以使用C语言中创建自己的函数吗?"
3737
#: ../../faq/extending.rst:18
3838
msgid ""
3939
"Yes, you can create built-in modules containing functions, variables, "
40-
"exceptions and even new types in C. This is explained in the document :ref"
41-
":`extending-index`."
40+
"exceptions and even new types in C. This is explained in the document "
41+
":ref:`extending-index`."
4242
msgstr "是的,您可以在C中创建包含函数、变量、异常甚至新类型的内置模块。在文档 :ref:`extending-index` 中有说明。"
4343

4444
#: ../../faq/extending.rst:22

faq/gui.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ msgstr "Gtk+"
144144
msgid ""
145145
"The `GObject introspection bindings "
146146
"<https://wiki.gnome.org/Projects/PyGObject>`_ for Python allow you to write "
147-
"GTK+ 3 applications. There is also a `Python GTK+ 3 Tutorial <https"
148-
"://python-gtk-3-tutorial.readthedocs.io>`_."
147+
"GTK+ 3 applications. There is also a `Python GTK+ 3 Tutorial "
148+
"<https://python-gtk-3-tutorial.readthedocs.io>`_."
149149
msgstr ""
150150
"针对 Python 的 `GObject 内省绑定 <https://wiki.gnome.org/Projects/PyGObject>`_ "
151151
"可以用于编写 GTK+ 3 应用。 另请参阅 `Python GTK+ 3 教程 <https://python-"

0 commit comments

Comments
 (0)