Skip to content

Commit 3a9ed6d

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 865a83f commit 3a9ed6d

File tree

14 files changed

+108
-38
lines changed

14 files changed

+108
-38
lines changed

c-api/lifecycle.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-09 14:46+0000\n"
11+
"POT-Creation-Date: 2026-03-01 14:19+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"

deprecations/pending-removal-in-future.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-09 14:46+0000\n"
11+
"POT-Creation-Date: 2026-03-01 14:19+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"

howto/regex.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-09 14:46+0000\n"
14+
"POT-Creation-Date: 2026-03-01 14:19+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

howto/urllib2.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-09 14:46+0000\n"
14+
"POT-Creation-Date: 2026-03-01 14:19+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

library/contextlib.po

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-27 14:36+0000\n"
11+
"POT-Creation-Date: 2026-03-03 14:40+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"
@@ -38,19 +38,19 @@ msgid "Functions and classes provided:"
3838
msgstr ""
3939

4040
msgid ""
41-
"An :term:`abstract base class` for classes that implement :meth:`object."
42-
"__enter__` and :meth:`object.__exit__`. A default implementation for :meth:"
43-
"`object.__enter__` is provided which returns ``self`` while :meth:`object."
41+
"An :term:`abstract base class` for classes that implement :meth:`~object."
42+
"__enter__` and :meth:`~object.__exit__`. A default implementation for :meth:"
43+
"`~object.__enter__` is provided which returns ``self`` while :meth:`~object."
4444
"__exit__` is an abstract method which by default returns ``None``. See also "
4545
"the definition of :ref:`typecontextmanager`."
4646
msgstr ""
4747

4848
msgid ""
49-
"An :term:`abstract base class` for classes that implement :meth:`object."
50-
"__aenter__` and :meth:`object.__aexit__`. A default implementation for :meth:"
51-
"`object.__aenter__` is provided which returns ``self`` while :meth:`object."
52-
"__aexit__` is an abstract method which by default returns ``None``. See also "
53-
"the definition of :ref:`async-context-managers`."
49+
"An :term:`abstract base class` for classes that implement :meth:`~object."
50+
"__aenter__` and :meth:`~object.__aexit__`. A default implementation for :"
51+
"meth:`~object.__aenter__` is provided which returns ``self`` while :meth:"
52+
"`~object.__aexit__` is an abstract method which by default returns ``None``. "
53+
"See also the definition of :ref:`async-context-managers`."
5454
msgstr ""
5555

5656
msgid ""
@@ -275,9 +275,9 @@ msgid ""
275275
msgstr ""
276276

277277
msgid ""
278-
"Return a context manager that returns *enter_result* from ``__enter__``, but "
279-
"otherwise does nothing. It is intended to be used as a stand-in for an "
280-
"optional context manager, for example::"
278+
"Return a context manager that returns *enter_result* from :meth:`~object."
279+
"__enter__`, but otherwise does nothing. It is intended to be used as a stand-"
280+
"in for an optional context manager, for example::"
281281
msgstr ""
282282

283283
msgid ""
@@ -400,9 +400,9 @@ msgstr ""
400400
msgid ""
401401
"For example, the output of :func:`help` normally is sent to *sys.stdout*. "
402402
"You can capture that output in a string by redirecting the output to an :"
403-
"class:`io.StringIO` object. The replacement stream is returned from the "
404-
"``__enter__`` method and so is available as the target of the :keyword:"
405-
"`with` statement::"
403+
"class:`io.StringIO` object. The replacement stream is returned from the :"
404+
"meth:`~object.__enter__` method and so is available as the target of the :"
405+
"keyword:`with` statement::"
406406
msgstr ""
407407

408408
msgid ""
@@ -461,9 +461,10 @@ msgid ""
461461
msgstr ""
462462

463463
msgid ""
464-
"Context managers inheriting from ``ContextDecorator`` have to implement "
465-
"``__enter__`` and ``__exit__`` as normal. ``__exit__`` retains its optional "
466-
"exception handling even when used as a decorator."
464+
"Context managers inheriting from ``ContextDecorator`` have to implement :"
465+
"meth:`~object.__enter__` and :meth:`~object.__exit__` as normal. "
466+
"``__exit__`` retains its optional exception handling even when used as a "
467+
"decorator."
467468
msgstr ""
468469

