1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
6
6
# Translators:
7
- # Transifex Bot < >, 2023
7
+ # Rafael Fontenelle <rffontenelle@gmail.com >, 2024
8
8
#
9
9
#, fuzzy
10
10
msgid ""
11
11
msgstr ""
12
- "Project-Id-Version : Python 3.11 \n "
12
+ "Project-Id-Version : Python 3.12 \n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2023-05-19 14:13 +0000\n "
15
- "PO-Revision-Date : 2021-06-28 00:57 +0000\n "
16
- "Last-Translator : Transifex Bot < >, 2023 \n "
14
+ "POT-Creation-Date : 2024-09-06 15:04 +0000\n "
15
+ "PO-Revision-Date : 2024-05-11 00:33 +0000\n "
16
+ "Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com >, 2024 \n "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
18
18
"MIME-Version : 1.0\n "
19
19
"Content-Type : text/plain; charset=UTF-8\n "
@@ -43,40 +43,42 @@ msgid ""
43
43
"An object frequently used to represent the absence of a value, as when "
44
44
"default arguments are not passed to a function. Assignments to ``None`` are "
45
45
"illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of "
46
- "the :data:`NoneType` type."
46
+ "the :data:`~types. NoneType` type."
47
47
msgstr ""
48
48
49
49
msgid ""
50
50
"A special value which should be returned by the binary special methods (e."
51
- "g. :meth:`__eq__`, :meth:`__lt__`, :meth:`__add__`, :meth:`__rsub__`, etc.) "
52
- "to indicate that the operation is not implemented with respect to the other "
53
- "type; may be returned by the in-place binary special methods (e.g. :meth:"
54
- "`__imul__`, :meth:`__iand__`, etc.) for the same purpose. It should not be "
55
- "evaluated in a boolean context. ``NotImplemented`` is the sole instance of "
56
- "the :data:`types.NotImplementedType` type."
51
+ "g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :"
52
+ "meth:`~object.__rsub__`, etc.) to indicate that the operation is not "
53
+ "implemented with respect to the other type; may be returned by the in-place "
54
+ "binary special methods (e.g. :meth:`~object.__imul__`, :meth:`~object."
55
+ "__iand__`, etc.) for the same purpose. It should not be evaluated in a "
56
+ "boolean context. :data:`!NotImplemented` is the sole instance of the :data:"
57
+ "`types.NotImplementedType` type."
57
58
msgstr ""
58
59
59
60
msgid ""
60
- "When a binary (or in-place) method returns `` NotImplemented` ` the "
61
+ "When a binary (or in-place) method returns :data:`! NotImplemented` the "
61
62
"interpreter will try the reflected operation on the other type (or some "
62
- "other fallback, depending on the operator). If all attempts return "
63
- "``NotImplemented``, the interpreter will raise an appropriate exception. "
64
- "Incorrectly returning ``NotImplemented`` will result in a misleading error "
65
- "message or the ``NotImplemented`` value being returned to Python code."
63
+ "other fallback, depending on the operator). If all attempts return :data:`!"
64
+ "NotImplemented`, the interpreter will raise an appropriate exception. "
65
+ "Incorrectly returning :data:`!NotImplemented` will result in a misleading "
66
+ "error message or the :data:`!NotImplemented` value being returned to Python "
67
+ "code."
66
68
msgstr ""
67
69
68
70
msgid "See :ref:`implementing-the-arithmetic-operations` for examples."
69
71
msgstr ""
70
72
71
73
msgid ""
72
- "``NotImplementedError`` and `` NotImplemented`` are not interchangeable, even "
73
- "though they have similar names and purposes. See :exc:`NotImplementedError` "
74
- "for details on when to use it."
74
+ "``NotImplementedError`` and :data:`! NotImplemented` are not interchangeable, "
75
+ "even though they have similar names and purposes. See :exc:"
76
+ "`NotImplementedError` for details on when to use it."
75
77
msgstr ""
76
78
77
79
msgid ""
78
- "Evaluating `` NotImplemented`` in a boolean context is deprecated. While it "
79
- "currently evaluates as true, it will emit a :exc:`DeprecationWarning`. It "
80
+ "Evaluating :data:`! NotImplemented` in a boolean context is deprecated. While "
81
+ "it currently evaluates as true, it will emit a :exc:`DeprecationWarning`. It "
80
82
"will raise a :exc:`TypeError` in a future version of Python."
81
83
msgstr ""
82
84
@@ -114,6 +116,12 @@ msgid ""
114
116
"exit code."
115
117
msgstr ""
116
118
119
+ msgid ""
120
+ "Object that when printed, prints the message \" Type help() for interactive "
121
+ "help, or help(object) for help about object.\" , and when called, acts as "
122
+ "described :func:`elsewhere <help>`."
123
+ msgstr ""
124
+
117
125
msgid ""
118
126
"Objects that when printed or called, print the text of copyright or credits, "
119
127
"respectively."
@@ -126,7 +134,7 @@ msgid ""
126
134
msgstr ""
127
135
128
136
msgid "..."
129
- msgstr ""
137
+ msgstr "... "
130
138
131
139
msgid "ellipsis literal"
132
- msgstr ""
140
+ msgstr "Literalny zapis wielokropka "
0 commit comments