11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2023 , Python Software Foundation
2+ # Copyright (C) 2001-2024 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
7- # Transifex Bot <>, 2023
7+ # Stanislaw Ulbrych, 2024
88#
99#, fuzzy
1010msgid ""
1111msgstr ""
12- "Project-Id-Version : Python 3.11 \n "
12+ "Project-Id-Version : Python 3.13 \n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2023-05-19 14:13 +0000\n "
14+ "POT-Creation-Date : 2024-11-29 14:18 +0000\n "
1515"PO-Revision-Date : 2021-06-28 00:48+0000\n "
16- "Last-Translator : Transifex Bot <>, 2023 \n "
16+ "Last-Translator : Stanislaw Ulbrych, 2024 \n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
1818"MIME-Version : 1.0\n "
1919"Content-Type : text/plain; charset=UTF-8\n "
@@ -30,12 +30,52 @@ msgid ""
3030"Various date and time objects are supplied by the :mod:`datetime` module. "
3131"Before using any of these functions, the header file :file:`datetime.h` must "
3232"be included in your source (note that this is not included by :file:`Python."
33- "h`), and the macro :c:macro:`PyDateTime_IMPORT` must be invoked, usually as "
33+ "h`), and the macro :c:macro:`! PyDateTime_IMPORT` must be invoked, usually as "
3434"part of the module initialisation function. The macro puts a pointer to a C "
35- "structure into a static variable, :c:data:`PyDateTimeAPI`, that is used by "
35+ "structure into a static variable, :c:data:`! PyDateTimeAPI`, that is used by "
3636"the following macros."
3737msgstr ""
3838
39+ msgid "This subtype of :c:type:`PyObject` represents a Python date object."
40+ msgstr ""
41+
42+ msgid "This subtype of :c:type:`PyObject` represents a Python datetime object."
43+ msgstr ""
44+
45+ msgid "This subtype of :c:type:`PyObject` represents a Python time object."
46+ msgstr ""
47+
48+ msgid ""
49+ "This subtype of :c:type:`PyObject` represents the difference between two "
50+ "datetime values."
51+ msgstr ""
52+
53+ msgid ""
54+ "This instance of :c:type:`PyTypeObject` represents the Python date type; it "
55+ "is the same object as :class:`datetime.date` in the Python layer."
56+ msgstr ""
57+
58+ msgid ""
59+ "This instance of :c:type:`PyTypeObject` represents the Python datetime type; "
60+ "it is the same object as :class:`datetime.datetime` in the Python layer."
61+ msgstr ""
62+
63+ msgid ""
64+ "This instance of :c:type:`PyTypeObject` represents the Python time type; it "
65+ "is the same object as :class:`datetime.time` in the Python layer."
66+ msgstr ""
67+
68+ msgid ""
69+ "This instance of :c:type:`PyTypeObject` represents Python type for the "
70+ "difference between two datetime values; it is the same object as :class:"
71+ "`datetime.timedelta` in the Python layer."
72+ msgstr ""
73+
74+ msgid ""
75+ "This instance of :c:type:`PyTypeObject` represents the Python time zone info "
76+ "type; it is the same object as :class:`datetime.tzinfo` in the Python layer."
77+ msgstr ""
78+
3979msgid "Macro for access to the UTC singleton:"
4080msgstr ""
4181
@@ -45,12 +85,12 @@ msgid ""
4585msgstr ""
4686
4787msgid "Type-check macros:"
48- msgstr ""
88+ msgstr "Sprawdzanie typu makr: "
4989
5090msgid ""
5191"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype "
52- "of :c:data:`PyDateTime_DateType`. *ob* must not be ``NULL``. This function "
53- "always succeeds."
92+ "of :c:data:`! PyDateTime_DateType`. *ob* must not be ``NULL``. This "
93+ "function always succeeds."
5494msgstr ""
5595
5696msgid ""
@@ -60,7 +100,7 @@ msgstr ""
60100
61101msgid ""
62102"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a "
63- "subtype of :c:data:`PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
103+ "subtype of :c:data:`! PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
64104"This function always succeeds."
65105msgstr ""
66106
@@ -71,8 +111,8 @@ msgstr ""
71111
72112msgid ""
73113"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype "
74- "of :c:data:`PyDateTime_TimeType`. *ob* must not be ``NULL``. This function "
75- "always succeeds."
114+ "of :c:data:`! PyDateTime_TimeType`. *ob* must not be ``NULL``. This "
115+ "function always succeeds."
76116msgstr ""
77117
78118msgid ""
@@ -82,7 +122,7 @@ msgstr ""
82122
83123msgid ""
84124"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype "
85- "of :c:data:`PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
125+ "of :c:data:`! PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
86126"function always succeeds."
87127msgstr ""
88128
@@ -93,7 +133,7 @@ msgstr ""
93133
94134msgid ""
95135"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype "
96- "of :c:data:`PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This "
136+ "of :c:data:`! PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This "
97137"function always succeeds."
98138msgstr ""
99139
@@ -149,7 +189,7 @@ msgstr ""
149189
150190msgid ""
151191"Macros to extract fields from date objects. The argument must be an "
152- "instance of :c:data :`PyDateTime_Date`, including subclasses (such as :c:data :"
192+ "instance of :c:type :`PyDateTime_Date`, including subclasses (such as :c:type :"
153193"`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is "
154194"not checked:"
155195msgstr ""
@@ -165,7 +205,7 @@ msgstr ""
165205
166206msgid ""
167207"Macros to extract fields from datetime objects. The argument must be an "
168- "instance of :c:data :`PyDateTime_DateTime`, including subclasses. The "
208+ "instance of :c:type :`PyDateTime_DateTime`, including subclasses. The "
169209"argument must not be ``NULL``, and the type is not checked:"
170210msgstr ""
171211
@@ -189,13 +229,13 @@ msgstr ""
189229
190230msgid ""
191231"Macros to extract fields from time objects. The argument must be an "
192- "instance of :c:data :`PyDateTime_Time`, including subclasses. The argument "
232+ "instance of :c:type :`PyDateTime_Time`, including subclasses. The argument "
193233"must not be ``NULL``, and the type is not checked:"
194234msgstr ""
195235
196236msgid ""
197237"Macros to extract fields from time delta objects. The argument must be an "
198- "instance of :c:data :`PyDateTime_Delta`, including subclasses. The argument "
238+ "instance of :c:type :`PyDateTime_Delta`, including subclasses. The argument "
199239"must not be ``NULL``, and the type is not checked:"
200240msgstr ""
201241
@@ -213,10 +253,10 @@ msgstr ""
213253
214254msgid ""
215255"Create and return a new :class:`datetime.datetime` object given an argument "
216- "tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp() `."
256+ "tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp`."
217257msgstr ""
218258
219259msgid ""
220260"Create and return a new :class:`datetime.date` object given an argument "
221- "tuple suitable for passing to :meth:`datetime.date.fromtimestamp() `."
261+ "tuple suitable for passing to :meth:`datetime.date.fromtimestamp`."
222262msgstr ""
0 commit comments