@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.11\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2023-03-31 18:02 +0000\n "
14
+ "POT-Creation-Date : 2023-04-07 14:12 +0000\n "
15
15
"PO-Revision-Date : 2021-06-28 01:05+0000\n "
16
16
"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -210,8 +210,8 @@ msgstr ""
210
210
211
211
msgid ""
212
212
"Modify the :class:`str() <str>` and :func:`repr` of an enum to show its "
213
- "members as belonging to the module instead of its class. Should only be used "
214
- "if the enum members will be exported to the module global namespace."
213
+ "members as belonging to the module instead of its class, and export the enum "
214
+ "members to the global namespace."
215
215
msgstr ""
216
216
217
217
msgid ":func:`show_flag_values`"
@@ -244,127 +244,129 @@ msgid ""
244
244
"providing iteration over the enum class, etc."
245
245
msgstr ""
246
246
247
- msgid "Returns ``True`` if member belongs to the ``cls``: :"
247
+ msgid "This method is called in two different ways :"
248
248
msgstr ""
249
249
250
- msgid ""
251
- "In Python 3.12 it will be possible to check for member values and not just "
252
- "members; until then, a ``TypeError`` will be raised if a non-Enum-member is "
253
- "used in a containment check."
250
+ msgid "to look up an existing member:"
254
251
msgstr ""
255
252
256
- msgid ""
257
- "Returns ``['__class__', '__doc__', '__members__', '__module__']`` and the "
258
- "names of the members in *cls*::"
253
+ msgid "cls"
259
254
msgstr ""
260
255
261
- msgid ""
262
- "Returns the Enum member in *cls* matching *name*, or raises an :exc:"
263
- "`AttributeError`::"
256
+ msgid "The enum class being called."
264
257
msgstr ""
265
258
266
- msgid ""
267
- "Returns the Enum member in *cls* matching *name*, or raises a :exc:"
268
- "`KeyError`::"
259
+ msgid "value"
269
260
msgstr ""
270
261
271
- msgid "Returns each member in *cls* in definition order:: "
262
+ msgid "The value to lookup. "
272
263
msgstr ""
273
264
274
- msgid "Returns the number of member in *cls*::"
265
+ msgid ""
266
+ "to use the ``cls`` enum to create a new enum (only if the existing enum does "
267
+ "not have any members):"
275
268
msgstr ""
276
269
277
- msgid "Returns each member in *cls* in reverse definition order:: "
270
+ msgid "The name of the new Enum to create. "
278
271
msgstr ""
279
272
280
- msgid "*Enum* is the base class for all *enum* enumerations. "
273
+ msgid "names "
281
274
msgstr ""
282
275
283
- msgid "The name used to define the ``Enum`` member:: "
276
+ msgid "The names/values of the members for the new Enum. "
284
277
msgstr ""
285
278
286
- msgid "The value given to the ``Enum`` member:: "
279
+ msgid "module "
287
280
msgstr ""
288
281
289
- msgid "Enum member values "
282
+ msgid "The name of the module the new Enum is created in. "
290
283
msgstr ""
291
284
292
- msgid ""
293
- "Member values can be anything: :class:`int`, :class:`str`, etc. If the "
294
- "exact value is unimportant you may use :class:`auto` instances and an "
295
- "appropriate value will be chosen for you. See :class:`auto` for the details."
285
+ msgid "qualname"
296
286
msgstr ""
297
287
298
- msgid ""
299
- "``_ignore_`` is only used during creation and is removed from the "
300
- "enumeration once creation is complete."
288
+ msgid "The actual location in the module where this Enum can be found."
301
289
msgstr ""
302
290
303
- msgid ""
304
- "``_ignore_`` is a list of names that will not become members, and whose "
305
- "names will also be removed from the completed enumeration. See :ref:"
306
- "`TimePeriod <enum-time-period>` for an example."
291
+ msgid "type"
307
292
msgstr ""
308
293
309
- msgid "This method is called in two different ways: "
294
+ msgid "A mix-in type for the new Enum. "
310
295
msgstr ""
311
296
312
- msgid "to look up an existing member: "
297
+ msgid "start "
313
298
msgstr ""
314
299
315
- msgid "cls "
300
+ msgid "The first integer value for the Enum (used by :class:`auto`). "
316
301
msgstr ""
317
302
318
- msgid "The enum class being called. "
303
+ msgid "boundary "
319
304
msgstr ""
320
305
321
- msgid "value"
306
+ msgid ""
307
+ "How to handle out-of-range values from bit operations (:class:`Flag` only)."
322
308
msgstr ""
323
309
324
- msgid "The value to lookup. "
310
+ msgid "Returns ``True`` if member belongs to the ``cls``:: "
325
311
msgstr ""
326
312
327
- msgid "to use the ``cls`` enum to create a new enum:"
313
+ msgid ""
314
+ "In Python 3.12 it will be possible to check for member values and not just "
315
+ "members; until then, a ``TypeError`` will be raised if a non-Enum-member is "
316
+ "used in a containment check."
328
317
msgstr ""
329
318
330
- msgid "The name of the new Enum to create."
319
+ msgid ""
320
+ "Returns ``['__class__', '__doc__', '__members__', '__module__']`` and the "
321
+ "names of the members in *cls*::"
331
322
msgstr ""
332
323
333
- msgid "names"
324
+ msgid ""
325
+ "Returns the Enum member in *cls* matching *name*, or raises an :exc:"
326
+ "`AttributeError`::"
334
327
msgstr ""
335
328
336
- msgid "The names/values of the members for the new Enum."
329
+ msgid ""
330
+ "Returns the Enum member in *cls* matching *name*, or raises a :exc:"
331
+ "`KeyError`::"
337
332
msgstr ""
338
333
339
- msgid "module "
334
+ msgid "Returns each member in *cls* in definition order:: "
340
335
msgstr ""
341
336
342
- msgid "The name of the module the new Enum is created in. "
337
+ msgid "Returns the number of member in *cls*:: "
343
338
msgstr ""
344
339
345
- msgid "qualname "
340
+ msgid "Returns each member in *cls* in reverse definition order:: "
346
341
msgstr ""
347
342
348
- msgid "The actual location in the module where this Enum can be found ."
343
+ msgid "*Enum* is the base class for all *enum* enumerations ."
349
344
msgstr ""
350
345
351
- msgid "type "
346
+ msgid "The name used to define the ``Enum`` member:: "
352
347
msgstr ""
353
348
354
- msgid "A mix-in type for the new Enum. "
349
+ msgid "The value given to the `` Enum`` member:: "
355
350
msgstr ""
356
351
357
- msgid "start "
352
+ msgid "Enum member values "
358
353
msgstr ""
359
354
360
- msgid "The first integer value for the Enum (used by :class:`auto`)."
355
+ msgid ""
356
+ "Member values can be anything: :class:`int`, :class:`str`, etc. If the "
357
+ "exact value is unimportant you may use :class:`auto` instances and an "
358
+ "appropriate value will be chosen for you. See :class:`auto` for the details."
361
359
msgstr ""
362
360
363
- msgid "boundary"
361
+ msgid ""
362
+ "``_ignore_`` is only used during creation and is removed from the "
363
+ "enumeration once creation is complete."
364
364
msgstr ""
365
365
366
366
msgid ""
367
- "How to handle out-of-range values from bit operations (:class:`Flag` only)."
367
+ "``_ignore_`` is a list of names that will not become members, and whose "
368
+ "names will also be removed from the completed enumeration. See :ref:"
369
+ "`TimePeriod <enum-time-period>` for an example."
368
370
msgstr ""
369
371
370
372
msgid ""
@@ -611,13 +613,12 @@ msgid ""
611
613
msgstr ""
612
614
613
615
msgid ""
614
- "Out-of-range values lose their *Flag* membership and revert to :class:`int`. "
615
- "This is the default for :class:`IntFlag`::"
616
+ "Out-of-range values lose their *Flag* membership and revert to :class:`int`."
616
617
msgstr ""
617
618
618
619
msgid ""
619
- "Out-of-range values are kept, and the *Flag* membership is kept. This is "
620
- "used for some stdlib flags ::"
620
+ "Out-of-range values are kept, and the *Flag* membership is kept. This is the "
621
+ "default for :class:`IntFlag` ::"
621
622
msgstr ""
622
623
623
624
msgid "Supported ``__dunder__`` names"
0 commit comments