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

Skip to content

Commit dcd20ad

Browse files
committed
merge pot files.
1 parent ad8abbf commit dcd20ad

Some content is hidden

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

106 files changed

+4887
-4007
lines changed

c-api/exceptions.po

Lines changed: 452 additions & 210 deletions
Large diffs are not rendered by default.

c-api/gen.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
10+
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
1111
"PO-Revision-Date: 2017-05-25 22:40+0200\n"
12+
"Last-Translator: Julien Palard <[email protected]>\n"
13+
"Language-Team: \n"
1214
"Language: fr\n"
1315
"MIME-Version: 1.0\n"
1416
"Content-Type: text/plain; charset=UTF-8\n"
1517
"Content-Transfer-Encoding: 8bit\n"
16-
"Last-Translator: Julien Palard <[email protected]>\n"
17-
"Language-Team: \n"
1818
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/c-api/gen.rst:6

c-api/long.po

Lines changed: 33 additions & 35 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: 2017-05-27 19:40+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 <[email protected]>\n"
@@ -103,178 +103,176 @@ msgid ""
103103
"Return a new :c:type:`PyLongObject` based on the string value in *str*, "
104104
"which is interpreted according to the radix in *base*. If *pend* is non-"
105105
"*NULL*, *\\*pend* will point to the first character in *str* which follows "
106-
"the representation of the number. If *base* is ``0``, the radix will be "
107-
"determined based on the leading characters of *str*: if *str* starts with "
108-
"``'0x'`` or ``'0X'``, radix 16 will be used; if *str* starts with ``'0o'`` "
109-
"or ``'0O'``, radix 8 will be used; if *str* starts with ``'0b'`` or "
110-
"``'0B'``, radix 2 will be used; otherwise radix 10 will be used. If *base* "
111-
"is not ``0``, it must be between ``2`` and ``36``, inclusive. Leading "
112-
"spaces are ignored. If there are no digits, :exc:`ValueError` will be "
113-
"raised."
106+
"the representation of the number. If *base* is ``0``, *str* is interpreted "
107+
"using the :ref:`integers` definition; in this case, leading zeros in a non-"
108+
"zero decimal number raises a :exc:`ValueError`. If *base* is not ``0``, it "
109+
"must be between ``2`` and ``36``, inclusive. Leading spaces and single "
110+
"underscores after a base specifier and between digits are ignored. If there "
111+
"are no digits, :exc:`ValueError` will be raised."
114112
msgstr ""
115113

116-
#: ../Doc/c-api/long.rst:99
114+
#: ../Doc/c-api/long.rst:98
117115
msgid ""
118116
"Convert a sequence of Unicode digits to a Python integer value. The Unicode "
119117
"string is first encoded to a byte string using :c:func:"
120118
"`PyUnicode_EncodeDecimal` and then converted using :c:func:"
121119
"`PyLong_FromString`."
122120
msgstr ""
123121

124-
#: ../Doc/c-api/long.rst:105
122+
#: ../Doc/c-api/long.rst:104
125123
msgid ""
126124
"Deprecated since version 3.3, will be removed in version 4.0: Part of the "
127125
"old-style Py_UNICODE API; please migrate to using PyLong_FromUnicodeObject()."
128126
msgstr ""
129127

130-
#: ../Doc/c-api/long.rst:105
128+
#: ../Doc/c-api/long.rst:104
131129
msgid ""
132130
"Part of the old-style :c:type:`Py_UNICODE` API; please migrate to using :c:"
133131
"func:`PyLong_FromUnicodeObject`."
134132
msgstr ""
135133

136-
#: ../Doc/c-api/long.rst:110
134+
#: ../Doc/c-api/long.rst:109
137135
msgid ""
138136
"Convert a sequence of Unicode digits in the string *u* to a Python integer "
139137
"value. The Unicode string is first encoded to a byte string using :c:func:"
140138
"`PyUnicode_EncodeDecimal` and then converted using :c:func:"
141139
"`PyLong_FromString`."
142140
msgstr ""
143141

