44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
7- # Maciej Olko <[email protected] >, 202187# Stan Ulbrych, 2025
8+ # Maciej Olko <[email protected] >, 202599#
1010#, fuzzy
1111msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.13\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-01-17 14:16+0000\n "
15+ "POT-Creation-Date : 2025-01-24 14:16+0000\n "
1616"PO-Revision-Date : 2021-06-28 01:08+0000\n "
17- "Last-Translator : Stan Ulbrych , 2025\n "
17+ "
Last-Translator :
Maciej Olko <[email protected] > , 2025\n"
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
1919"MIME-Version : 1.0\n "
2020"Content-Type : text/plain; charset=UTF-8\n "
@@ -109,8 +109,8 @@ msgid ""
109109"'0.32.3'"
110110msgstr ""
111111"(example) $ python\n"
112- ">>> from importlib.metadata import version \n"
113- ">>> version('wheel') \n"
112+ ">>> from importlib.metadata import version\n"
113+ ">>> version('wheel')\n"
114114"'0.32.3'"
115115
116116msgid ""
@@ -193,7 +193,7 @@ msgid "Query all entry points::"
193193msgstr ""
194194
195195msgid ">>> eps = entry_points() "
196- msgstr ">>> eps = entry_points() "
196+ msgstr ">>> eps = entry_points()"
197197
198198msgid ""
199199"The :func:`!entry_points` function returns a :class:`!EntryPoints` object, a "
@@ -206,7 +206,7 @@ msgid ""
206206"['console_scripts', 'distutils.commands', 'distutils.setup_keywords', "
207207"'egg_info.writers', 'setuptools.installation']"
208208msgstr ""
209- ">>> sorted(eps.groups) \n"
209+ ">>> sorted(eps.groups)\n"
210210"['console_scripts', 'distutils.commands', 'distutils.setup_keywords', "
211211"'egg_info.writers', 'setuptools.installation']"
212212
@@ -217,15 +217,15 @@ msgid ""
217217msgstr ""
218218
219219msgid ">>> scripts = eps.select(group='console_scripts') "
220- msgstr ">>> scripts = eps.select(group='console_scripts') "
220+ msgstr ">>> scripts = eps.select(group='console_scripts')"
221221
222222msgid ""
223223"Equivalently, since :func:`!entry_points` passes keyword arguments through "
224224"to select::"
225225msgstr ""
226226
227227msgid ">>> scripts = entry_points(group='console_scripts') "
228- msgstr ">>> scripts = entry_points(group='console_scripts') "
228+ msgstr ">>> scripts = entry_points(group='console_scripts')"
229229
230230msgid ""
231231"Pick out a specific script named \" wheel\" (found in the wheel project)::"
@@ -236,9 +236,9 @@ msgid ""
236236"True\n"
237237">>> wheel = scripts['wheel'] "
238238msgstr ""
239- ">>> 'wheel' in scripts.names \n"
239+ ">>> 'wheel' in scripts.names\n"
240240"True\n"
241- ">>> wheel = scripts['wheel'] "
241+ ">>> wheel = scripts['wheel']"
242242
243243msgid "Equivalently, query for that entry point during selection::"
244244msgstr ""
@@ -247,8 +247,8 @@ msgid ""
247247">>> (wheel,) = entry_points(group='console_scripts', name='wheel') \n"
248248">>> (wheel,) = entry_points().select(group='console_scripts', name='wheel') "
249249msgstr ""
250- ">>> (wheel,) = entry_points(group='console_scripts', name='wheel') \n"
251- ">>> (wheel,) = entry_points().select(group='console_scripts', name='wheel') "
250+ ">>> (wheel,) = entry_points(group='console_scripts', name='wheel')\n"
251+ ">>> (wheel,) = entry_points().select(group='console_scripts', name='wheel')"
252252
253253msgid "Inspect the resolved entry point::"
254254msgstr ""
@@ -320,7 +320,7 @@ msgid ""
320320msgstr ""
321321
322322msgid ">>> wheel_metadata = metadata('wheel') "
323- msgstr ">>> wheel_metadata = metadata('wheel') "
323+ msgstr ">>> wheel_metadata = metadata('wheel')"
324324
325325msgid ""
326326"The keys of the returned data structure name the metadata keywords, and the "
@@ -331,7 +331,7 @@ msgid ""
331331">>> wheel_metadata['Requires-Python'] \n"
332332"'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'"
333333msgstr ""
334- ">>> wheel_metadata['Requires-Python'] \n"
334+ ">>> wheel_metadata['Requires-Python']\n"
335335"'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'"
336336
337337msgid ""
@@ -378,7 +378,7 @@ msgid ""
378378">>> version('wheel') \n"
379379"'0.32.3'"
380380msgstr ""
381- ">>> version('wheel') \n"
381+ ">>> version('wheel')\n"
382382"'0.32.3'"
383383
384384msgid "Distribution files"
@@ -442,7 +442,7 @@ msgid ""
442442">>> util.locate() \n"
443443"PosixPath('/home/gustav/example/lib/site-packages/wheel/util.py')"
444444msgstr ""
445- ">>> util.locate() \n"
445+ ">>> util.locate()\n"
446446"PosixPath('/home/gustav/example/lib/site-packages/wheel/util.py')"
447447
448448msgid ""
@@ -471,7 +471,7 @@ msgid ""
471471">>> requires('wheel') \n"
472472"[\" pytest (>=3.0.0) ; extra == 'test'\" , \" pytest-cov ; extra == 'test'\" ]"
473473msgstr ""
474- ">>> requires('wheel') \n"
474+ ">>> requires('wheel')\n"
475475"[\" pytest (>=3.0.0) ; extra == 'test'\" , \" pytest-cov ; extra == 'test'\" ]"
476476
477477msgid "Mapping import to distribution packages"
@@ -545,9 +545,9 @@ msgid ""
545545">>> type(dist) \n"
546546"<class 'importlib.metadata.PathDistribution'>"
547547msgstr ""
548- ">>> from importlib.metadata import distribution \n"
549- ">>> dist = distribution('wheel') \n"
550- ">>> type(dist) \n"
548+ ">>> from importlib.metadata import distribution\n"
549+ ">>> dist = distribution('wheel')\n"
550+ ">>> type(dist)\n"
551551"<class 'importlib.metadata.PathDistribution'>"
552552
553553msgid ""
@@ -559,7 +559,7 @@ msgid ""
559559">>> dist.version \n"
560560"'0.32.3'"
561561msgstr ""
562- ">>> dist.version \n"
562+ ">>> dist.version\n"
563563"'0.32.3'"
564564
565565msgid ""
@@ -573,9 +573,9 @@ msgid ""
573573">>> dist.metadata['License'] \n"
574574"'MIT'"
575575msgstr ""
576- ">>> dist.metadata['Requires-Python'] \n"
576+ ">>> dist.metadata['Requires-Python']\n"
577577"'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'\n"
578- ">>> dist.metadata['License'] \n"
578+ ">>> dist.metadata['License']\n"
579579"'MIT'"
580580
581581msgid ""
0 commit comments