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

Skip to content

Commit fde1f60

Browse files
committed
[po] auto sync bot
1 parent d5d73ea commit fde1f60

2 files changed

Lines changed: 27 additions & 14 deletions

File tree

c-api/number.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ msgstr "如果对象 ‘o’ 提供数字协议,返回真(1),否则返
3535
msgid ""
3636
"Returns the result of adding *o1* and *o2*, or *NULL* on failure. This is "
3737
"the equivalent of the Python expression ``o1 + o2``."
38-
msgstr ""
38+
msgstr "返回 *o1* 、*o2*相加的结果,如果失败,返回 *NULL* 。等价于Python中的表达式 ``o1 + o2``"
3939

4040
#: ../../c-api/number.rst:23
4141
msgid ""
4242
"Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. "
4343
"This is the equivalent of the Python expression ``o1 - o2``."
44-
msgstr ""
44+
msgstr "返回 *o1* 减去 *o2* 的结果,如果失败,返回 *NULL* 。等价于Python中的表达式 ``o1 - o2``"
4545

4646
#: ../../c-api/number.rst:29
4747
msgid ""
4848
"Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. This"
4949
" is the equivalent of the Python expression ``o1 * o2``."
50-
msgstr ""
50+
msgstr "返回*o1* 、*o2*相乘的结果,如果失败,返回 *NULL* 。等价于Python中的表达式 ``o1 * o2``"
5151

5252
#: ../../c-api/number.rst:35
5353
msgid ""

using/windows.po

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -940,48 +940,48 @@ msgstr "除了标准的CPython发行版之外,还有一些包含附加功能
940940

941941
#: ../../using/windows.rst:489
942942
msgid "`ActivePython <https://www.activestate.com/activepython/>`_"
943-
msgstr ""
943+
msgstr "`ActivePython <https://www.activestate.com/activepython/>`_"
944944

945945
#: ../../using/windows.rst:489
946946
msgid "Installer with multi-platform compatibility, documentation, PyWin32"
947-
msgstr ""
947+
msgstr "具有多平台兼容性的安装程序,文档,PyWin32"
948948

949949
#: ../../using/windows.rst:493
950950
msgid "`Anaconda <https://www.anaconda.com/download/>`_"
951-
msgstr ""
951+
msgstr "`Anaconda <https://www.anaconda.com/download/>`_"
952952

953953
#: ../../using/windows.rst:492
954954
msgid ""
955955
"Popular scientific modules (such as numpy, scipy and pandas) and the "
956956
"``conda`` package manager."
957-
msgstr ""
957+
msgstr "流行的科学模块(如numpy,scipy和pandas)和 ``conda`` 包管理器。"
958958

959959
#: ../../using/windows.rst:497
960960
msgid "`Canopy <https://www.enthought.com/product/canopy/>`_"
961-
msgstr ""
961+
msgstr "`Canopy <https://www.enthought.com/product/canopy/>`_"
962962

963963
#: ../../using/windows.rst:496
964964
msgid ""
965965
"A \"comprehensive Python analysis environment\" with editors and other "
966966
"development tools."
967-
msgstr ""
967+
msgstr "具有编辑器和其他开发工具的“全面的Python分析环境”。"
968968

969969
#: ../../using/windows.rst:501
970970
msgid "`WinPython <https://winpython.github.io/>`_"
971-
msgstr ""
971+
msgstr "`WinPython <https://winpython.github.io/>`_"
972972

973973
#: ../../using/windows.rst:500
974974
msgid ""
975975
"Windows-specific distribution with prebuilt scientific packages and tools "
976976
"for building packages."
977-
msgstr ""
977+
msgstr "特定于Windows的发行版,包含用于构建包的预构建科学包和工具。"
978978

979979
#: ../../using/windows.rst:503
980980
msgid ""
981981
"Note that these packages may not include the latest versions of Python or "
982982
"other libraries, and are not maintained or supported by the core Python "
983983
"team."
984-
msgstr ""
984+
msgstr "请注意,这些软件包可能不包含最新版本的Python或其他库,并且不由核心Python团队维护或支持。"
985985

986986
#: ../../using/windows.rst:509
987987
msgid "Configuring Python"
@@ -1438,12 +1438,16 @@ msgid ""
14381438
"specified, it may optionally be followed by \"-32\" to indicate the 32-bit "
14391439
"implementation of that version be used."
14401440
msgstr ""
1441+
"在某些情况下,可以在命令中包含版本限定符,以指示命令将使用哪个版本的Python。版本限定符以主版本号开头,可以选择后跟句点 ('.') "
1442+
"和次版本说明符。如果指定了minor限定符,则可以选择后跟“-32”以指示使用该版本的32位实现。"
14411443

