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

Skip to content

Commit ced89f0

Browse files
[po] auto sync
1 parent bfcc36a commit ced89f0

39 files changed

Lines changed: 270 additions & 282 deletions

bugs.po

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

6463
#: ../../bugs.rst:22
6564
msgid ""
@@ -92,8 +91,8 @@ msgstr "在追踪系统上参与问题改进的过程概述。"
9291

9392
#: ../../bugs.rst:35
9493
msgid ""
95-
"`Helping with Documentation "
96-
"<https://devguide.python.org/docquality/#helping-with-documentation>`_"
94+
"`Helping with Documentation <https://devguide.python.org/docquality"
95+
"/#helping-with-documentation>`_"
9796
msgstr ""
9897
"`改进文档 <https://devguide.python.org/docquality/#helping-with-documentation>`_"
9998

distutils/builtdist.po

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

600600
#: ../../distutils/builtdist.rst:268
601601
msgid ""
602-
"If you wish, you can separate these three steps. You can use the :option:`!"
603-
"--spec-only` option to make :command:`bdist_rpm` just create the "
602+
"If you wish, you can separate these three steps. You can use the :option"
603+
":`!--spec-only` option to make :command:`bdist_rpm` just create the "
604604
":file:`.spec` file and exit; in this case, the :file:`.spec` file will be "
605605
"written to the \"distribution directory\"---normally :file:`dist/`, but "
606606
"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
@@ -43,8 +43,8 @@ msgstr ""
4343
msgid ""
4444
"This document covers using the Distutils to distribute your Python modules, "
4545
"concentrating on the role of developer/distributor: if you're looking for "
46-
"information on installing Python modules, you should refer to the "
47-
":ref:`install-index` chapter."
46+
"information on installing Python modules, you should refer to the :ref"
47+
":`install-index` chapter."
4848
msgstr ""
4949
"本文档介绍了使用 Distutils 模块分发你的 Python 模块,主要是针对开发者/分发者的使用的——如果你想了解如何安装 Python "
5050
"模块,你应该参考这个章节: :ref:`install-index`。"

distutils/uploading.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ msgstr "上传包到包索引"
2828

2929
#: ../../distutils/uploading.rst:7
3030
msgid ""
31-
"References to up to date PyPI documentation can be found at "
32-
":ref:`publishing-python-packages`."
31+
"References to up to date PyPI documentation can be found at :ref"
32+
":`publishing-python-packages`."
3333
msgstr "供参考的最新 PyPI 文档可以在 :ref:`publishing-python-packages` 找到。"

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

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 ""

faq/library.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,12 +293,12 @@ msgstr "怎样用 docstring 创建文档?"
293293
msgid ""
294294
"The :mod:`pydoc` module can create HTML from the doc strings in your Python "
295295
"source code. An alternative for creating API documentation purely from "
296-
"docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx "
297-
"<http://sphinx-doc.org>`_ can also include docstring content."
296+
"docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx <http"
297+
"://sphinx-doc.org>`_ can also include docstring content."
298298
msgstr ""
299299
":mod:`pydoc` 模块可以用 Python 源码中的 docstring 创建 HTML 文件。也可以使用 `epydoc "
300-
"<http://epydoc.sourceforge.net/>`_ 来只通过 docstring 创建 API 文档。`Sphinx "
301-
"<http://sphinx-doc.org>`_ 也可以引入 docstring 的内容。"
300+
"<http://epydoc.sourceforge.net/>`_ 来只通过 docstring 创建 API 文档。`Sphinx <http"
301+
"://sphinx-doc.org>`_ 也可以引入 docstring 的内容。"
302302

303303
#: ../../faq/library.rst:191
304304
msgid "How do I get a single keypress at a time?"

howto/sockets.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ msgid ""
144144
msgstr ""
145145
"有几件事需要注意:我们使用了 ``socket.gethostname()``,所以套接字将外网可见。如果我们使用的是 "
146146
"``s.bind(('localhost', 80))`` 或者 ``s.bind(('127.0.0.1', "
147-
"80))``,也会得到一个「服务端」套接字,但是后者只在同一机器上可见。``s.bind(('', "
148-
"80))`` 则指定套接字可以被机器上的任何地址碰巧连接"
147+
"80))``,也会得到一个「服务端」套接字,但是后者只在同一机器上可见。``s.bind(('', 80))`` "
148+
"则指定套接字可以被机器上的任何地址碰巧连接"
149149

150150
#: ../../howto/sockets.rst:87
151151
msgid ""

howto/urllib2.po

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

installing/index.po

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ msgid ""
148148
"`Python Packaging User Guide: Creating and using virtual environments "
149149
"<https://packaging.python.org/installing/#creating-virtual-environments>`__"
150150
msgstr ""
151-
"`Python 软件包用户指南:创建和使用虚拟环境 "
152-
"<https://packaging.python.org/installing/#creating-virtual-environments>`__"
151+
"`Python 软件包用户指南:创建和使用虚拟环境 <https://packaging.python.org/installing"
152+
"/#creating-virtual-environments>`__"
153153

154154
#: ../../installing/index.rst:75
155155
msgid "Basic usage"
@@ -248,9 +248,8 @@ msgid ""
248248
"<https://packaging.python.org/installing/#requirements-for-installing-"
249249
"packages>`__"
250250
msgstr ""
251-
"`Python 软件包用户指南:安装软件包的前提要求 "
252-
"<https://packaging.python.org/installing/#requirements-for-installing-"
253-
"packages>`__"
251+
"`Python 软件包用户指南:安装软件包的前提要求 <https://packaging.python.org/installing"
252+
"/#requirements-for-installing-packages>`__"
254253

255254
#: ../../installing/index.rst:142
256255
msgid "... install packages just for the current user?"

0 commit comments

Comments
 (0)