Skip to content

Commit aea90a1

Browse files
sync with cpython 0006d9bf
1 parent c85091c commit aea90a1

12 files changed

+2590
-2484
lines changed

library/asyncio-task.po

+217-209
Large diffs are not rendered by default.

library/ctypes.po

+434-430
Large diffs are not rendered by default.

library/curses.ascii.po

+105-101
Large diffs are not rendered by default.

library/curses.po

+642-638
Large diffs are not rendered by default.

library/ensurepip.po

+37-33
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.11\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-10-31 08:13+0000\n"
10+
"POT-Creation-Date: 2022-11-26 00:17+0000\n"
1111
"PO-Revision-Date: 2018-05-23 16:01+0000\n"
1212
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -22,7 +22,11 @@ msgstr ""
2222
msgid ":mod:`ensurepip` --- Bootstrapping the ``pip`` installer"
2323
msgstr ""
2424

25-
#: ../../library/ensurepip.rst:12
25+
#: ../../library/ensurepip.rst:10
26+
msgid "**Source code:** :source:`Lib/ensurepip`"
27+
msgstr ""
28+
29+
#: ../../library/ensurepip.rst:14
2630
msgid ""
2731
"The :mod:`ensurepip` package provides support for bootstrapping the ``pip`` "
2832
"installer into an existing Python installation or virtual environment. This "
@@ -32,33 +36,33 @@ msgid ""
3236
"interpreter."
3337
msgstr ""
3438

35-
#: ../../library/ensurepip.rst:19
39+
#: ../../library/ensurepip.rst:21
3640
msgid ""
3741
"In most cases, end users of Python shouldn't need to invoke this module "
3842
"directly (as ``pip`` should be bootstrapped by default), but it may be "
3943
"needed if installing ``pip`` was skipped when installing Python (or when "
4044
"creating a virtual environment) or after explicitly uninstalling ``pip``."
4145
msgstr ""
4246

43-
#: ../../library/ensurepip.rst:27
47+
#: ../../library/ensurepip.rst:29
4448
msgid ""
4549
"This module *does not* access the internet. All of the components needed to "
4650
"bootstrap ``pip`` are included as internal parts of the package."
4751
msgstr ""
4852

49-
#: ../../library/ensurepip.rst:34
53+
#: ../../library/ensurepip.rst:36
5054
msgid ":ref:`installing-index`"
5155
msgstr ":ref:`installing-index`"
5256

53-
#: ../../library/ensurepip.rst:34
57+
#: ../../library/ensurepip.rst:36
5458
msgid "The end user guide for installing Python packages"
5559
msgstr ""
5660

57-
#: ../../library/ensurepip.rst:36
61+
#: ../../library/ensurepip.rst:38
5862
msgid ":pep:`453`: Explicit bootstrapping of pip in Python installations"
5963
msgstr ""
6064

61-
#: ../../library/ensurepip.rst:37
65+
#: ../../library/ensurepip.rst:39
6266
msgid "The original rationale and specification for this module."
6367
msgstr ""
6468

@@ -73,132 +77,132 @@ msgid ""
7377
"more information."
7478
msgstr ""
7579

76-
#: ../../library/ensurepip.rst:42
80+
#: ../../library/ensurepip.rst:44
7781
msgid "Command line interface"
7882
msgstr ""
7983

80-
#: ../../library/ensurepip.rst:44
84+
#: ../../library/ensurepip.rst:46
8185
msgid ""
8286
"The command line interface is invoked using the interpreter's ``-m`` switch."
8387
msgstr ""
8488

85-
#: ../../library/ensurepip.rst:46
89+
#: ../../library/ensurepip.rst:48
8690
msgid "The simplest possible invocation is::"
8791
msgstr ""
8892