144-
#: ../Doc/c-api/long.rst:120
142+
#: ../Doc/c-api/long.rst:119
145143
msgid ""
146144
"Create a Python integer from the pointer *p*. The pointer value can be "
147145
"retrieved from the resulting value using :c:func:`PyLong_AsVoidPtr`."
148146
msgstr ""
149147

150-
#: ../Doc/c-api/long.rst:131 ../Doc/c-api/long.rst:141
148+
#: ../Doc/c-api/long.rst:130 ../Doc/c-api/long.rst:140
151149
msgid ""
152150
"Return a C :c:type:`long` representation of *obj*. If *obj* is not an "
153151
"instance of :c:type:`PyLongObject`, first call its :meth:`__int__` method "
154152
"(if present) to convert it to a :c:type:`PyLongObject`."
155153
msgstr ""
156154

157-
#: ../Doc/c-api/long.rst:135 ../Doc/c-api/long.rst:160
155+
#: ../Doc/c-api/long.rst:134 ../Doc/c-api/long.rst:159
158156
msgid ""
159157
"Raise :exc:`OverflowError` if the value of *obj* is out of range for a :c:"
160158
"type:`long`."
161159
msgstr ""
162160

163-
#: ../Doc/c-api/long.rst:145
161+
#: ../Doc/c-api/long.rst:144
164162
msgid ""
165163
"If the value of *obj* is greater than :const:`LONG_MAX` or less than :const:"
166164
"`LONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, respectively, and return "
167165
"``-1``; otherwise, set *\\*overflow* to ``0``. If any other exception "
168166
"occurs set *\\*overflow* to ``0`` and return ``-1`` as usual."
169167
msgstr ""
170168

171-
#: ../Doc/c-api/long.rst:156 ../Doc/c-api/long.rst:166
169+
#: ../Doc/c-api/long.rst:155 ../Doc/c-api/long.rst:165
172170
msgid ""
173171
"Return a C :c:type:`long long` representation of *obj*. If *obj* is not an "
174172
"instance of :c:type:`PyLongObject`, first call its :meth:`__int__` method "
175173
"(if present) to convert it to a :c:type:`PyLongObject`."
176174
msgstr ""
177175

178-
#: ../Doc/c-api/long.rst:170
176+
#: ../Doc/c-api/long.rst:169
179177
msgid ""
180178
"If the value of *obj* is greater than :const:`PY_LLONG_MAX` or less than :"
181179
"const:`PY_LLONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, respectively, "
182180
"and return ``-1``; otherwise, set *\\*overflow* to ``0``. If any other "
183181
"exception occurs set *\\*overflow* to ``0`` and return ``-1`` as usual."
184182
msgstr ""
185183

186-
#: ../Doc/c-api/long.rst:184
184+
#: ../Doc/c-api/long.rst:183
187185
msgid ""
188186
"Return a C :c:type:`Py_ssize_t` representation of *pylong*. *pylong* must "
189187
"be an instance of :c:type:`PyLongObject`."
190188
msgstr ""
191189

192-
#: ../Doc/c-api/long.rst:187
190+
#: ../Doc/c-api/long.rst:186
193191
msgid ""
194192
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:"
195193
"type:`Py_ssize_t`."
196194
msgstr ""
197195

198-
#: ../Doc/c-api/long.rst:197
196+
#: ../Doc/c-api/long.rst:196
199197
msgid ""
200198
"Return a C :c:type:`unsigned long` representation of *pylong*. *pylong* "
201199
"must be an instance of :c:type:`PyLongObject`."
202200
msgstr ""
203201

204-
#: ../Doc/c-api/long.rst:200
202+
#: ../Doc/c-api/long.rst:199
205203
msgid ""
206204
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:"
207205
"type:`unsigned long`."
208206
msgstr ""
209207

210-
#: ../Doc/c-api/long.rst:206
208+
#: ../Doc/c-api/long.rst:205
211209
msgid ""
212210
"Return a C :c:type:`size_t` representation of *pylong*. *pylong* must be an "
213211
"instance of :c:type:`PyLongObject`."
214212
msgstr ""
215213

