@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.9\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2021-04-08 05:59 +0000\n "
14+ "POT-Creation-Date : 2021-04-20 06:06 +0000\n "
1515"PO-Revision-Date : 2017-02-16 23:38+0000\n "
1616"Last-Translator : m_aciek <maciej.olko@gmail.com>, 2020\n "
1717"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -1596,7 +1596,7 @@ msgstr ""
15961596
15971597msgid ""
15981598"The following table summarizes the operator precedence in Python, from "
1599- "lowest precedence (least binding) to highest precedence (most binding). "
1599+ "highest precedence (most binding) to lowest precedence (least binding). "
16001600"Operators in the same box have the same precedence. Unless the syntax is "
16011601"explicitly given, operators are binary. Operators in the same box group "
16021602"left to right (except for exponentiation, which groups from right to left)."
@@ -1614,118 +1614,118 @@ msgstr ""
16141614msgid "Description"
16151615msgstr "Opis"
16161616
1617- msgid "``:=`` "
1617+ msgid "``(expressions...)``, "
16181618msgstr ""
16191619
1620- msgid "Assignment expression "
1620+ msgid "``[expressions...]``, ``{key: value...}``, ``{expressions...}`` "
16211621msgstr ""
16221622
1623- msgid ":keyword:`lambda`"
1623+ msgid ""
1624+ "Binding or parenthesized expression, list display, dictionary display, set "
1625+ "display"
16241626msgstr ""
16251627
1626- msgid "Lambda expression "
1628+ msgid "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute`` "
16271629msgstr ""
16281630
1629- msgid ":keyword:`if <if_expr>` -- :keyword:`!else` "
1631+ msgid "Subscription, slicing, call, attribute reference "
16301632msgstr ""
16311633
1632- msgid "Conditional expression "
1634+ msgid ":keyword:`await` ``x`` "
16331635msgstr ""
16341636
1635- msgid ":keyword:`or `"
1637+ msgid "``**` `"
16361638msgstr ""
16371639
1638- msgid "Boolean OR "
1640+ msgid "Exponentiation [#]_ "
16391641msgstr ""
16401642
1641- msgid ":keyword:`and `"
1643+ msgid "``+x``, ``-x``, ``~x` `"
16421644msgstr ""
16431645
1644- msgid "Boolean AND "
1646+ msgid "Positive, negative, bitwise NOT "
16451647msgstr ""
16461648
1647- msgid ":keyword:`not` ``x ``"
1649+ msgid "``*``, ``@``, ``/``, ``//``, ``% ``"
16481650msgstr ""
16491651
1650- msgid "Boolean NOT"
1652+ msgid ""
1653+ "Multiplication, matrix multiplication, division, floor division, remainder "
1654+ "[#]_"
16511655msgstr ""
16521656
1653- msgid ""
1654- ":keyword:`in`, :keyword:`not in`, :keyword:`is`, :keyword:`is not`, ``<``, "
1655- "``<=``, ``>``, ``>=``, ``!=``, ``==``"
1657+ msgid "``+``, ``-``"
16561658msgstr ""
16571659
1658- msgid "Comparisons, including membership tests and identity tests "
1660+ msgid "Addition and subtraction "
16591661msgstr ""
16601662
1661- msgid "``| ``"
1663+ msgid "``<<``, ``>> ``"
16621664msgstr ""
16631665
1664- msgid "Bitwise OR "
1666+ msgid "Shifts "
16651667msgstr ""
16661668
1667- msgid "``^ ``"
1669+ msgid "``& ``"
16681670msgstr ""
16691671
1670- msgid "Bitwise XOR "
1672+ msgid "Bitwise AND "
16711673msgstr ""
16721674
1673- msgid "``& ``"
1675+ msgid "``^ ``"
16741676msgstr ""
16751677
1676- msgid "Bitwise AND "
1678+ msgid "Bitwise XOR "
16771679msgstr ""
16781680
1679- msgid "``<<``, ``>> ``"
1681+ msgid "``| ``"
16801682msgstr ""
16811683
1682- msgid "Shifts "
1684+ msgid "Bitwise OR "
16831685msgstr ""
16841686
1685- msgid "``+``, ``-``"
1687+ msgid ""
1688+ ":keyword:`in`, :keyword:`not in`, :keyword:`is`, :keyword:`is not`, ``<``, "
1689+ "``<=``, ``>``, ``>=``, ``!=``, ``==``"
16861690msgstr ""
16871691
1688- msgid "Addition and subtraction "
1692+ msgid "Comparisons, including membership tests and identity tests "
16891693msgstr ""
16901694
1691- msgid "``*``, ``@``, ``/``, ``//``, ``% ``"
1695+ msgid ":keyword:`not` ``x ``"
16921696msgstr ""
16931697
1694- msgid ""
1695- "Multiplication, matrix multiplication, division, floor division, remainder "
1696- "[#]_"
1698+ msgid "Boolean NOT"
16971699msgstr ""
16981700
1699- msgid "``+x``, ``-x``, ``~x` `"
1701+ msgid ":keyword:`and `"
17001702msgstr ""
17011703
1702- msgid "Positive, negative, bitwise NOT "
1704+ msgid "Boolean AND "
17031705msgstr ""
17041706
1705- msgid "``**` `"
1707+ msgid ":keyword:`or `"
17061708msgstr ""
17071709
1708- msgid "Exponentiation [#]_ "
1710+ msgid "Boolean OR "
17091711msgstr ""
17101712
1711- msgid ":keyword:`await` ``x` `"
1713+ msgid ":keyword:`if <if_expr>` -- :keyword:`!else `"
17121714msgstr ""
17131715
1714- msgid "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute`` "
1716+ msgid "Conditional expression "
17151717msgstr ""
17161718
1717- msgid "Subscription, slicing, call, attribute reference "
1719+ msgid ":keyword:`lambda` "
17181720msgstr ""
17191721
1720- msgid "``(expressions...)``, "
1722+ msgid "Lambda expression "
17211723msgstr ""
17221724
1723- msgid "``[expressions...]``, ``{key: value...}``, ``{expressions...} ``"
1725+ msgid "``:= ``"
17241726msgstr ""
17251727
1726- msgid ""
1727- "Binding or parenthesized expression, list display, dictionary display, set "
1728- "display"
1728+ msgid "Assignment expression"
17291729msgstr ""
17301730
17311731msgid "Footnotes"
0 commit comments