Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1dfbb65

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 2fec8c2 commit 1dfbb65

File tree

6 files changed

+403
-8
lines changed

6 files changed

+403
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1515
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
18-
![75.80% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-75.80%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.31%25-0.svg)
18+
![78.77% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-78.77%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.40%25-0.svg)
2020
![5 tłumaczy](https://img.shields.io/badge/tłumaczy-5-0.svg)
2121
<!-- [[[end]]] -->
2222

c-api/contextvars.po

Lines 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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-13 15:30+0000\n"
14+
"POT-Creation-Date: 2024-12-20 15:27+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -60,7 +60,7 @@ msgid "The type object representing the *context variable token* type."
6060
msgstr ""
6161

6262
msgid "Type-check macros:"
63-
msgstr ""
63+
msgstr "Sprawdzanie typu makr:"
6464

6565
msgid ""
6666
"Return true if *o* is of type :c:data:`PyContext_Type`. *o* must not be "

c-api/datetime.po

Lines changed: 262 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,262 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2024, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <[email protected]>, 2024
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.11\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2024-12-20 15:27+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16+
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "DateTime Objects"
27+
msgstr ""
28+
29+
msgid ""
30+
"Various date and time objects are supplied by the :mod:`datetime` module. "
31+
"Before using any of these functions, the header file :file:`datetime.h` must "
32+
"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 "
34+
"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 "
36+
"the following macros."
37+
msgstr ""
38+
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+
79+
msgid "Macro for access to the UTC singleton:"
80+
msgstr ""
81+
82+
msgid ""
83+
"Returns the time zone singleton representing UTC, the same object as :attr:"
84+
"`datetime.timezone.utc`."
85+
msgstr ""
86+
87+
msgid "Type-check macros:"
88+
msgstr "Sprawdzanie typu makr:"
89+
90+
msgid ""
91+
"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype "
92+
"of :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This "
93+
"function always succeeds."
94+
msgstr ""
95+
96+
msgid ""
97+
"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not "
98+
"be ``NULL``. This function always succeeds."
99+
msgstr ""
100+
101+
msgid ""
102+
"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a "
103+
"subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
104+
"This function always succeeds."
105+
msgstr ""
106+
107+
msgid ""
108+
"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must "
109+
"not be ``NULL``. This function always succeeds."
110+
msgstr ""
111+
112+
msgid ""
113+
"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype "
114+
"of :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This "
115+
"function always succeeds."
116+
msgstr ""
117+
118+
msgid ""
119+
"Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not "
120+
"be ``NULL``. This function always succeeds."
121+
msgstr ""
122+
123+
msgid ""
124+
"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype "
125+
"of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
126+
"function always succeeds."
127+
msgstr ""
128+
129+
msgid ""
130+
"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not "
131+
"be ``NULL``. This function always succeeds."
132+
msgstr ""
133+
134+
msgid ""
135+
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype "
136+
"of :c:data:`!PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This "
137+
"function always succeeds."
138+
msgstr ""
139+
140+
msgid ""
141+
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must "
142+
"not be ``NULL``. This function always succeeds."
143+
msgstr ""
144+
145+
msgid "Macros to create objects:"
146+
msgstr ""
147+
148+
msgid ""
149+
"Return a :class:`datetime.date` object with the specified year, month and "
150+
"day."
151+
msgstr ""
152+
153+
msgid ""
154+
"Return a :class:`datetime.datetime` object with the specified year, month, "
155+
"day, hour, minute, second and microsecond."
156+
msgstr ""
157+
158+
msgid ""
159+
"Return a :class:`datetime.datetime` object with the specified year, month, "
160+
"day, hour, minute, second, microsecond and fold."
161+
msgstr ""
162+
163+
msgid ""
164+
"Return a :class:`datetime.time` object with the specified hour, minute, "
165+
"second and microsecond."
166+
msgstr ""
167+
168+
msgid ""
169+
"Return a :class:`datetime.time` object with the specified hour, minute, "
170+
"second, microsecond and fold."
171+
msgstr ""
172+
173+
msgid ""
174+
"Return a :class:`datetime.timedelta` object representing the given number of "
175+
"days, seconds and microseconds. Normalization is performed so that the "
176+
"resulting number of microseconds and seconds lie in the ranges documented "
177+
"for :class:`datetime.timedelta` objects."
178+
msgstr ""
179+
180+
msgid ""
181+
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
182+
"represented by the *offset* argument."
183+
msgstr ""
184+
185+
msgid ""
186+
"Return a :class:`datetime.timezone` object with a fixed offset represented "
187+
"by the *offset* argument and with tzname *name*."
188+
msgstr ""
189+
190+
msgid ""
191+
"Macros to extract fields from date objects. The argument must be an "
192+
"instance of :c:type:`PyDateTime_Date`, including subclasses (such as :c:type:"
193+
"`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is "
194+
"not checked:"
195+
msgstr ""
196+
197+
msgid "Return the year, as a positive int."
198+
msgstr ""
199+
200+
msgid "Return the month, as an int from 1 through 12."
201+
msgstr ""
202+
203+
msgid "Return the day, as an int from 1 through 31."
204+
msgstr ""
205+
206+
msgid ""
207+
"Macros to extract fields from datetime objects. The argument must be an "
208+
"instance of :c:type:`PyDateTime_DateTime`, including subclasses. The "
209+
"argument must not be ``NULL``, and the type is not checked:"
210+
msgstr ""
211+
212+
msgid "Return the hour, as an int from 0 through 23."
213+
msgstr ""
214+
215+
msgid "Return the minute, as an int from 0 through 59."
216+
msgstr ""
217+
218+
msgid "Return the second, as an int from 0 through 59."
219+
msgstr ""
220+
221+
msgid "Return the microsecond, as an int from 0 through 999999."
222+
msgstr ""
223+
224+
msgid "Return the fold, as an int from 0 through 1."
225+
msgstr ""
226+
227+
msgid "Return the tzinfo (which may be ``None``)."
228+
msgstr ""
229+
230+
msgid ""
231+
"Macros to extract fields from time objects. The argument must be an "
232+
"instance of :c:type:`PyDateTime_Time`, including subclasses. The argument "
233+
"must not be ``NULL``, and the type is not checked:"
234+
msgstr ""
235+
236+
msgid ""
237+
"Macros to extract fields from time delta objects. The argument must be an "
238+
"instance of :c:type:`PyDateTime_Delta`, including subclasses. The argument "
239+
"must not be ``NULL``, and the type is not checked:"
240+
msgstr ""
241+
242+
msgid "Return the number of days, as an int from -999999999 to 999999999."
243+
msgstr ""
244+
245+
msgid "Return the number of seconds, as an int from 0 through 86399."
246+
msgstr ""
247+
248+
msgid "Return the number of microseconds, as an int from 0 through 999999."
249+
msgstr ""
250+
251+
msgid "Macros for the convenience of modules implementing the DB API:"
252+
msgstr ""
253+
254+
msgid ""
255+
"Create and return a new :class:`datetime.datetime` object given an argument "
256+
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
257+
msgstr ""
258+
259+
msgid ""
260+
"Create and return a new :class:`datetime.date` object given an argument "
261+
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
262+
msgstr ""

0 commit comments

Comments
 (0)