Skip to content

Commit 9f33e6d

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 5f926cd commit 9f33e6d

4 files changed

Lines changed: 22 additions & 16 deletions

File tree

howto/annotations.po

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2022-12-18 16:14+0000\n"
15+
"POT-Creation-Date: 2022-12-25 04:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1717
"Last-Translator: Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -87,6 +87,13 @@ msgid ""
8787
"three arguments, for example ``getattr(o, '__annotations__', None)``."
8888
msgstr ""
8989

90+
msgid ""
91+
"Before Python 3.10, accessing ``__annotations__`` on a class that defines no "
92+
"annotations but that has a parent class with annotations would return the "
93+
"parent's ``__annotations__``. In Python 3.10 and newer, the child class's "
94+
"annotations will be an empty dict instead."
95+
msgstr ""
96+
9097
msgid "Accessing The Annotations Dict Of An Object In Python 3.9 And Older"
9198
msgstr ""
9299

library/functions.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2022-12-15 16:17+0000\n"
15+
"POT-Creation-Date: 2022-12-25 04:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -966,15 +966,15 @@ msgid ""
966966
"sign may be ``'+'`` or ``'-'``; a ``'+'`` sign has no effect on the value "
967967
"produced. The argument may also be a string representing a NaN (not-a-"
968968
"number), or positive or negative infinity. More precisely, the input must "
969-
"conform to the following grammar after leading and trailing whitespace "
970-
"characters are removed:"
969+
"conform to the ``floatvalue`` production rule in the following grammar, "
970+
"after leading and trailing whitespace characters are removed:"
971971
msgstr ""
972972

973973
msgid ""
974-
"Here ``floatnumber`` is the form of a Python floating-point literal, "
975-
"described in :ref:`floating`. Case is not significant, so, for example, "
976-
"\"inf\", \"Inf\", \"INFINITY\", and \"iNfINity\" are all acceptable "
977-
"spellings for positive infinity."
974+
"Here ``digit`` is a Unicode decimal digit (character in the Unicode general "
975+
"category ``Nd``). Case is not significant, so, for example, \"inf\", "
976+
"\"Inf\", \"INFINITY\", and \"iNfINity\" are all acceptable spellings for "
977+
"positive infinity."
978978
msgstr ""
979979

980980
msgid ""

library/functools.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2022-12-15 16:17+0000\n"
14+
"POT-Creation-Date: 2022-12-25 04:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -55,6 +55,11 @@ msgstr ""
5555
msgid "For example::"
5656
msgstr "Dla przykładu::"
5757

58+
msgid ""
59+
"The cache is threadsafe so the wrapped function can be used in multiple "
60+
"threads."
61+
msgstr ""
62+
5863
msgid ""
5964
"Transform a method of a class into a property whose value is computed once "
6065
"and then cached as a normal attribute for the life of the instance. Similar "

library/subprocess.po

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2022-12-19 04:15+0000\n"
15+
"POT-Creation-Date: 2022-12-25 04:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:14+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1482,19 +1482,13 @@ msgid ""
14821482
"`subprocess._USE_VFORK` attribute to a false value."
14831483
msgstr ""
14841484

1485-
msgid "subprocess._USE_VFORK = False # See CPython issue gh-NNNNNN."
1486-
msgstr ""
1487-
14881485
msgid ""
14891486
"Setting this has no impact on use of ``posix_spawn()`` which could use "
14901487
"``vfork()`` internally within its libc implementation. There is a similar :"
14911488
"attr:`subprocess._USE_POSIX_SPAWN` attribute if you need to prevent use of "
14921489
"that."
14931490
msgstr ""
14941491

1495-
msgid "subprocess._USE_POSIX_SPAWN = False # See CPython issue gh-NNNNNN."
1496-
msgstr ""
1497-
14981492
msgid ""
14991493
"It is safe to set these to false on any Python version. They will have no "
15001494
"effect on older versions when unsupported. Do not assume the attributes are "

0 commit comments

Comments
 (0)