Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d3f35e3

Browse filesBrowse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent faa5aed commit d3f35e3
Copy full SHA for d3f35e3

File tree

Expand file treeCollapse file tree

10 files changed

+71
-49
lines changed
Filter options
Expand file treeCollapse file tree

10 files changed

+71
-49
lines changed

‎c-api/dict.po

Copy file name to clipboardExpand all lines: c-api/dict.po
+5-4Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-10 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -81,9 +81,10 @@ msgid ""
8181
msgstr ""
8282

8383
msgid ""
84-
"Remove the entry in dictionary *p* with key *key*. *key* must be hashable; "
85-
"if it isn't, :exc:`TypeError` is raised. If *key* is not in the dictionary, :"
86-
"exc:`KeyError` is raised. Return ``0`` on success or ``-1`` on failure."
84+
"Remove the entry in dictionary *p* with key *key*. *key* must be :term:"
85+
"`hashable`; if it isn't, :exc:`TypeError` is raised. If *key* is not in the "
86+
"dictionary, :exc:`KeyError` is raised. Return ``0`` on success or ``-1`` on "
87+
"failure."
8788
msgstr ""
8889

8990
msgid ""

‎faq/programming.po

Copy file name to clipboardExpand all lines: faq/programming.po
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-03 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1753,9 +1753,9 @@ msgid ""
17531753
msgstr ""
17541754

17551755
msgid ""
1756-
"The *lru_cache* approach works with methods that have hashable arguments. "
1757-
"It creates a reference to the instance unless special efforts are made to "
1758-
"pass in weak references."
1756+
"The *lru_cache* approach works with methods that have :term:`hashable` "
1757+
"arguments. It creates a reference to the instance unless special efforts "
1758+
"are made to pass in weak references."
17591759
msgstr ""
17601760

17611761
msgid ""

‎library/abc.po

Copy file name to clipboardExpand all lines: library/abc.po
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-10 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -40,8 +40,8 @@ msgid ""
4040
"The :mod:`collections` module has some concrete classes that derive from "
4141
"ABCs; these can, of course, be further derived. In addition, the :mod:"
4242
"`collections.abc` submodule has some ABCs that can be used to test whether a "
43-
"class or instance provides a particular interface, for example, if it is "
44-
"hashable or if it is a mapping."
43+
"class or instance provides a particular interface, for example, if it is :"
44+
"term:`hashable` or if it is a mapping."
4545
msgstr ""
4646

4747
msgid ""

‎library/configparser.po

Copy file name to clipboardExpand all lines: library/configparser.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-10 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -139,7 +139,7 @@ msgid ""
139139
"Please note that default values have precedence over fallback values. For "
140140
"instance, in our example the ``'CompressionLevel'`` key was specified only "
141141
"in the ``'DEFAULT'`` section. If we try to get it from the section "
142-
"``'topsecret.server.com'``, we will always get the default, even if we "
142+
"``'topsecret.server.example'``, we will always get the default, even if we "
143143
"specify a fallback:"
144144
msgstr ""
145145

‎library/datetime.po

Copy file name to clipboardExpand all lines: library/datetime.po
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-03 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -177,8 +177,8 @@ msgid ""
177177
msgstr ""
178178

179179
msgid ""
180-
"Objects of these types are hashable, meaning that they can be used as "
181-
"dictionary keys."
180+
"Objects of these types are :term:`hashable`, meaning that they can be used "
181+
"as dictionary keys."
182182
msgstr ""
183183

184184
msgid ""

‎library/functools.po

Copy file name to clipboardExpand all lines: library/functools.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-10 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:22+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -133,7 +133,7 @@ msgstr ""
133133

134134
msgid ""
135135
"Since a dictionary is used to cache results, the positional and keyword "
136-
"arguments to the function must be hashable."
136+
"arguments to the function must be :term:`hashable`."
137137
msgstr ""
138138

139139
msgid ""

‎library/graphlib.po

Copy file name to clipboardExpand all lines: library/graphlib.po
+5-3Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-10 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:22+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -29,7 +29,9 @@ msgstr ""
2929
msgid "**Source code:** :source:`Lib/graphlib.py`"
3030
msgstr ""
3131

32-
msgid "Provides functionality to topologically sort a graph of hashable nodes."
32+
msgid ""
33+
"Provides functionality to topologically sort a graph of :term:`hashable` "
34+
"nodes."
3335
msgstr ""
3436

3537
msgid ""
@@ -86,7 +88,7 @@ msgstr ""
8688

8789
msgid ""
8890
"Add a new node and its predecessors to the graph. Both the *node* and all "
89-
"elements in *predecessors* must be hashable."
91+
"elements in *predecessors* must be :term:`hashable`."
9092
msgstr ""
9193

9294
msgid ""

‎library/sqlite3.po

Copy file name to clipboardExpand all lines: library/sqlite3.po
+31-13Lines changed: 31 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-03 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:22+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -809,16 +809,20 @@ msgid "A :class:`Cursor` instance has the following attributes and methods."
809809
msgstr ""
810810

811811
msgid ""
812-
"Execute SQL statement *sql*. Bind values to the statement using :ref:"
813-
"`placeholders <sqlite3-placeholders>` that map to the :term:`sequence` or :"
814-
"class:`dict` *parameters*."
812+
"Execute SQL a single SQL statement, optionally binding Python values using :"
813+
"ref:`placeholders <sqlite3-placeholders>`."
814+
msgstr ""
815+
816+
msgid "A single SQL statement."
815817
msgstr ""
816818