469470
msgid ""
@@ -820,11 +821,12 @@ msgid "Catching exceptions from ``__enter__`` methods"
820821
msgstr ""
821822

822823
msgid ""
823-
"It is occasionally desirable to catch exceptions from an ``__enter__`` "
824-
"method implementation, *without* inadvertently catching exceptions from the :"
825-
"keyword:`with` statement body or the context manager's ``__exit__`` method. "
826-
"By using :class:`ExitStack` the steps in the context management protocol can "
827-
"be separated slightly in order to allow this::"
824+
"It is occasionally desirable to catch exceptions from an :meth:`~object."
825+
"__enter__` method implementation, *without* inadvertently catching "
826+
"exceptions from the :keyword:`with` statement body or the context manager's :"
827+
"meth:`~object.__exit__` method. By using :class:`ExitStack` the steps in the "
828+
"context management protocol can be separated slightly in order to allow "
829+
"this::"
828830
msgstr ""
829831

830832
msgid ""

library/email.encoders.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
14+
"POT-Creation-Date: 2026-03-03 14:40+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

library/idle.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-09 14:46+0000\n"
11+
"POT-Creation-Date: 2026-03-01 14:19+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"

library/json.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
14+
"POT-Creation-Date: 2026-03-03 14:40+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

library/stdtypes.po

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-27 14:36+0000\n"
14+
"POT-Creation-Date: 2026-03-03 14:40+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
@@ -2493,10 +2493,18 @@ msgid ""
24932493
"Return ``True`` if all characters in the string are alphanumeric and there "
24942494
"is at least one character, ``False`` otherwise. A character ``c`` is "
24952495
"alphanumeric if one of the following returns ``True``: ``c.isalpha()``, ``c."
2496-
"isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``. For example::"
2496+
"isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``. For example:"
24972497
msgstr ""
24982498

2499-
msgid ".. doctest::"
2499+
msgid ""
2500+
">>> 'abc123'.isalnum()\n"
2501+
"True\n"
2502+
">>> 'abc123!@#'.isalnum()\n"
2503+
"False\n"
2504+
">>> ''.isalnum()\n"
2505+
"False\n"
2506+
">>> ' '.isalnum()\n"
2507+
"False"
25002508
msgstr ""
25012509

25022510
msgid ""

library/wave.po

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-27 14:36+0000\n"
11+
"POT-Creation-Date: 2026-03-03 14:40+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"
@@ -195,32 +195,55 @@ msgstr ""
195195
msgid "Set the number of channels."
196196
msgstr ""
197197

198+
msgid "Return the number of channels."
199+
msgstr ""
200+
198201
msgid "Set the sample width to *n* bytes."
199202
msgstr ""
200203

204+
msgid "Return the sample width in bytes."
205+
msgstr ""
206+
201207
msgid "Set the frame rate to *n*."
202208
msgstr ""
203209

204210
msgid "A non-integral input to this method is rounded to the nearest integer."
205211
msgstr ""
206212

213+
msgid "Return the frame rate."
214+
msgstr ""
215+
207216
msgid ""
208217
"Set the number of frames to *n*. This will be changed later if the number "
209218
"of frames actually written is different (this update attempt will raise an "
210219
"error if the output stream is not seekable)."
211220
msgstr ""
212221

222+
msgid "Return the number of audio frames written so far."
223+
msgstr ""
224+
213225
msgid ""
214226
"Set the compression type and description. At the moment, only compression "
215227
"type ``NONE`` is supported, meaning no compression."
216228
msgstr ""
217229

230+
msgid "Return the compression type (``'NONE'``)."
231+
msgstr ""
232+
233+
msgid "Return the human-readable compression type name."
234+
msgstr ""
235+
218236
msgid ""
219237
"The *tuple* should be ``(nchannels, sampwidth, framerate, nframes, comptype, "
220238
"compname)``, with values valid for the ``set*()`` methods. Sets all "
221239
"parameters."
222240
msgstr ""
223241

242+
msgid ""
243+
"Return a :func:`~collections.namedtuple` ``(nchannels, sampwidth, framerate, "
244+
"nframes, comptype, compname)`` containing the current output parameters."
245+
msgstr ""
246+
224247
msgid ""
225248
"Return current position in the file, with the same disclaimer for the :meth:"
226249
"`Wave_read.tell` and :meth:`Wave_read.setpos` methods."

0 commit comments

Comments
 (0)