89-
#: ../../library/ensurepip.rst:50
93+
#: ../../library/ensurepip.rst:52
9094
msgid ""
9195
"This invocation will install ``pip`` if it is not already installed, but "
9296
"otherwise does nothing. To ensure the installed version of ``pip`` is at "
9397
"least as recent as the one available in ``ensurepip``, pass the ``--"
9498
"upgrade`` option::"
9599
msgstr ""
96100

97-
#: ../../library/ensurepip.rst:57
101+
#: ../../library/ensurepip.rst:59
98102
msgid ""
99103
"By default, ``pip`` is installed into the current virtual environment (if "
100104
"one is active) or into the system site packages (if there is no active "
101105
"virtual environment). The installation location can be controlled through "
102106
"two additional command line options:"
103107
msgstr ""
104108

105-
#: ../../library/ensurepip.rst:62
109+
#: ../../library/ensurepip.rst:64
106110
msgid ""
107111
"``--root <dir>``: Installs ``pip`` relative to the given root directory "
108112
"rather than the root of the currently active virtual environment (if any) or "
109113
"the default root for the current Python installation."
110114
msgstr ""
111115

112-
#: ../../library/ensurepip.rst:65
116+
#: ../../library/ensurepip.rst:67
113117
msgid ""
114118
"``--user``: Installs ``pip`` into the user site packages directory rather "
115119
"than globally for the current Python installation (this option is not "
116120
"permitted inside an active virtual environment)."
117121
msgstr ""
118122

119-
#: ../../library/ensurepip.rst:69
123+
#: ../../library/ensurepip.rst:71
120124
msgid ""
121125
"By default, the scripts ``pipX`` and ``pipX.Y`` will be installed (where X.Y "
122126
"stands for the version of Python used to invoke ``ensurepip``). The scripts "
123127
"installed can be controlled through two additional command line options:"
124128
msgstr ""
125129

126-
#: ../../library/ensurepip.rst:74
130+
#: ../../library/ensurepip.rst:76
127131
msgid ""
128132
"``--altinstall``: if an alternate installation is requested, the ``pipX`` "
129133
"script will *not* be installed."
130134
msgstr ""
131135

132-
#: ../../library/ensurepip.rst:77
136+
#: ../../library/ensurepip.rst:79
133137
msgid ""
134138
"``--default-pip``: if a \"default pip\" installation is requested, the "
135139
"``pip`` script will be installed in addition to the two regular scripts."
136140
msgstr ""
137141

138-
#: ../../library/ensurepip.rst:80
142+
#: ../../library/ensurepip.rst:82
139143
msgid ""
140144
"Providing both of the script selection options will trigger an exception."
141145
msgstr ""
142146

143-
#: ../../library/ensurepip.rst:84
147+
#: ../../library/ensurepip.rst:86
144148
msgid "Module API"
145149
msgstr "模組 API"
146150

147-
#: ../../library/ensurepip.rst:86
151+
#: ../../library/ensurepip.rst:88
148152
msgid ":mod:`ensurepip` exposes two functions for programmatic use:"
149153
msgstr ""
150154

151-
#: ../../library/ensurepip.rst:90
155+
#: ../../library/ensurepip.rst:92
152156
msgid ""
153157
"Returns a string specifying the available version of pip that will be "
154158
"installed when bootstrapping an environment."
155159
msgstr ""
156160

157-
#: ../../library/ensurepip.rst:97
161+
#: ../../library/ensurepip.rst:99
158162
msgid "Bootstraps ``pip`` into the current or designated environment."
159163
msgstr ""
160164

161-
#: ../../library/ensurepip.rst:99
165+
#: ../../library/ensurepip.rst:101
162166
msgid ""
163167
"*root* specifies an alternative root directory to install relative to. If "
164168
"*root* is ``None``, then installation uses the default install location for "
165169
"the current environment."
166170
msgstr ""
167171

168-
#: ../../library/ensurepip.rst:103
172+
#: ../../library/ensurepip.rst:105
169173
msgid ""
170174
"*upgrade* indicates whether or not to upgrade an existing installation of an "
171175
"earlier version of ``pip`` to the available version."
172176
msgstr ""
173177

