@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.11\n "
1313"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 "
1515"PO-Revision-Date : 2021-06-28 01:05+0000\n "
1616"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -210,8 +210,8 @@ msgstr ""
210210
211211msgid ""
212212"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."
215215msgstr ""
216216
217217msgid ":func:`show_flag_values`"
@@ -244,127 +244,129 @@ msgid ""
244244"providing iteration over the enum class, etc."
245245msgstr ""
246246
247- msgid "Returns ``True`` if member belongs to the ``cls``: :"
247+ msgid "This method is called in two different ways :"
248248msgstr ""
249249
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:"
254251msgstr ""
255252
256- msgid ""
257- "Returns ``['__class__', '__doc__', '__members__', '__module__']`` and the "
258- "names of the members in *cls*::"
253+ msgid "cls"
259254msgstr ""
260255
261- msgid ""
262- "Returns the Enum member in *cls* matching *name*, or raises an :exc:"
263- "`AttributeError`::"
256+ msgid "The enum class being called."
264257msgstr ""
265258
266- msgid ""
267- "Returns the Enum member in *cls* matching *name*, or raises a :exc:"
268- "`KeyError`::"
259+ msgid "value"
269260msgstr ""
270261
271- msgid "Returns each member in *cls* in definition order:: "
262+ msgid "The value to lookup. "
272263msgstr ""
273264
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):"
275268msgstr ""
276269
277- msgid "Returns each member in *cls* in reverse definition order:: "
270+ msgid "The name of the new Enum to create. "
278271msgstr ""
279272
280- msgid "*Enum* is the base class for all *enum* enumerations. "
273+ msgid "names "
281274msgstr ""
282275
283- msgid "The name used to define the ``Enum`` member:: "
276+ msgid "The names/values of the members for the new Enum. "
284277msgstr ""
285278
286- msgid "The value given to the ``Enum`` member:: "
279+ msgid "module "
287280msgstr ""
288281
289- msgid "Enum member values "
282+ msgid "The name of the module the new Enum is created in. "
290283msgstr ""
291284
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"
296286msgstr ""
297287
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."
301289msgstr ""
302290
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"
307292msgstr ""
308293
309- msgid "This method is called in two different ways: "
294+ msgid "A mix-in type for the new Enum. "
310295msgstr ""
311296
312- msgid "to look up an existing member: "
297+ msgid "start "
313298msgstr ""
314299
315- msgid "cls "
300+ msgid "The first integer value for the Enum (used by :class:`auto`). "
316301msgstr ""
317302
318- msgid "The enum class being called. "
303+ msgid "boundary "
319304msgstr ""
320305
321- msgid "value"
306+ msgid ""
307+ "How to handle out-of-range values from bit operations (:class:`Flag` only)."
322308msgstr ""
323309
324- msgid "The value to lookup. "
310+ msgid "Returns ``True`` if member belongs to the ``cls``:: "
325311msgstr ""
326312
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."
328317msgstr ""
329318
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*::"
331322msgstr ""
332323
333- msgid "names"
324+ msgid ""
325+ "Returns the Enum member in *cls* matching *name*, or raises an :exc:"
326+ "`AttributeError`::"
334327msgstr ""
335328
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`::"
337332msgstr ""
338333
339- msgid "module "
334+ msgid "Returns each member in *cls* in definition order:: "
340335msgstr ""
341336
342- msgid "The name of the module the new Enum is created in. "
337+ msgid "Returns the number of member in *cls*:: "
343338msgstr ""
344339
345- msgid "qualname "
340+ msgid "Returns each member in *cls* in reverse definition order:: "
346341msgstr ""
347342
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 ."
349344msgstr ""
350345
351- msgid "type "
346+ msgid "The name used to define the ``Enum`` member:: "
352347msgstr ""
353348
354- msgid "A mix-in type for the new Enum. "
349+ msgid "The value given to the `` Enum`` member:: "
355350msgstr ""
356351
357- msgid "start "
352+ msgid "Enum member values "
358353msgstr ""
359354
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."
361359msgstr ""
362360
363- msgid "boundary"
361+ msgid ""
362+ "``_ignore_`` is only used during creation and is removed from the "
363+ "enumeration once creation is complete."
364364msgstr ""
365365
366366msgid ""
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."
368370msgstr ""
369371
370372msgid ""
@@ -611,13 +613,12 @@ msgid ""
611613msgstr ""
612614
613615msgid ""
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`."
616617msgstr ""
617618
618619msgid ""
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` ::"
621622msgstr ""
622623
623624msgid "Supported ``__dunder__`` names"
0 commit comments