Skip to content

Commit 4bb8a40

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 47b58cf commit 4bb8a40

3 files changed

Lines changed: 109 additions & 4 deletions

File tree

c-api/long.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-06-07 16:19+0000\n"
14+
"POT-Creation-Date: 2026-06-27 16:00+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:16+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/tkinter.po

Lines changed: 19 additions & 2 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-06-25 17:23+0000\n"
14+
"POT-Creation-Date: 2026-06-27 16:00+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1105,7 +1105,9 @@ msgid ""
11051105
"The standard X cursor names from :file:`cursorfont.h` can be used, without "
11061106
"the ``XC_`` prefix. For example to get a hand cursor (``XC_hand2``), use "
11071107
"the string ``\"hand2\"``. You can also specify a bitmap and mask file of "
1108-
"your own. See page 179 of Ousterhout's book."
1108+
"your own. On Windows a cursor file (:file:`.cur` or :file:`.ani`) may be "
1109+
"used directly, giving its path preceded with an ``@``, as in ``\"@C:/cursors/"
1110+
"bart.ani\"``. See page 179 of Ousterhout's book."
11091111
msgstr ""
11101112

11111113
msgid "distance"
@@ -1363,6 +1365,21 @@ msgstr ""
13631365
msgid "delta"
13641366
msgstr ""
13651367

1368+
msgid ""
1369+
"The ``add`` parameter above only affects the bindings you make yourself. "
1370+
"Every widget also inherits *class bindings* that implement its standard "
1371+
"behavior -- for example a :class:`Text` widget binds :kbd:`Control-t` to "
1372+
"transpose two characters. These are described in the bindings section of the "
1373+
"widget's Tk man page (such as :manpage:`text(3tk)` or :manpage:`entry(3tk)`)."
1374+
msgstr ""
1375+
1376+
msgid ""
1377+
"Class bindings are processed separately from your own, so binding an event "
1378+
"yourself does not replace the default; both run. To suppress an unwanted "
1379+
"default binding, bind the event on the widget and return the string "
1380+
"``\"break\"`` from your callback."
1381+
msgstr ""
1382+
13661383
msgid "The index parameter"
13671384
msgstr ""
13681385

whatsnew/changelog.po

Lines changed: 89 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-06-25 17:23+0000\n"
14+
"POT-Creation-Date: 2026-06-27 16:00+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:19+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -75,6 +75,78 @@ msgid ""
7575
"exc:`MemoryError` happens. Patch by Amrutha Modela."
7676
msgstr ""
7777