174-
#: ../../library/ensurepip.rst:106
178+
#: ../../library/ensurepip.rst:108
175179
msgid ""
176180
"*user* indicates whether to use the user scheme rather than installing "
177181
"globally."
178182
msgstr ""
179183

180-
#: ../../library/ensurepip.rst:109
184+
#: ../../library/ensurepip.rst:111
181185
msgid ""
182186
"By default, the scripts ``pipX`` and ``pipX.Y`` will be installed (where X.Y "
183187
"stands for the current version of Python)."
184188
msgstr ""
185189

186-
#: ../../library/ensurepip.rst:112
190+
#: ../../library/ensurepip.rst:114
187191
msgid "If *altinstall* is set, then ``pipX`` will *not* be installed."
188192
msgstr ""
189193

190-
#: ../../library/ensurepip.rst:114
194+
#: ../../library/ensurepip.rst:116
191195
msgid ""
192196
"If *default_pip* is set, then ``pip`` will be installed in addition to the "
193197
"two regular scripts."
194198
msgstr ""
195199

196-
#: ../../library/ensurepip.rst:117
200+
#: ../../library/ensurepip.rst:119
197201
msgid ""
198202
"Setting both *altinstall* and *default_pip* will trigger :exc:`ValueError`."
199203
msgstr ""
200204

201-
#: ../../library/ensurepip.rst:120
205+
#: ../../library/ensurepip.rst:122
202206
msgid ""
203207
"*verbosity* controls the level of output to :data:`sys.stdout` from the "
204208
"bootstrapping operation."
@@ -210,14 +214,14 @@ msgid ""
210214
"argument ``root``."
211215
msgstr ""
212216

213-
#: ../../library/ensurepip.rst:127
217+
#: ../../library/ensurepip.rst:129
214218
msgid ""
215219
"The bootstrapping process has side effects on both ``sys.path`` and ``os."
216220
"environ``. Invoking the command line interface in a subprocess instead "
217221
"allows these side effects to be avoided."
218222
msgstr ""
219223

220-
#: ../../library/ensurepip.rst:133
224+
#: ../../library/ensurepip.rst:135
221225
msgid ""
222226
"The bootstrapping process may install additional modules required by "
223227
"``pip``, but other software should not assume those dependencies will always "

library/http.po

+24-24
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.11\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-10-15 20:43+0000\n"
10+
"POT-Creation-Date: 2022-11-26 00:17+0000\n"
1111
"PO-Revision-Date: 2022-10-16 06:59+0800\n"
1212
"Last-Translator: Matt Wang <mattwang44@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -98,11 +98,11 @@ msgstr ""
9898
msgid "Code"
9999
msgstr "狀態碼"
100100

101-
#: ../../library/http.rst:60 ../../library/http.rst:170
101+
#: ../../library/http.rst:60 ../../library/http.rst:179
102102
msgid "Enum Name"
103103
msgstr "枚舉名稱"
104104

105-
#: ../../library/http.rst:60 ../../library/http.rst:170
105+
#: ../../library/http.rst:60 ../../library/http.rst:179
106106
msgid "Details"
107107
msgstr "詳情"
108108

@@ -878,91 +878,91 @@ msgid ""
878878
"descriptions written in English."
879879
msgstr ":class:`enum.StrEnum` 的子類別,它定義了一組 HTTP 方法以及英文描述。"
880880

881-
#: ../../library/http.rst:163
881+
#: ../../library/http.rst:172
882882
msgid "HTTP methods"
883883
msgstr "HTTP 方法"
884884

