Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e810d13

Browse filesBrowse files
committed
merge pot files.
1 parent c2b58d3 commit e810d13
Copy full SHA for e810d13
Expand file treeCollapse file tree

39 files changed

+4947
-4766
lines changed

‎c-api/arg.po

Copy file name to clipboardExpand all lines: c-api/arg.po
+174-157Lines changed: 174 additions & 157 deletions
Large diffs are not rendered by default.

‎c-api/buffer.po

Copy file name to clipboardExpand all lines: c-api/buffer.po
+16-5Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11+
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -622,33 +622,44 @@ msgstr ""
622622

623623
#: ../Doc/c-api/buffer.rst:478
624624
msgid ""
625+
"Copy *len* bytes from *src* to its contiguous representation in *buf*. "
626+
"*order* can be ``'C'`` or ``'F'`` (for C-style or Fortran-style ordering). "
627+
"``0`` is returned on success, ``-1`` on error."
628+
msgstr ""
629+
630+
#: ../Doc/c-api/buffer.rst:482
631+
msgid "This function fails if *len* != *src->len*."
632+
msgstr ""
633+
634+
#: ../Doc/c-api/buffer.rst:487
635+
msgid ""
625636
"Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style "
626637
"if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the "
627638
"given shape with the given number of bytes per element."
628639
msgstr ""
629640

630-
#: ../Doc/c-api/buffer.rst:485
641+
#: ../Doc/c-api/buffer.rst:494
631642
msgid ""
632643
"Handle buffer requests for an exporter that wants to expose *buf* of size "
633644
"*len* with writability set according to *readonly*. *buf* is interpreted as "
634645
"a sequence of unsigned bytes."
635646
msgstr ""
636647

637-
#: ../Doc/c-api/buffer.rst:489
648+
#: ../Doc/c-api/buffer.rst:498
638649
msgid ""
639650
"The *flags* argument indicates the request type. This function always fills "
640651
"in *view* as specified by flags, unless *buf* has been designated as read-"
641652
"only and :c:macro:`PyBUF_WRITABLE` is set in *flags*."
642653
msgstr ""
643654

644-
#: ../Doc/c-api/buffer.rst:493
655+
#: ../Doc/c-api/buffer.rst:502
645656
msgid ""
646657
"On success, set :c:member:`view->obj` to a new reference to *exporter* and "
647658
"return 0. Otherwise, raise :c:data:`PyExc_BufferError`, set :c:member:`view-"
648659
">obj` to *NULL* and return ``-1``;"
649660
msgstr ""
650661

651-
#: ../Doc/c-api/buffer.rst:497
662+
#: ../Doc/c-api/buffer.rst:506
652663
msgid ""
653664
"If this function is used as part of a :ref:`getbufferproc <buffer-structs>`, "
654665
"*exporter* MUST be set to the exporting object and *flags* must be passed "

‎distutils/configfile.po

Copy file name to clipboardExpand all lines: distutils/configfile.po
+18-18Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
11+
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,10 +64,10 @@ msgid ""
6464
msgstr ""
6565

6666
#: ../Doc/distutils/configfile.rst:39
67-
msgid "The basic syntax of the configuration file is simple::"
67+
msgid "The basic syntax of the configuration file is simple:"
6868
msgstr ""
6969

70-
#: ../Doc/distutils/configfile.rst:45
70+
#: ../Doc/distutils/configfile.rst:47
7171
msgid ""
7272
"where *command* is one of the Distutils commands (e.g. :command:`build_py`, :"
7373
"command:`install`), and *option* is one of the options that command "
@@ -78,37 +78,37 @@ msgid ""
7878
"by indenting the continuation lines."
7979
msgstr ""
8080

81-
#: ../Doc/distutils/configfile.rst:53
81+
#: ../Doc/distutils/configfile.rst:55
8282
msgid ""
8383
"You can find out the list of options supported by a particular command with "
84-
"the universal :option:`!--help` option, e.g. ::"
84+
"the universal :option:`!--help` option, e.g."
8585
msgstr ""
8686

87-
#: ../Doc/distutils/configfile.rst:69
87+
#: ../Doc/distutils/configfile.rst:73
8888
msgid ""
8989
"Note that an option spelled :option:`!--foo-bar` on the command-line is "
9090
"spelled ``foo_bar`` in configuration files."
9191
msgstr ""
9292

93-
#: ../Doc/distutils/configfile.rst:74
93+
#: ../Doc/distutils/configfile.rst:78
9494
msgid ""
9595
"For example, say you want your extensions to be built \"in-place\"---that "
9696
"is, you have an extension :mod:`pkg.ext`, and you want the compiled "
9797
"extension file (:file:`ext.so` on Unix, say) to be put in the same source "
9898
"directory as your pure Python modules :mod:`pkg.mod1` and :mod:`pkg.mod2`. "
9999
"You can always use the :option:`!--inplace` option on the command-line to "
100-
"ensure this::"
100+
"ensure this:"
101101
msgstr ""
102102