78+
msgid ""
79+
":gh:`151126`: Fix two crashes in :mod:`tkinter` and :mod:`socket` modules "
80+
"initialization under a memory pressure. Sets missing :exc:`MemoryError`."
81+
msgstr ""
82+
83+
msgid ""
84+
":gh:`71880`: :class:`curses.textpad.Textbox` now lets the lower-right cell "
85+
"of the window be edited. Writing it with :meth:`~curses.window.addch` would "
86+
"move the cursor past the end of the window, raising an error and scrolling a "
87+
"scrollable window, so it is now written with :meth:`~curses.window.insch`, "
88+
"which keeps the cursor in place."
89+
msgstr ""
90+
91+
msgid ""
92+
":gh:`152305`: Fix the pure-Python :meth:`datetime.time.strftime` "
93+
"implementation raising :exc:`AttributeError` for the year directives. Patch "
94+
"by tonghuaroot."
95+
msgstr ""
96+
97+
msgid ""
98+
":gh:`88758`: :meth:`!tkinter.Misc.focus_get`, :meth:`!focus_displayof`, :"
99+
"meth:`!focus_lastfor` and :meth:`!winfo_containing` now return ``None`` "
100+
"instead of raising :exc:`KeyError` when the widget was not created by :mod:"
101+
"`tkinter` (for example a torn-off menu)."
102+
msgstr ""
103+
104+
msgid ""
105+
":gh:`38464`: :meth:`!tkinter.Misc.nametowidget` now resolves the auto-"
106+
"generated names of cloned menus (a menu used as a menubar or a cascade) back "
107+
"to the original widget."
108+
msgstr ""
109+
110+
msgid ""
111+
":gh:`80937`: Fix a memory leak in :mod:`tkinter` when a Tcl command created "
112+
"with ``createcommand`` was not explicitly removed before the interpreter was "
113+
"deleted. The command no longer keeps the interpreter alive through a "
114+
"reference cycle."
115+
msgstr ""
116+
117+
msgid ""
118+
":gh:`152246`: Fix the pure-Python :mod:`zoneinfo` parser accepting an "
119+
"invalid POSIX TZ transition rule with a non-period separator. Patch by "
120+
"tonghuaroot."
121+
msgstr ""
122+
123+
msgid ""
124+
":gh:`139816`: Fix a hang in :mod:`tkinter` on interactive Python built "
125+
"without :mod:`readline`. An exception raised in a callback no longer causes "
126+
"the event loop to stop and wait for the user to press Enter; pending "
127+
"callbacks now keep running until input is actually available on stdin."
128+
msgstr ""
129+
130+
msgid ""
131+
":gh:`139145`: Fix a busy loop in :mod:`tkinter` on interactive Python. When "
132+
"a Tcl command running its own event loop (such as ``vwait`` or :meth:`!"
133+
"wait_variable`) was active and input arrived on stdin, the event loop kept "
134+
"spinning at 100% CPU. The stdin file handler is now removed as soon as input "
135+
"is available. Based on a patch by Michiel de Hoon."
136+
msgstr ""
137+
138+
msgid ""
139+
":gh:`152212`: Fix the pure-Python :mod:`zoneinfo` parser accepting a POSIX "
140+
"TZ string with a ``std`` abbreviation but no offset. This is invalid per "
141+
"POSIX and now raises :exc:`ValueError`, matching the C accelerator. Patch by "
142+
"tonghuaroot."
143+
msgstr ""
144+
145+
msgid ""
146+
":gh:`152156`: Fix a possible crash in :func:`concurrent.interpreters.create` "
147+
"under limited memory conditions."
148+
msgstr ""
149+
78150
msgid ""
79151
":gh:`151763`: Fix crash in :func:`!_interpqueues.create` whe :exc:"
80152
"`MemoryError` happens on queue creation."
@@ -91,6 +163,11 @@ msgid ""
91163
"second part is zero, matching the pure-Python implementation."
92164
msgstr ""
93165

166+
msgid ""
167+
":gh:`152052`: The :mod:`json` C accelerator now correctly reports an "
168+
"unterminated string for a ``\\uXXXX`` escape at the end of the input."
169+
msgstr ""
170+
94171
msgid ""
95172
":gh:`126219`: Fixed a crash in :class:`tkinter.Tk` when *className* contains "
96173
"a non-BMP character and tkinter is built against Tcl/Tk 8.x. Such a name is "
@@ -223,6 +300,17 @@ msgstr ""
223300
msgid "Core and Builtins"
224301
msgstr "Core i builtiny"
225302

303+
msgid ""
304+
":gh:`152235`: Defer GC tracking of :meth:`set.intersection`, :meth:`set."
305+
"difference`, :meth:`set.symmetric_difference`, :meth:`set.union` and ``set."
306+
"__sub__``. Patch by Donghee Na."
307+
msgstr ""
308+
309+
msgid ""
310+
":gh:`152235`: Defer GC tracking of a :class:`set` or :class:`frozenset` to "
311+
"the end of its construction from iterable. Patch by Donghee Na."
312+
msgstr ""
313+
226314
msgid ""
227315
":gh:`151763`: Fixes possible crash on :class:`types.CodeType` deallocation."
228316
msgstr ""

0 commit comments

Comments
 (0)