216-
#: ../Doc/c-api/long.rst:209
214+
#: ../Doc/c-api/long.rst:208
217215
msgid ""
218216
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:"
219217
"type:`size_t`."
220218
msgstr ""
221219

222-
#: ../Doc/c-api/long.rst:218
220+
#: ../Doc/c-api/long.rst:217
223221
msgid ""
224222
"Return a C :c:type:`unsigned long long` representation of *pylong*. "
225223
"*pylong* must be an instance of :c:type:`PyLongObject`."
226224
msgstr ""
227225

228-
#: ../Doc/c-api/long.rst:221
226+
#: ../Doc/c-api/long.rst:220
229227
msgid ""
230228
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for an :"
231229
"c:type:`unsigned long long`."
232230
msgstr ""
233231

234-
#: ../Doc/c-api/long.rst:224
232+
#: ../Doc/c-api/long.rst:223
235233
msgid ""
236234
"A negative *pylong* now raises :exc:`OverflowError`, not :exc:`TypeError`."
237235
msgstr ""
238236

239-
#: ../Doc/c-api/long.rst:230
237+
#: ../Doc/c-api/long.rst:229
240238
msgid ""
241239
"Return a C :c:type:`unsigned long` representation of *obj*. If *obj* is not "
242240
"an instance of :c:type:`PyLongObject`, first call its :meth:`__int__` method "
243241
"(if present) to convert it to a :c:type:`PyLongObject`."
244242
msgstr ""
245243

246-
#: ../Doc/c-api/long.rst:234
244+
#: ../Doc/c-api/long.rst:233
247245
msgid ""
248246
"If the value of *obj* is out of range for an :c:type:`unsigned long`, return "
249247
"the reduction of that value modulo ``ULONG_MAX + 1``."
250248
msgstr ""
251249

252-
#: ../Doc/c-api/long.rst:240
250+
#: ../Doc/c-api/long.rst:239
253251
msgid ""
254252
"Return a C :c:type:`unsigned long long` representation of *obj*. If *obj* "
255253
"is not an instance of :c:type:`PyLongObject`, first call its :meth:`__int__` "
256254
"method (if present) to convert it to a :c:type:`PyLongObject`."
257255
msgstr ""
258256

259-
#: ../Doc/c-api/long.rst:244
257+
#: ../Doc/c-api/long.rst:243
260258
msgid ""
261259
"If the value of *obj* is out of range for an :c:type:`unsigned long long`, "
262260
"return the reduction of that value modulo ``PY_ULLONG_MAX + 1``."
263261
msgstr ""
264262

265-
#: ../Doc/c-api/long.rst:250
263+
#: ../Doc/c-api/long.rst:249
266264
msgid ""
267265
"Return a C :c:type:`double` representation of *pylong*. *pylong* must be an "
268266
"instance of :c:type:`PyLongObject`."
269267
msgstr ""
270268

271-
#: ../Doc/c-api/long.rst:253
269+
#: ../Doc/c-api/long.rst:252
272270
msgid ""
273271
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:"
274272
"type:`double`."
275273
msgstr ""
276274

277-
#: ../Doc/c-api/long.rst:259
275+
#: ../Doc/c-api/long.rst:258
278276
msgid ""
279277
"Convert a Python integer *pylong* to a C :c:type:`void` pointer. If *pylong* "
280278
"cannot be converted, an :exc:`OverflowError` will be raised. This is only "

c-api/slice.po

Lines changed: 12 additions & 1 deletion
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: 2017-05-27 19:40+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 <[email protected]>\n"
@@ -75,3 +75,14 @@ msgstr ""
7575
#: ../Doc/c-api/slice.rst:54
7676
msgid "Returns ``0`` on success and ``-1`` on error with exception set."
7777
msgstr ""
78+
79+
#: ../Doc/c-api/slice.rst:62
80+
msgid "Ellipsis Object"
81+
msgstr ""
82+
83+
#: ../Doc/c-api/slice.rst:67
84+
msgid ""
85+
"The Python ``Ellipsis`` object. This object has no methods. It needs to be "
86+
"treated just like any other object with respect to reference counts. Like :"
87+
"c:data:`Py_None` it is a singleton object."
88+
msgstr ""

