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

Skip to content

Commit 34c8fd0

Browse files
[po] auto sync
1 parent dd060a1 commit 34c8fd0

33 files changed

Lines changed: 136 additions & 142 deletions

c-api/index.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ msgstr "Python/C API 参考手册"
2929
#: ../../c-api/index.rst:7
3030
msgid ""
3131
"This manual documents the API used by C and C++ programmers who want to "
32-
"write extension modules or embed Python. It is a companion to "
33-
":ref:`extending-index`, which describes the general principles of extension "
32+
"write extension modules or embed Python. It is a companion to :ref"
33+
":`extending-index`, which describes the general principles of extension "
3434
"writing but does not document the API functions in detail."
3535
msgstr ""
36-
"本手册描述了希望编写扩展模块并将 Python 解释器嵌入其应用程序中的 C 和 C++ 程序员可用的 API。同时可以参阅 "
37-
":ref:`extending-index` ,其中描述了扩展编写的一般原则,但没有详细描述 API 函数。"
36+
"本手册描述了希望编写扩展模块并将 Python 解释器嵌入其应用程序中的 C 和 C++ 程序员可用的 API。同时可以参阅 :ref"
37+
":`extending-index` ,其中描述了扩展编写的一般原则,但没有详细描述 API 函数。"

distutils/apiref.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ msgstr "*maintainer*"
136136
#: ../../distutils/apiref.rst:51
137137
msgid ""
138138
"The name of the current maintainer, if different from the author. Note that "
139-
"if the maintainer is provided, distutils will use it as the author in "
140-
":file:`PKG-INFO`"
139+
"if the maintainer is provided, distutils will use it as the author in :file"
140+
":`PKG-INFO`"
141141
msgstr ""
142142

143143
#: ../../distutils/apiref.rst:58

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/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`。"

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 "
501-
"<https://github.com/stackless-dev/stackless/wiki>`_, which has a completely "
502-
"redesigned interpreter loop that avoids the C stack."
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."
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-
"原始字符串的设计是为了方便想要执行自己的反斜杠转义处理的处理器(主要是正则表达式引擎)创建输入。此类处理器将不匹配的尾随反斜杠视为错误,因此原始字符串不允许这样做。反过来,允许通过使用引号字符转义反斜杠转义字符串。当r-"
1007-
"string用于它们的预期目的时,这些规则工作的很好。"
1006+
"原始字符串的设计是为了方便想要执行自己的反斜杠转义处理的处理器(主要是正则表达式引擎)创建输入。此类处理器将不匹配的尾随反斜杠视为错误,因此原始字符串不允许这样做。反过来,允许通过使用引号字符转义反斜杠转义字符串"
1007+
"。当r-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 "
41-
":ref:`extending-index`."
40+
"exceptions and even new types in C. This is explained in the document :ref"
41+
":`extending-index`."
4242
msgstr "是的,您可以在C中创建包含函数、变量、异常甚至新类型的内置模块。在文档 :ref:`extending-index` 中有说明。"
4343

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

glossary.po

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

20732073
#: ../../glossary.rst:1053
20742074
msgid ""
2075-
"See also :term:`binary file` for a file object able to read and write "
2076-
":term:`bytes-like objects <bytes-like object>`."
2075+
"See also :term:`binary file` for a file object able to read and write :term"
2076+
":`bytes-like objects <bytes-like object>`."
20772077
msgstr ""
20782078
"另请参看 :term:`binary file` 了解能够读写 :term:`字节类对象 <bytes-like object>` 的文件对象。"
20792079

howto/curses.po

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ msgstr ""
124124
msgid ""
125125
"The Windows version of Python doesn't include the :mod:`curses` module. A "
126126
"ported version called `UniCurses <https://pypi.org/project/UniCurses>`_ is "
127-
"available. You could also try `the Console module "
128-
"<http://effbot.org/zone/console-index.htm>`_ written by Fredrik Lundh, which"
129-
" doesn't use the same API as curses but provides cursor-addressable text "
130-
"output and full support for mouse and keyboard input."
127+
"available. You could also try `the Console module <http://effbot.org/zone"
128+
"/console-index.htm>`_ written by Fredrik Lundh, which doesn't use the same "
129+
"API as curses but provides cursor-addressable text output and full support "
130+
"for mouse and keyboard input."
131131
msgstr ""
132132
"Windows 版本的 Python 不包含 :mod:`curses` 模块。提供了一个名为 `UniCurses "
133133
"<https://pypi.org/project/UniCurses>`_ 的移植版本。也可以尝试使用 Fredrik Lundh 编写 `the "
@@ -882,10 +882,9 @@ msgstr ""
882882

883883
#: ../../howto/curses.rst:550
884884
msgid ""
885-
"`\"Console Applications with Urwid\" "
886-
"<http://www.pyvideo.org/video/1568/console-applications-with-urwid>`_: video"
887-
" of a PyCon CA 2012 talk demonstrating some applications written using "
888-
"Urwid."
885+
"`\"Console Applications with Urwid\" <http://www.pyvideo.org/video/1568"
886+
"/console-applications-with-urwid>`_: video of a PyCon CA 2012 talk "
887+
"demonstrating some applications written using Urwid."
889888
msgstr ""
890889
"`\"使用 Urwid 的控制台应用程序\" <http://www.pyvideo.org/video/1568/console-"
891890
"applications-with-urwid>`_: 一场演示使用 Urwid 编写应用程序的 PyCon CA 2012 演讲的视频。"

howto/urllib2.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,8 @@ msgstr ""
194194
#: ../../howto/urllib2.rst:131
195195
msgid ""
196196
"Note that other encodings are sometimes required (e.g. for file upload from "
197-
"HTML forms - see `HTML Specification, Form Submission "
198-
"<https://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13>`_ for more "
199-
"details)."
197+
"HTML forms - see `HTML Specification, Form Submission <https://www.w3.org/TR"
198+
"/REC-html40/interact/forms.html#h-17.13>`_ for more details)."
200199
msgstr ""
201200
"请注意,有时还需要采用其他编码,比如由 HTML 表单上传文件——更多细节请参见 `HTML 规范,提交表单 "
202201
"<https://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13>`_ 。 "

library/array.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ msgid ""
240240
"the optional *initializer* value, which must be a list, a :term:`bytes-like "
241241
"object`, or iterable over elements of the appropriate type."
242242
msgstr ""
243-
"一个包含由 *typecode* 限制类型的条目的新数组,并由可选的 *initializer* "
244-
"值进行初始化,该值必须为一个列表、:term:`bytes-like object` 或包含正确类型元素的可迭代对象。"
243+
"一个包含由 *typecode* 限制类型的条目的新数组,并由可选的 *initializer* 值进行初始化,该值必须为一个列表、:term"
244+
":`bytes-like object` 或包含正确类型元素的可迭代对象。"
245245

246246
#: ../../library/array.rst:74
247247
msgid ""

0 commit comments

Comments
 (0)