Skip to content

Commit 83a50fb

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent f30aef4 commit 83a50fb

6 files changed

Lines changed: 23 additions & 13 deletions

File tree

faq/general.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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-23 14:49+0000\n"
14+
"POT-Creation-Date: 2023-07-07 14:45+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:11+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
14+
"POT-Creation-Date: 2023-07-14 14:44+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:13+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\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/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.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
15+
"POT-Creation-Date: 2023-07-14 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:15+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 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/sqlite3.po

Lines changed: 11 additions & 3 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: 2023-06-30 14:41+0000\n"
15+
"POT-Creation-Date: 2023-07-14 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:19+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -228,8 +228,9 @@ msgid "Parameters"
228228
msgstr ""
229229

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

235236
msgid ""
@@ -1680,6 +1681,13 @@ msgstr ""
16801681
msgid "Queries now return :class:`!Row` objects:"
16811682
msgstr ""
16821683

1684+
msgid ""
1685+
"The ``FROM`` clause can be omitted in the ``SELECT`` statement, as in the "
1686+
"above example. In such cases, SQLite returns a single row with columns "
1687+
"defined by expressions, e.g. literals, with the given aliases ``expr AS "
1688+
"alias``."
1689+
msgstr ""
1690+
16831691
msgid ""
16841692
"You can create a custom :attr:`~Cursor.row_factory` that returns each row as "
16851693
"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.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-23 14:49+0000\n"
15+
"POT-Creation-Date: 2023-07-14 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:19+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -3458,7 +3458,8 @@ msgstr ""
34583458
msgid ""
34593459
"The destination format is restricted to a single element native format in :"
34603460
"mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or "
3461-
"'c'). The byte length of the result must be the same as the original length."
3461+
"'c'). The byte length of the result must be the same as the original length. "
3462+
"Note that all byte lengths may depend on the operating system."
34623463
msgstr ""
34633464

34643465
msgid "Cast 1D/long to 1D/unsigned bytes::"
@@ -4539,8 +4540,8 @@ msgid ""
45394540
msgstr ""
45404541

45414542
msgid ""
4542-
"However, union objects containing :ref:`parameterized generics <types-"
4543-
"genericalias>` cannot be used::"
4543+
"However, :ref:`parameterized generics <types-genericalias>` in union objects "
4544+
"cannot be checked::"
45444545
msgstr ""
45454546

45464547
msgid ""

tutorial/controlflow.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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-23 14:49+0000\n"
14+
"POT-Creation-Date: 2023-07-14 14:44+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:22+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)