14421444
#: ../../using/windows.rst:813
14431445
msgid ""
14441446
"For example, a shebang line of ``#!python`` has no version qualifier, while "
14451447
"``#!python3`` has a version qualifier which specifies only a major version."
14461448
msgstr ""
1449+
"例如,一个shebang line 的 ``#!python`` 行没有版本限定符,而 ``#!python3`` "
1450+
"有一个版本限定符,它只指定一个主要版本。"
14471451

14481452
#: ../../using/windows.rst:816
14491453
msgid ""
@@ -1453,6 +1457,8 @@ msgid ""
14531457
"(e.g. \"2\") or a major.minor qualifier (e.g. \"2.6\"), or even "
14541458
"major.minor-32."
14551459
msgstr ""
1460+
"如果在命令中找不到版本限定符,则可以设置环境变量 ``PY_PYTHON`` 以指定默认版本限定符 - 默认值为 \"2\" "
1461+
"。注意,该值可以仅指定主要版本(例如 \"2\" )或major.minor限定符(例如 \"2.6\" ),或甚至major.minor-32。"
14561462

14571463
#: ../../using/windows.rst:821
14581464
msgid ""
@@ -1464,6 +1470,8 @@ msgid ""
14641470
" is likely, although not guaranteed, to be the most recently installed "
14651471
"version in that family."
14661472
msgstr ""
1473+
"如果没有找到次要版本限定符,则可以设置环境变量 ``PY_PYTHON{major}`` (其中 ``{major}`` "
1474+
"是上面确定的当前主要版本限定符)以指定完整版本。如果没有找到这样的选项,启动器将枚举已安装的Python版本并使用为主要版本找到的最新次要版本,尽管不能保证,但该版本可能是该系列中最新安装的版本。"
14671475

14681476
#: ../../using/windows.rst:829
14691477
msgid ""
@@ -1478,6 +1486,9 @@ msgid ""
14781486
"launcher was installed last). As noted above, an optional \"-32\" suffix can"
14791487
" be used on a version specifier to change this behaviour."
14801488
msgstr ""
1489+
"在安装了相同(major.minor)Python版本的32位和64位的64位Windows上,64位版本将始终是首选。对于启动程序的32位和64位实现都是如此"
1490+
" -- 这对于启动程序32位和64位都是正确的 -- "
1491+
"如果可用,32位启动程序将倾向于执行指定版本的64位Python安装。这样就可以预测启动器的行为,只知道PC上安装了哪些版本,而不考虑它们的安装顺序(即,不知道32位或64位版本的Python和相应的启动器是否是最后安装)。如上所述,可以在版本说明符上使用可选的“-32”后缀来更改此行为。"
14811492

14821493
#: ../../using/windows.rst:840
14831494
msgid "Examples:"
@@ -1489,18 +1500,20 @@ msgid ""
14891500
" use the latest Python 2.x version installed and the command ``python3`` "
14901501
"will use the latest Python 3.x installed."
14911502
msgstr ""
1503+
"如果没有设置相关选项,命令 ``python`` 和 ``python2`` 将使用安装的最新Python 2.x版本,命令 ``python3`` "
1504+
"将使用最新安装的Python 3.x."
14921505

14931506
#: ../../using/windows.rst:846
14941507
msgid ""
14951508
"The commands ``python3.1`` and ``python2.7`` will not consult any options at"
14961509
" all as the versions are fully specified."
1497-
msgstr ""
1510+
msgstr "命令 ``python3.1`` 和 ``python2.7`` 根本不会查阅任何选项,因为版本已完全指定。"
14981511

14991512
#: ../../using/windows.rst:849
15001513
msgid ""
15011514
"If ``PY_PYTHON=3``, the commands ``python`` and ``python3`` will both use "
15021515
"the latest installed Python 3 version."
1503-
msgstr ""
1516+
msgstr "如果 ``PY_PYTHON=3`` ,命令``python`` 和 ``python3`` 都将使用最新安装的Python 3版本。"
15041517

15051518
#: ../../using/windows.rst:852
15061519
msgid ""

0 commit comments

Comments
 (0)