885-
#: ../../library/http.rst:165
885+
#: ../../library/http.rst:174
886886
msgid ""
887887
"Supported, `IANA-registered methods <https://www.iana.org/assignments/http-"
888888
"methods/http-methods.xhtml>`_ available in :class:`http.HTTPMethod` are:"
889889
msgstr ""
890890
":class:`http.HTTPStatus` 當中,已支援並且有於 `IANA 註冊的狀態碼 <https://"
891891
"www.iana.org/assignments/http-status-codes/http-status-codes.xhtml>`_\\ 有:"
892892

893-
#: ../../library/http.rst:170
893+
#: ../../library/http.rst:179
894894
msgid "Method"
895895
msgstr "方法"
896896

897-
#: ../../library/http.rst:172
897+
#: ../../library/http.rst:181
898898
msgid "``GET``"
899899
msgstr "``GET``"
900900

901-
#: ../../library/http.rst:172
901+
#: ../../library/http.rst:181
902902
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.1"
903903
msgstr "HTTP/1.1 :rfc:`7231`,4.3.1 節"
904904

905-
#: ../../library/http.rst:173
905+
#: ../../library/http.rst:182
906906
msgid "``HEAD``"
907907
msgstr "``HEAD``"
908908

909-
#: ../../library/http.rst:173
909+
#: ../../library/http.rst:182
910910
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.2"
911911
msgstr "HTTP/1.1 :rfc:`7231`,4.3.2 節"
912912

913-
#: ../../library/http.rst:174
913+
#: ../../library/http.rst:183
914914
msgid "``POST``"
915915
msgstr "``POST``"
916916

917-
#: ../../library/http.rst:174
917+
#: ../../library/http.rst:183
918918
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.3"
919919
msgstr "HTTP/1.1 :rfc:`7231`,4.3.3 節"
920920

921-
#: ../../library/http.rst:175
921+
#: ../../library/http.rst:184
922922
msgid "``PUT``"
923923
msgstr "``PUT``"
924924

925-
#: ../../library/http.rst:175
925+
#: ../../library/http.rst:184
926926
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.4"
927927
msgstr "HTTP/1.1 :rfc:`7231`,4.3.4 節"
928928

929-
#: ../../library/http.rst:176
929+
#: ../../library/http.rst:185
930930
msgid "``DELETE``"
931931
msgstr "``DELETE``"
932932

933-
#: ../../library/http.rst:176
933+
#: ../../library/http.rst:185
934934
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.5"
935935
msgstr "HTTP/1.1 :rfc:`7231`,6.3.5 節"
936936

937-
#: ../../library/http.rst:177
937+
#: ../../library/http.rst:186
938938
msgid "``CONNECT``"
939939
msgstr "``CONNECT``"
940940

941-
#: ../../library/http.rst:177
941+
#: ../../library/http.rst:186
942942
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.6"
943943
msgstr "HTTP/1.1 :rfc:`7231`,4.3.6 節"
944944

945-
#: ../../library/http.rst:178
945+
#: ../../library/http.rst:187
946946
msgid "``OPTIONS``"
947947
msgstr "``OPTIONS``"
948948

949-
#: ../../library/http.rst:178
949+
#: ../../library/http.rst:187
950950
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.7"
951951
msgstr "HTTP/1.1 :rfc:`7231`,4.3.7 節"
952952

953-
#: ../../library/http.rst:179
953+
#: ../../library/http.rst:188
954954
msgid "``TRACE``"
955955
msgstr "``TRACE``"
956956

957-
#: ../../library/http.rst:179
957+
#: ../../library/http.rst:188
958958
msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.8"
959959
msgstr "HTTP/1.1 :rfc:`7231`,4.3.8 節"
960960

961-
#: ../../library/http.rst:180
961+
#: ../../library/http.rst:189
962962
msgid "``PATCH``"
963963
msgstr "``PATCH``"
964964

965-
#: ../../library/http.rst:180
965+
#: ../../library/http.rst:189
966966
msgid "HTTP/1.1 :rfc:`5789`"
967967
msgstr "HTTP/1.1 :rfc:`5789`"
968968

0 commit comments

Comments
 (0)