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

Skip to content

Commit db4f910

Browse files
[po] auto sync
1 parent c6f4b28 commit db4f910

49 files changed

Lines changed: 272 additions & 270 deletions

Some content is hidden

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

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/typeobj.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1933,9 +1933,9 @@ msgstr ""
19331933
msgid ""
19341934
"This bit is set when the object supports garbage collection. If this bit is"
19351935
" set, instances must be created using :c:func:`PyObject_GC_New` and "
1936-
"destroyed using :c:func:`PyObject_GC_Del`. More information in section :ref"
1937-
":`supporting-cycle-detection`. This bit also implies that the GC-related "
1938-
"fields :c:member:`~PyTypeObject.tp_traverse` and "
1936+
"destroyed using :c:func:`PyObject_GC_Del`. More information in section "
1937+
":ref:`supporting-cycle-detection`. This bit also implies that the GC-"
1938+
"related fields :c:member:`~PyTypeObject.tp_traverse` and "
19391939
":c:member:`~PyTypeObject.tp_clear` are present in the type object."
19401940
msgstr ""
19411941

distutils/builtdist.po

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

621621
#: ../../distutils/builtdist.rst:274
622622
msgid ""
623-
"If you wish, you can separate these three steps. You can use the :option:`!"
624-
"--spec-only` option to make :command:`bdist_rpm` just create the "
623+
"If you wish, you can separate these three steps. You can use the :option"
624+
":`!--spec-only` option to make :command:`bdist_rpm` just create the "
625625
":file:`.spec` file and exit; in this case, the :file:`.spec` file will be "
626626
"written to the \"distribution directory\"---normally :file:`dist/`, but "
627627
"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
@@ -300,8 +300,8 @@ msgid ""
300300
"distribution is created with Distutils, the metadata fields are written in a"
301301
" static file called :file:`PKG-INFO`. When a Distutils-based project is "
302302
"installed in Python, the :file:`PKG-INFO` file is copied alongside the "
303-
"modules and packages of the distribution under :file:`NAME-VERSION-"
304-
"pyX.X.egg-info`, where ``NAME`` is the name of the project, ``VERSION`` its "
303+
"modules and packages of the distribution under :file:`NAME-VERSION-pyX.X"
304+
".egg-info`, where ``NAME`` is the name of the project, ``VERSION`` its "
305305
"version as defined in the Metadata, and ``pyX.X`` the major and minor "
306306
"version of Python like ``2.7`` or ``3.2``."
307307
msgstr ""

distutils/introduction.po

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

distutils/sourcedist.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,8 @@ msgstr ""
327327
#: ../../distutils/sourcedist.rst:174
328328
msgid ""
329329
"You can disable the default set of included files with the :option:`!--no-"
330-
"defaults` option, and you can disable the standard exclude set with :option"
331-
":`!--no-prune`."
330+
"defaults` option, and you can disable the standard exclude set with "
331+
":option:`!--no-prune`."
332332
msgstr ""
333333

334334
#: ../../distutils/sourcedist.rst:178

faq/design.po

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

444444
#: ../../faq/design.rst:303
445445
msgid ""
446-
"Answer 2: Fortunately, there is `Stackless Python <https://github.com"
447-
"/stackless-dev/stackless/wiki>`_, which has a completely redesigned "
448-
"interpreter loop that avoids the C stack."
446+
"Answer 2: Fortunately, there is `Stackless Python "
447+
"<https://github.com/stackless-dev/stackless/wiki>`_, which has a completely "
448+
"redesigned interpreter loop that avoids the C stack."
449449
msgstr ""
450450
"答案2: 幸运的是, `Stackless Python <https://github.com/stackless-"
451451
"dev/stackless/wiki>`_ 有一个完全重新设计的解释器循环,可以避免C堆栈。"
@@ -521,8 +521,8 @@ msgid ""
521521
"reference counting implementation."
522522
msgstr ""
523523
"但是,其他实现(如 `Jython <http://www.jython.org>`_ 或 `PyPy "
524-
"<http://www.pypy.org>`_ ),)可以依赖不同的机制,如完全的垃圾回收器 "
525-
"。如果你的Python代码依赖于引用计数实现的行为,则这种差异可能会导致一些微妙的移植问题。"
524+
"<http://www.pypy.org>`_ "
525+
"),)可以依赖不同的机制,如完全的垃圾回收器 。如果你的Python代码依赖于引用计数实现的行为,则这种差异可能会导致一些微妙的移植问题。"
526526

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

966966
#: ../../faq/design.rst:643
967967
msgid ""