103-
#: ../Doc/distutils/configfile.rst:82
103+
#: ../Doc/distutils/configfile.rst:88
104104
msgid ""
105105
"But this requires that you always specify the :command:`build_ext` command "
106106
"explicitly, and remember to provide :option:`!--inplace`. An easier way is "
107107
"to \"set and forget\" this option, by encoding it in :file:`setup.cfg`, the "
108-
"configuration file for this distribution::"
108+
"configuration file for this distribution:"
109109
msgstr ""
110110

111-
#: ../Doc/distutils/configfile.rst:90
111+
#: ../Doc/distutils/configfile.rst:98
112112
msgid ""
113113
"This will affect all builds of this module distribution, whether or not you "
114114
"explicitly specify :command:`build_ext`. If you include :file:`setup.cfg` "
@@ -121,7 +121,7 @@ msgid ""
121121
"always a bad idea, though.)"
122122
msgstr ""
123123

124-
#: ../Doc/distutils/configfile.rst:99
124+
#: ../Doc/distutils/configfile.rst:107
125125
msgid ""
126126
"Another example: certain commands take a lot of options that don't change "
127127
"from run to run; for example, :command:`bdist_rpm` needs to know everything "
@@ -130,30 +130,30 @@ msgid ""
130130
"generated by the Distutils (such as the list of files installed). But some "
131131
"of it has to be supplied as options to :command:`bdist_rpm`, which would be "
132132
"very tedious to do on the command-line for every run. Hence, here is a "
133-
"snippet from the Distutils' own :file:`setup.cfg`::"
133+
"snippet from the Distutils' own :file:`setup.cfg`:"
134134
msgstr ""
135135

136-
#: ../Doc/distutils/configfile.rst:117
136+
#: ../Doc/distutils/configfile.rst:127
137137
msgid ""
138138
"Note that the ``doc_files`` option is simply a whitespace-separated string "
139139
"split across multiple lines for readability."
140140
msgstr ""
141141

142-
#: ../Doc/distutils/configfile.rst:124
142+
#: ../Doc/distutils/configfile.rst:134
143143
msgid ":ref:`inst-config-syntax` in \"Installing Python Modules\""
144144
msgstr ""
145145

146-
#: ../Doc/distutils/configfile.rst:124
146+
#: ../Doc/distutils/configfile.rst:134
147147
msgid ""
148148
"More information on the configuration files is available in the manual for "
149149
"system administrators."
150150
msgstr ""
151151

152-
#: ../Doc/distutils/configfile.rst:129
152+
#: ../Doc/distutils/configfile.rst:139
153153
msgid "Footnotes"
154154
msgstr "Notes"
155155

156-
#: ../Doc/distutils/configfile.rst:130
156+
#: ../Doc/distutils/configfile.rst:140
157157
msgid ""
158158
"This ideal probably won't be achieved until auto-configuration is fully "
159159
"supported by the Distutils."

‎distutils/introduction.po

Copy file name to clipboardExpand all lines: distutils/introduction.po
+4-5Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11+
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -298,10 +298,9 @@ msgstr ""
298298
msgid ""
299299
"a collection of Python modules distributed together as a single downloadable "
300300
"resource and meant to be installed *en masse*. Examples of some well-known "
301-
"module distributions are NumPy, SciPy, PIL (the Python Imaging Library), or "
302-
"mxBase. (This would be called a *package*, except that term is already "
303-
"taken in the Python context: a single module distribution may contain zero, "
304-
"one, or many Python packages.)"
301+
"module distributions are NumPy, SciPy, Pillow, or mxBase. (This would be "
302+
"called a *package*, except that term is already taken in the Python context: "
303+
"a single module distribution may contain zero, one, or many Python packages.)"
305304
msgstr ""
306305

307306
#: ../Doc/distutils/introduction.rst:203

‎distutils/packageindex.po

Copy file name to clipboardExpand all lines: distutils/packageindex.po
+20-20Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
11+
"POT-Creation-Date: 2018-04-29 00:24+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -214,96 +214,96 @@ msgid ""
214214
"existence of a :file:`.pypirc` file at the location :file:`$HOME/.pypirc`. "
215215
"If this file exists, the command uses the username, password, and repository "
216216
"URL configured in the file. The format of a :file:`.pypirc` file is as "
217-
"follows::"
217+
"follows:"
218218
msgstr ""
219219