distributing/index.po

Lines changed: 5 additions & 1 deletion
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: 2017-05-27 19:40+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 <[email protected]>\n"
@@ -21,6 +21,10 @@ msgstr ""
2121
msgid "Distributing Python Modules"
2222
msgstr "Distribuer des Modules Python"
2323

24+
#: ../Doc/distributing/index.rst:0
25+
msgid "Email"
26+
msgstr ""
27+
2428
#: ../Doc/distributing/index.rst:7
2529
2630

distutils/apiref.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
10+
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
1111
"PO-Revision-Date: 2017-05-27 10:18+0200\n"
12+
"Last-Translator: Julien Palard <[email protected]>\n"
13+
"Language-Team: \n"
1214
"Language: fr\n"
1315
"MIME-Version: 1.0\n"
1416
"Content-Type: text/plain; charset=UTF-8\n"
1517
"Content-Transfer-Encoding: 8bit\n"
16-
"Last-Translator: Julien Palard <[email protected]>\n"
17-
"Language-Team: \n"
1818
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/distutils/apiref.rst:5

distutils/index.po

Lines changed: 9 additions & 1 deletion
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: 2017-05-27 19:40+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 <[email protected]>\n"
@@ -21,10 +21,18 @@ msgstr ""
2121
msgid "Distributing Python Modules (Legacy version)"
2222
msgstr ""
2323

24+
#: ../Doc/distutils/index.rst:0
25+
msgid "Authors"
26+
msgstr ""
27+
2428
#: ../Doc/distutils/index.rst:7
2529
msgid "Greg Ward, Anthony Baxter"
2630
msgstr ""
2731

32+
#: ../Doc/distutils/index.rst:0
33+
msgid "Email"
34+
msgstr ""
35+
2836
#: ../Doc/distutils/index.rst:8
2937
3038

distutils/sourcedist.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
10+
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
1111
"PO-Revision-Date: 2017-05-25 22:44+0200\n"
12+
"Last-Translator: Julien Palard <[email protected]>\n"
13+
"Language-Team: \n"
1214
"Language: fr\n"
1315
"MIME-Version: 1.0\n"
1416
"Content-Type: text/plain; charset=UTF-8\n"
1517
"Content-Transfer-Encoding: 8bit\n"
16-
"Last-Translator: Julien Palard <[email protected]>\n"
17-
"Language-Team: \n"
1818
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/distutils/sourcedist.rst:5

faq/design.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
10+
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
1111
"PO-Revision-Date: 2017-05-27 10:22+0200\n"
12+
"Last-Translator: Julien Palard <[email protected]>\n"
13+
"Language-Team: \n"
1214
"Language: fr\n"
1315
"MIME-Version: 1.0\n"
1416
"Content-Type: text/plain; charset=UTF-8\n"
1517
"Content-Transfer-Encoding: 8bit\n"
16-
"Last-Translator: Julien Palard <[email protected]>\n"
17-
"Language-Team: \n"
1818
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/faq/design.rst:3

faq/general.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
10+
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
1111
"PO-Revision-Date: 2017-05-24 14:04+0200\n"
12+
"Last-Translator: \n"
13+
"Language-Team: \n"
1214
"Language: fr\n"
1315
"MIME-Version: 1.0\n"
1416
"Content-Type: text/plain; charset=UTF-8\n"
1517
"Content-Transfer-Encoding: 8bit\n"
1618
"X-Generator: Poedit 1.8.11\n"
17-
"Last-Translator: \n"
18-
"Language-Team: \n"
1919

2020
#: ../Doc/faq/general.rst:5
2121
msgid "General Python FAQ"

0 commit comments

Comments
 (0)