faq/general.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ msgid ""
219219
"between files), Internet protocols (HTTP, FTP, SMTP, XML-RPC, POP, IMAP, CGI"
220220
" programming), software engineering (unit testing, logging, profiling, "
221221
"parsing Python code), and operating system interfaces (system calls, "
222-
"filesystems, TCP/IP sockets). Look at the table of contents for "
223-
":ref:`library-index` to get an idea of what's available. A wide variety of "
222+
"filesystems, TCP/IP sockets). Look at the table of contents for :ref"
223+
":`library-index` to get an idea of what's available. A wide variety of "
224224
"third-party extensions are also available. Consult `the Python Package "
225225
"Index <https://pypi.org>`_ to find packages of interest to you."
226226
msgstr ""

howto/logging.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,8 @@ msgid ""
336336
"simple usage pattern, you won't know, by looking in the log file, *where* in"
337337
" your application your messages came from, apart from looking at the event "
338338
"description. If you want to track the location of your messages, you'll need"
339-
" to refer to the documentation beyond the tutorial level -- see "
340-
":ref:`logging-advanced-tutorial`."
339+
" to refer to the documentation beyond the tutorial level -- see :ref"
340+
":`logging-advanced-tutorial`."
341341
msgstr ""
342342
"这是你期待看到的。 你可以使用 *mylib.py* 中的模式将此概括为多个模块。 "
343343
"请注意,对于这种简单的使用模式,除了查看事件描述之外,你不能通过查看日志文件来了解应用程序中消息的 *来源* 。 "
@@ -855,8 +855,8 @@ msgid ""
855855
"arguments), while if the style is '$' then the message format string should "
856856
"conform to what is expected by :meth:`string.Template.substitute`."
857857
msgstr ""
858-
"如果 ``style`` 是 '%',则消息格式字符串使用 ``%(<dictionary key>)s`` 样式字符串替换;可能的键值在 "
859-
":ref:`logrecord-attributes` 中。 如果样式为 '{',则假定消息格式字符串与 :meth:`str.format` "
858+
"如果 ``style`` 是 '%',则消息格式字符串使用 ``%(<dictionary key>)s`` 样式字符串替换;可能的键值在 :ref"
859+
":`logrecord-attributes` 中。 如果样式为 '{',则假定消息格式字符串与 :meth:`str.format` "
860860
"(使用关键字参数)兼容,而如果样式为 '$' ,则消息格式字符串应符合 :meth:`string.Template.substitute` 。"
861861

862862
#: ../../howto/logging.rst:555

howto/unicode.po

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ msgid ""
404404
"names; for example, ``'latin-1'``, ``'iso_8859_1'`` and ``'8859``' are all "
405405
"synonyms for the same encoding."
406406
msgstr ""
407-
"编码格式以包含编码格式名称的字符串来指明。 Python 有大约 100 种不同的编码格式;清单详见 Python 库参考文档 :ref"
408-
":`standard-encodings`。 一些编码格式有多个名称,比如 ``'latin-1'``、``'iso_8859_1'`` 和 "
407+
"编码格式以包含编码格式名称的字符串来指明。 Python 有大约 100 种不同的编码格式;清单详见 Python 库参考文档 "
408+
":ref:`standard-encodings`。 一些编码格式有多个名称,比如 ``'latin-1'``、``'iso_8859_1'`` 和 "
409409
"``'8859`` 都是指同一种编码。"
410410

411411
#: ../../howto/unicode.rst:253
@@ -1015,10 +1015,11 @@ msgstr ""
10151015
#: ../../howto/unicode.rst:740
10161016
msgid ""
10171017
"The `PDF slides for Marc-André Lemburg's presentation \"Writing Unicode-"
1018-
"aware Applications in Python\" <https://downloads.egenix.com/python/LSM2005"
1019-
"-Developing-Unicode-aware-applications-in-Python.pdf>`_ discuss questions of"
1020-
" character encodings as well as how to internationalize and localize an "
1021-
"application. These slides cover Python 2.x only."
1018+
"aware Applications in Python\" "
1019+
"<https://downloads.egenix.com/python/LSM2005-Developing-Unicode-aware-"
1020+
"applications-in-Python.pdf>`_ discuss questions of character encodings as "
1021+
"well as how to internationalize and localize an application. These slides "
1022+
"cover Python 2.x only."
10221023
msgstr ""
10231024
"`Marc-André Lemburg 演示的PDF 幻灯片“在 Python 中编写支持 Unicode 的应用程序” "
10241025
"<https://downloads.egenix.com/python/LSM2005-Developing-Unicode-aware-"

0 commit comments

Comments
 (0)