220-
#: ../Doc/distutils/packageindex.rst:170
220+
#: ../Doc/distutils/packageindex.rst:172
221221
msgid ""
222222
"The *distutils* section defines an *index-servers* variable that lists the "
223223
"name of all sections describing a repository."
224224
msgstr ""
225225

226-
#: ../Doc/distutils/packageindex.rst:173
226+
#: ../Doc/distutils/packageindex.rst:175
227227
msgid "Each section describing a repository defines three variables:"
228228
msgstr ""
229229

230-
#: ../Doc/distutils/packageindex.rst:175
230+
#: ../Doc/distutils/packageindex.rst:177
231231
msgid "*repository*, that defines the url of the PyPI server. Defaults to"
232232
msgstr ""
233233

234-
#: ../Doc/distutils/packageindex.rst:176
234+
#: ../Doc/distutils/packageindex.rst:178
235235
msgid "``https://upload.pypi.org/legacy/``."
236236
msgstr ""
237237

238-
#: ../Doc/distutils/packageindex.rst:177
238+
#: ../Doc/distutils/packageindex.rst:179
239239
msgid "*username*, which is the registered username on the PyPI server."
240240
msgstr ""
241241

242-
#: ../Doc/distutils/packageindex.rst:179
242+
#: ../Doc/distutils/packageindex.rst:181
243243
msgid "*password*, that will be used to authenticate. If omitted the user"
244244
msgstr ""
245245

246-
#: ../Doc/distutils/packageindex.rst:179
246+
#: ../Doc/distutils/packageindex.rst:181
247247
msgid "will be prompt to type it when needed."
248248
msgstr ""
249249

250-
#: ../Doc/distutils/packageindex.rst:181
250+
#: ../Doc/distutils/packageindex.rst:183
251251
msgid ""
252252
"If you want to define another server a new section can be created and listed "
253-
"in the *index-servers* variable::"
253+
"in the *index-servers* variable:"
254254
msgstr ""
255255

256-
#: ../Doc/distutils/packageindex.rst:199
256+
#: ../Doc/distutils/packageindex.rst:203
257257
msgid ""
258258
"This allows the :command:`register` and :command:`upload` commands to be "
259259
"called with the ``--repository`` option as described in :ref:`package-"
260260
"cmdoptions`."
261261
msgstr ""
262262

263-
#: ../Doc/distutils/packageindex.rst:203
263+
#: ../Doc/distutils/packageindex.rst:207
264264
msgid ""
265265
"Specifically, you might want to add the `PyPI Test Repository <https://wiki."
266266
"python.org/moin/TestPyPI>`_ to your ``.pypirc`` to facilitate testing before "
267267
"doing your first upload to ``PyPI`` itself."
268268
msgstr ""
269269

270-
#: ../Doc/distutils/packageindex.rst:211
270+
#: ../Doc/distutils/packageindex.rst:215
271271
msgid "PyPI package display"
272272
msgstr ""
273273

274-
#: ../Doc/distutils/packageindex.rst:213
274+
#: ../Doc/distutils/packageindex.rst:217
275275
msgid ""
276276
"The ``long_description`` field plays a special role at PyPI. It is used by "
277277
"the server to display a home page for the registered package."
278278
msgstr ""
279279

280-
#: ../Doc/distutils/packageindex.rst:216
280+
#: ../Doc/distutils/packageindex.rst:220
281281
msgid ""
282282
"If you use the `reStructuredText <http://docutils.sourceforge.net/rst."
283283
"html>`_ syntax for this field, PyPI will parse it and display an HTML output "
284284
"for the package home page."
285285
msgstr ""
286286

287-
#: ../Doc/distutils/packageindex.rst:220
287+
#: ../Doc/distutils/packageindex.rst:224
288288
msgid ""
289289
"The ``long_description`` field can be attached to a text file located in the "
290290
"package::"
291291
msgstr ""
292292

293-
#: ../Doc/distutils/packageindex.rst:231
293+
#: ../Doc/distutils/packageindex.rst:235
294294
msgid ""
295295
"In that case, :file:`README.txt` is a regular reStructuredText text file "
296296
"located in the root of the package besides :file:`setup.py`."
297297
msgstr ""
298298

299-
#: ../Doc/distutils/packageindex.rst:234
299+
#: ../Doc/distutils/packageindex.rst:238
300300
msgid ""
301301
"To prevent registering broken reStructuredText content, you can use the :"
302302
"program:`rst2html` program that is provided by the :mod:`docutils` package "
303303
"and check the ``long_description`` from the command line:"
304304
msgstr ""
305305

306-
#: ../Doc/distutils/packageindex.rst:242
306+
#: ../Doc/distutils/packageindex.rst:246
307307
msgid ""
308308
":mod:`docutils` will display a warning if there's something wrong with your "
309309
"syntax. Because PyPI applies additional checks (e.g. by passing ``--no-"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.