817819
msgid ""
818-
":meth:`execute` will only execute a single SQL statement. If you try to "
819-
"execute more than one statement with it, it will raise a :exc:`Warning`. "
820-
"Use :meth:`executescript` if you want to execute multiple SQL statements "
821-
"with one call."
820+
"Python values to bind to placeholders in *sql*. A :class:`!dict` if named "
821+
"placeholders are used. A :term:`!sequence` if unnamed placeholders are used. "
822+
"See :ref:`sqlite3-placeholders`."
823+
msgstr ""
824+
825+
msgid "If *sql* contains more than one SQL statement."
822826
msgstr ""
823827

824828
msgid ""
@@ -828,12 +832,26 @@ msgid ""
828832
"*sql*."
829833
msgstr ""
830834

835+
msgid "Use :meth:`executescript` to execute multiple SQL statements."
836+
msgstr ""
837+
831838
msgid ""
832-
"Execute :ref:`parameterized <sqlite3-placeholders>` SQL statement *sql* "
833-
"against all parameter sequences or mappings found in the sequence "
834-
"*parameters*. It is also possible to use an :term:`iterator` yielding "
835-
"parameters instead of a sequence. Uses the same implicit transaction "
836-
"handling as :meth:`~Cursor.execute`."
839+
"For every item in *parameters*, repeatedly execute the :ref:`parameterized "
840+
"<sqlite3-placeholders>` SQL statement *sql*."
841+
msgstr ""
842+
843+
msgid "Uses the same implicit transaction handling as :meth:`~Cursor.execute`."
844+
msgstr ""
845+
846+
msgid "A single SQL :abbr:`DML (Data Manipulation Language)` statement."
847+
msgstr ""
848+
849+
msgid ""
850+
"An :term:`!iterable` of parameters to bind with the placeholders in *sql*. "
851+
"See :ref:`sqlite3-placeholders`."
852+
msgstr ""
853+
854+
msgid "If *sql* is not a DML statment."
837855
msgstr ""
838856

839857
msgid ""

‎library/stdtypes.po

Copy file name to clipboardExpand all lines: library/stdtypes.po
+12-11Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-01-27 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:22+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -3311,14 +3311,14 @@ msgid ""
33113311
msgstr ""
33123312

33133313
msgid ""
3314-
"One-dimensional memoryviews of hashable (read-only) types with formats 'B', "
3315-
"'b' or 'c' are also hashable. The hash is defined as ``hash(m) == hash(m."
3316-
"tobytes())``::"
3314+
"One-dimensional memoryviews of :term:`hashable` (read-only) types with "
3315+
"formats 'B', 'b' or 'c' are also hashable. The hash is defined as ``hash(m) "
3316+
"== hash(m.tobytes())``::"
33173317
msgstr ""
33183318

33193319
msgid ""
33203320
"One-dimensional memoryviews can now be sliced. One-dimensional memoryviews "
3321-
"with formats 'B', 'b' or 'c' are now hashable."
3321+
"with formats 'B', 'b' or 'c' are now :term:`hashable`."
33223322
msgstr ""
33233323

33243324
msgid ""
@@ -4026,12 +4026,13 @@ msgid ""
40264026
msgstr ""
40274027

40284028
msgid ""
4029-
"Keys views are set-like since their entries are unique and hashable. If all "
4030-
"values are hashable, so that ``(key, value)`` pairs are unique and hashable, "
4031-
"then the items view is also set-like. (Values views are not treated as set-"
4032-
"like since the entries are generally not unique.) For set-like views, all "
4033-
"of the operations defined for the abstract base class :class:`collections."
4034-
"abc.Set` are available (for example, ``==``, ``<``, or ``^``)."
4029+
"Keys views are set-like since their entries are unique and :term:"
4030+
"`hashable`. If all values are hashable, so that ``(key, value)`` pairs are "
4031+
"unique and hashable, then the items view is also set-like. (Values views "
4032+
"are not treated as set-like since the entries are generally not unique.) "
4033+
"For set-like views, all of the operations defined for the abstract base "
4034+
"class :class:`collections.abc.Set` are available (for example, ``==``, "
4035+
"``<``, or ``^``)."
40354036
msgstr ""
40364037

40374038
msgid "An example of dictionary view usage::"

‎reference/datamodel.po

Copy file name to clipboardExpand all lines: reference/datamodel.po
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-02-10 14:21+0000\n"
14+
"POT-Creation-Date: 2023-02-17 14:22+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:23+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1502,9 +1502,9 @@ msgid ""
15021502
"`__hash__`, its instances will not be usable as items in hashable "
15031503
"collections. If a class defines mutable objects and implements an :meth:"
15041504
"`__eq__` method, it should not implement :meth:`__hash__`, since the "
1505-
"implementation of hashable collections requires that a key's hash value is "
1506-
"immutable (if the object's hash value changes, it will be in the wrong hash "
1507-
"bucket)."
1505+
"implementation of :term:`hashable` collections requires that a key's hash "
1506+
"value is immutable (if the object's hash value changes, it will be in the "
1507+
"wrong hash bucket)."
15081508
msgstr ""
15091509

15101510
msgid ""

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.