Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 15e0a25

Browse files
GitHub Action's update-translation jobm-aciek
authored andcommitted
Update translation from Transifex
1 parent ffb476d commit 15e0a25

16 files changed

Lines changed: 111 additions & 27 deletions

faq/general.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-23 14:14+0000\n"
15+
"POT-Creation-Date: 2023-07-07 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1717
"Last-Translator: Krzysztof Abramowicz, 2022\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/crypt.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-14 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:03+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -32,7 +32,8 @@ msgstr ""
3232
msgid ""
3333
"The :mod:`crypt` module is deprecated (see :pep:`PEP 594 <594#crypt>` for "
3434
"details and alternatives). The :mod:`hashlib` module is a potential "
35-
"replacement for certain use cases."
35+
"replacement for certain use cases. The `passlib <https://pypi.org/project/"
36+
"passlib/>`_ package can replace all use cases of this module."
3637
msgstr ""
3738

3839
msgid ""

library/email.utils.po

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-14 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:05+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -84,6 +84,12 @@ msgid ""
8484
"unless the parse fails, in which case a 2-tuple of ``('', '')`` is returned."
8585
msgstr ""
8686

87+
msgid ""
88+
"For security reasons, addresses that were ambiguous and could parse into "
89+
"multiple different addresses now cause ``('', '')`` to be returned instead "
90+
"of only one of the *potential* addresses."
91+
msgstr ""
92+
8793
msgid ""
8894
"The inverse of :meth:`parseaddr`, this takes a 2-tuple of the form "
8995
"``(realname, email_address)`` and returns the string value suitable for a :"
@@ -105,7 +111,32 @@ msgid ""
105111
"This method returns a list of 2-tuples of the form returned by "
106112
"``parseaddr()``. *fieldvalues* is a sequence of header field values as might "
107113
"be returned by :meth:`Message.get_all <email.message.Message.get_all>`. "
108-
"Here's a simple example that gets all the recipients of a message::"
114+
"Here's a simple example that gets all the recipients of a message:"
115+
msgstr ""
116+
117+
msgid "from email.utils import getaddresses"
118+
msgstr ""
119+
120+
msgid ""
121+
"tos = msg.get_all('to', []) ccs = msg.get_all('cc', []) resent_tos = msg."
122+
"get_all('resent-to', []) resent_ccs = msg.get_all('resent-cc', []) "
123+
"all_recipients = getaddresses(tos + ccs + resent_tos + resent_ccs)"
124+
msgstr ""
125+
126+
msgid ""
127+
"When parsing fails for a single fieldvalue, a 2-tuple of ``('', '')`` is "
128+
"returned in its place. Other errors in parsing the list of addresses such "
129+
"as a fieldvalue seemingly parsing into multiple addresses may result in a "
130+
"list containing a single empty 2-tuple ``[('', '')]`` being returned rather "
131+
"than returning potentially invalid output."
132+
msgstr ""
133+
134+
msgid "Example malformed input parsing:"
135+
msgstr ""
136+
137+
msgid ""
138+
"The 2-tuple of ``('', '')`` in the returned values when parsing fails were "
139+
"added as to address a security issue."
109140
msgstr ""
110141

111142
msgid ""

library/functions.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-07 14:14+0000\n"
15+
"POT-Creation-Date: 2023-07-14 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
1717
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1098,7 +1098,7 @@ msgstr ""
10981098
msgid ""
10991099
"For objects with custom :meth:`__hash__` methods, note that :func:`hash` "
11001100
"truncates the return value based on the bit width of the host machine. See :"
1101-
"meth:`__hash__` for details."
1101+
"meth:`__hash__ <object.__hash__>` for details."
11021102
msgstr ""
11031103

11041104
msgid ""

library/http.client.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-16 14:12+0000\n"
14+
"POT-Creation-Date: 2023-07-14 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:07+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -368,8 +368,7 @@ msgid ""
368368
"proxy server to the CONNECT request."
369369
msgstr ""
370370

371-
msgid ""
372-
"If the CONNECT request was not sent, the method returns an empty dictionary."
371+
msgid "If the CONNECT request was not sent, the method returns ``None``."
373372
msgstr ""
374373

375374
msgid ""

library/os.path.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-16 14:12+0000\n"
15+
"POT-Creation-Date: 2023-07-07 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:10+0000\n"
1717
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/re.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-06-23 14:14+0000\n"
16+
"POT-Creation-Date: 2023-07-07 14:14+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:12+0000\n"
1818
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/sqlite3.po

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
16+
"POT-Creation-Date: 2023-07-14 14:14+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
1818
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -229,8 +229,9 @@ msgid "Parameters"
229229
msgstr ""
230230

231231
msgid ""
232-
"The path to the database file to be opened. Pass ``\":memory:\"`` to open a "
233-
"connection to a database that is in RAM instead of on disk."
232+
"The path to the database file to be opened. You can pass ``\":memory:\"`` to "
233+
"create an `SQLite database existing only in memory <https://sqlite.org/"
234+
"inmemorydb.html>`_, and open a connection to it."
234235
msgstr ""
235236

236237
msgid ""
@@ -1844,6 +1845,13 @@ msgstr ""
18441845
msgid "Queries now return :class:`!Row` objects:"
18451846
msgstr ""
18461847

1848+
msgid ""
1849+
"The ``FROM`` clause can be omitted in the ``SELECT`` statement, as in the "
1850+
"above example. In such cases, SQLite returns a single row with columns "
1851+
"defined by expressions, e.g. literals, with the given aliases ``expr AS "
1852+
"alias``."
1853+
msgstr ""
1854+
18471855
msgid ""
18481856
"You can create a custom :attr:`~Cursor.row_factory` that returns each row as "
18491857
"a :class:`dict`, with column names mapped to values:"

library/stdtypes.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-07 14:14+0000\n"
15+
"POT-Creation-Date: 2023-07-14 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
1717
"Last-Translator: Tadeusz Karpiński <[email protected]>, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -3508,7 +3508,8 @@ msgstr ""
35083508
msgid ""
35093509
"The destination format is restricted to a single element native format in :"
35103510
"mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or "
3511-
"'c'). The byte length of the result must be the same as the original length."
3511+
"'c'). The byte length of the result must be the same as the original length. "
3512+
"Note that all byte lengths may depend on the operating system."
35123513
msgstr ""
35133514

35143515
msgid "Cast 1D/long to 1D/unsigned bytes::"
@@ -4591,8 +4592,8 @@ msgid ""
45914592
msgstr ""
45924593

45934594
msgid ""
4594-
"However, union objects containing :ref:`parameterized generics <types-"
4595-
"genericalias>` cannot be used::"
4595+
"However, :ref:`parameterized generics <types-genericalias>` in union objects "
4596+
"cannot be checked::"
45964597
msgstr ""
45974598

45984599
msgid ""

reference/compound_stmts.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.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-16 14:12+0000\n"
14+
"POT-Creation-Date: 2023-07-07 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)