Skip to content

Commit db2decc

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 1c6e40b commit db2decc

File tree

10 files changed

+67
-18
lines changed

10 files changed

+67
-18
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-01-09 14:19+0000\n"
11+
"POT-Creation-Date: 2026-01-21 14:24+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: 2025-12-31 14:15+0000\n"
14+
"POT-Creation-Date: 2026-01-19 14:21+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: 2025-12-31 14:15+0000\n"
14+
"POT-Creation-Date: 2026-01-19 14:21+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/idle.po

Lines changed: 19 additions & 6 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-01-09 14:19+0000\n"
11+
"POT-Creation-Date: 2026-01-21 14:24+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"
@@ -270,7 +270,7 @@ msgstr ""
270270

271271
msgid ""
272272
"Open a scrollable list allowing selection of existing names. See :ref:"
273-
"`Completions <completions>` in the Editing and navigation section below."
273+
"`Completions <completions>` in the Editing and Navigation section below."
274274
msgstr ""
275275

276276
msgid "Expand Word"
@@ -287,7 +287,7 @@ msgstr ""
287287
msgid ""
288288
"After an unclosed parenthesis for a function, open a small window with "
289289
"function parameter hints. See :ref:`Calltips <calltips>` in the Editing and "
290-
"navigation section below."
290+
"Navigation section below."
291291
msgstr ""
292292

293293
msgid "Show Surrounding Parens"
@@ -303,9 +303,9 @@ msgid "Format Paragraph"
303303
msgstr ""
304304

305305
msgid ""
306-
"Reformat the current blank-line-delimited paragraph in comment block or "
307-
"multiline string or selected line in a string. All lines in the paragraph "
308-
"will be formatted to less than N columns, where N defaults to 72."
306+
"Rewrap the text block containing the text insert cursor. Avoid code lines. "
307+
"See :ref:`Format block<format-block>` in the Editing and Navigation section "
308+
"below."
309309
msgstr ""
310310

311311
msgid "Indent Region"
@@ -832,6 +832,19 @@ msgid ""
832832
"function definitions, or after opening an existing file."
833833
msgstr ""
834834

835+
msgid "Format block"
836+
msgstr ""
837+
838+
msgid ""
839+
"Reformat Paragraph rewraps a block ('paragraph') of contiguous equally "
840+
"indented non-blank comments, a similar block of text within a multiline "
841+
"string, or a selected subset of either. If needed, add a blank line to "
842+
"separate string from code. Partial lines in a selection expand to complete "
843+
"lines. The resulting lines have the same indent as before but have maximum "
844+
"total length of N columns (characters). Change the default N of 72 on the "
845+
"Window tab of IDLE Settings."
846+
msgstr ""
847+
835848
msgid "Code Context"
836849
msgstr ""
837850

library/stdtypes.po

Lines changed: 13 additions & 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-01-13 14:20+0000\n"
14+
"POT-Creation-Date: 2026-01-21 14:24+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/"
@@ -2968,6 +2968,18 @@ msgid ""
29682968
"containing two empty strings, followed by the string itself."
29692969
msgstr ""
29702970

2971+
msgid ""
2972+
">>> 'Monty Python'.rpartition(' ')\n"
2973+
"('Monty', ' ', 'Python')\n"
2974+
">>> \"Monty Python's Flying Circus\".rpartition(' ')\n"
2975+
"(\"Monty Python's Flying\", ' ', 'Circus')\n"
2976+
">>> 'Monty Python'.rpartition('-')\n"
2977+
"('', '', 'Monty Python')"
2978+
msgstr ""
2979+
2980+
msgid "See also :meth:`partition`."
2981+
msgstr ""
2982+
29712983
msgid ""
29722984
"Return a list of the words in the string, using *sep* as the delimiter "
29732985
"string. If *maxsplit* is given, at most *maxsplit* splits are done, the "

library/webbrowser.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-01-01 14:14+0000\n"
14+
"POT-Creation-Date: 2026-01-21 14:24+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

reference/executionmodel.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: 2025-12-31 14:15+0000\n"
14+
"POT-Creation-Date: 2026-01-19 14:21+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

reference/import.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: 2025-12-31 14:15+0000\n"
14+
"POT-Creation-Date: 2026-01-19 14:21+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

tutorial/appendix.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-01-01 14:14+0000\n"
14+
"POT-Creation-Date: 2026-01-21 14:24+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

whatsnew/changelog.po

Lines changed: 28 additions & 4 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-01-19 14:21+0000\n"
11+
"POT-Creation-Date: 2026-01-21 14:24+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"
@@ -83,12 +83,28 @@ msgstr ""
8383
msgid "Library"
8484
msgstr ""
8585

86+
msgid ""
87+
":gh:`144050`: Fix :func:`stat.filemode` in the pure-Python implementation to "
88+
"avoid misclassifying invalid mode values as block devices."
89+
msgstr ""
90+
91+
msgid ""
92+
":gh:`143999`: Fix an issue where :func:`inspect.getgeneratorstate` and :func:"
93+
"`inspect.getcoroutinestate` could fail for generators wrapped by :func:"
94+
"`types.coroutine` in the suspended state."
95+
msgstr ""
96+
8697
msgid ""
8798
":gh:`143831`: :class:`annotationlib.ForwardRef` objects are now hashable "
8899
"when created from annotation scopes with closures. Previously, hashing such "
89100
"objects would throw an exception. Patch by Bartosz Sławecki."
90101
msgstr ""
91102

103+
msgid ""
104+
":gh:`143874`: Fixed a bug in :mod:`pdb` where expression results were not "
105+
"sent back to remote client."
106+
msgstr ""
107+
92108
msgid ""
93109
":gh:`143880`: Fix data race in :func:`functools.partial` in the :term:`free "
94110
"threading` build."
@@ -414,6 +430,13 @@ msgid ""
414430
"occurred."
415431
msgstr ""
416432

433+
msgid "IDLE"
434+
msgstr ""
435+
436+
msgid ""
437+
":gh:`143774`: Better explain the operation of Format / Format Paragraph."
438+
msgstr ""
439+
417440
msgid "Documentation"
418441
msgstr ""
419442

@@ -423,6 +446,10 @@ msgstr ""
423446
msgid "Core and Builtins"
424447
msgstr ""
425448

449+
msgid ""
450+
":gh:`144012`: Check if the result is ``NULL`` in ``BINARY_OP_EXTENT`` opcode."
451+
msgstr ""
452+
426453
msgid ""
427454
":gh:`141805`: Fix crash in :class:`set` when objects with the same hash are "
428455
"concurrently added to the set after removing an element with the same hash "
@@ -1414,9 +1441,6 @@ msgid ""
14141441
"sched_get_priority_min` and :func:`os.sched_get_priority_max` functions."
14151442
msgstr ""
14161443

1417-
msgid "IDLE"
1418-
msgstr ""
1419-
14201444
msgid ""
14211445
":gh:`96491`: Deduplicate version number in IDLE shell title bar after saving "
14221446
"to a file."

0 commit comments

Comments
 (0)