Skip to content

Commit 1ac629a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent c86e099 commit 1ac629a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+448
-107
lines changed

c-api/abstract.po

+1-1
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: 2024-11-29 16:02+0000\n"
14+
"POT-Creation-Date: 2024-12-20 16:02+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://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/contextvars.po

+2-2
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: 2024-12-20 16:02+0000\n"
14+
"POT-Creation-Date: 2024-12-27 16:02+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 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

+222
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
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 <rffontenelle@gmail.com>, 2024
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.10\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2024-12-27 16:02+0000\n"
15+
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 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 "Macro for access to the UTC singleton:"
40+
msgstr ""
41+
42+
msgid ""
43+
"Returns the time zone singleton representing UTC, the same object as :attr:"
44+
"`datetime.timezone.utc`."
45+
msgstr ""
46+
47+
msgid "Type-check macros:"
48+
msgstr "Sprawdzanie typu makr:"
49+
50+
msgid ""
51+
"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."
54+
msgstr ""
55+
56+
msgid ""
57+
"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not "
58+
"be ``NULL``. This function always succeeds."
59+
msgstr ""
60+
61+
msgid ""
62+
"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``. "
64+
"This function always succeeds."
65+
msgstr ""
66+
67+
msgid ""
68+
"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must "
69+
"not be ``NULL``. This function always succeeds."
70+
msgstr ""
71+
72+
msgid ""
73+
"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."
76+
msgstr ""
77+
78+
msgid ""
79+
"Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not "
80+
"be ``NULL``. This function always succeeds."
81+
msgstr ""
82+
83+
msgid ""
84+
"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 "
86+
"function always succeeds."
87+
msgstr ""
88+
89+
msgid ""
90+
"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not "
91+
"be ``NULL``. This function always succeeds."
92+
msgstr ""
93+
94+
msgid ""
95+
"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 "
97+
"function always succeeds."
98+
msgstr ""
99+
100+
msgid ""
101+
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must "
102+
"not be ``NULL``. This function always succeeds."
103+
msgstr ""
104+
105+
msgid "Macros to create objects:"
106+
msgstr ""
107+
108+
msgid ""
109+
"Return a :class:`datetime.date` object with the specified year, month and "
110+
"day."
111+
msgstr ""
112+
113+
msgid ""
114+
"Return a :class:`datetime.datetime` object with the specified year, month, "
115+
"day, hour, minute, second and microsecond."
116+
msgstr ""
117+
118+
msgid ""
119+
"Return a :class:`datetime.datetime` object with the specified year, month, "
120+
"day, hour, minute, second, microsecond and fold."
121+
msgstr ""
122+
123+
msgid ""
124+
"Return a :class:`datetime.time` object with the specified hour, minute, "
125+
"second and microsecond."
126+
msgstr ""
127+
128+
msgid ""
129+
"Return a :class:`datetime.time` object with the specified hour, minute, "
130+
"second, microsecond and fold."
131+
msgstr ""
132+
133+
msgid ""
134+
"Return a :class:`datetime.timedelta` object representing the given number of "
135+
"days, seconds and microseconds. Normalization is performed so that the "
136+
"resulting number of microseconds and seconds lie in the ranges documented "
137+
"for :class:`datetime.timedelta` objects."
138+
msgstr ""
139+
140+
msgid ""
141+
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
142+
"represented by the *offset* argument."
143+
msgstr ""
144+
145+
msgid ""
146+
"Return a :class:`datetime.timezone` object with a fixed offset represented "
147+
"by the *offset* argument and with tzname *name*."
148+
msgstr ""
149+
150+
msgid ""
151+
"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:"
153+
"`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is "
154+
"not checked:"
155+
msgstr ""
156+
157+
msgid "Return the year, as a positive int."
158+
msgstr ""
159+
160+
msgid "Return the month, as an int from 1 through 12."
161+
msgstr ""
162+
163+
msgid "Return the day, as an int from 1 through 31."
164+
msgstr ""
165+
166+
msgid ""
167+
"Macros to extract fields from datetime objects. The argument must be an "
168+
"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
169+
"argument must not be ``NULL``, and the type is not checked:"
170+
msgstr ""
171+
172+
msgid "Return the hour, as an int from 0 through 23."
173+
msgstr ""
174+
175+
msgid "Return the minute, as an int from 0 through 59."
176+
msgstr ""
177+
178+
msgid "Return the second, as an int from 0 through 59."
179+
msgstr ""
180+
181+
msgid "Return the microsecond, as an int from 0 through 999999."
182+
msgstr ""
183+
184+
msgid "Return the fold, as an int from 0 through 1."
185+
msgstr ""
186+
187+
msgid "Return the tzinfo (which may be ``None``)."
188+
msgstr ""
189+
190+
msgid ""
191+
"Macros to extract fields from time objects. The argument must be an "
192+
"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
193+
"must not be ``NULL``, and the type is not checked:"
194+
msgstr ""
195+
196+
msgid ""
197+
"Macros to extract fields from time delta objects. The argument must be an "
198+
"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
199+
"must not be ``NULL``, and the type is not checked:"
200+
msgstr ""
201+
202+
msgid "Return the number of days, as an int from -999999999 to 999999999."
203+
msgstr ""
204+
205+
msgid "Return the number of seconds, as an int from 0 through 86399."
206+
msgstr ""
207+
208+
msgid "Return the number of microseconds, as an int from 0 through 999999."
209+
msgstr ""
210+
211+
msgid "Macros for the convenience of modules implementing the DB API:"
212+
msgstr ""
213+
214+
msgid ""
215+
"Create and return a new :class:`datetime.datetime` object given an argument "
216+
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
217+
msgstr ""
218+
219+
msgid ""
220+
"Create and return a new :class:`datetime.date` object given an argument "
221+
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
222+
msgstr ""

c-api/file.po

+1-1
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: 2024-11-29 16:02+0000\n"
14+
"POT-Creation-Date: 2024-12-20 16:02+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://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/init.po

+23-23
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: 2024-12-20 16:02+0000\n"
14+
"POT-Creation-Date: 2024-12-27 16:02+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -44,34 +44,34 @@ msgid ""
4444
msgstr ""
4545

4646
msgid "Configuration functions:"
47-
msgstr ""
47+
msgstr "Konfiguracja funkcja:"
4848

4949
msgid ":c:func:`PyImport_AppendInittab`"
50-
msgstr ""
50+
msgstr ":c:func:`PyImport_AppendInittab`"
5151

5252
msgid ":c:func:`PyImport_ExtendInittab`"
53-
msgstr ""
53+
msgstr ":c:func:`PyImport_ExtendInittab`"
5454

5555
msgid ":c:func:`PyInitFrozenExtensions`"
5656
msgstr ""
5757

5858
msgid ":c:func:`PyMem_SetAllocator`"
59-
msgstr ""
59+
msgstr ":c:func:`PyMem_SetAllocator`"
6060

6161
msgid ":c:func:`PyMem_SetupDebugHooks`"
62-
msgstr ""
62+
msgstr ":c:func:`PyMem_SetupDebugHooks`"
6363

6464
msgid ":c:func:`PyObject_SetArenaAllocator`"
65-
msgstr ""
65+
msgstr ":c:func:`PyObject_SetArenaAllocator`"
6666

6767
msgid ":c:func:`Py_SetPath`"
6868
msgstr ""
6969

7070
msgid ":c:func:`Py_SetProgramName`"
71-
msgstr ""
71+
msgstr ":c:func:`Py_SetProgramName`"
7272

7373
msgid ":c:func:`Py_SetPythonHome`"
74-
msgstr ""
74+
msgstr ":c:func:`Py_SetPythonHome`"
7575

7676
msgid ":c:func:`Py_SetStandardStreamEncoding`"
7777
msgstr ""
@@ -83,43 +83,43 @@ msgid ":c:func:`PySys_AddXOption`"
8383
msgstr ""
8484

8585
msgid ":c:func:`PySys_ResetWarnOptions`"
86-
msgstr ""
86+
msgstr ":c:func:`PySys_ResetWarnOptions`"
8787

8888
msgid "Informative functions:"
89-
msgstr ""
89+
msgstr "Informatiwne funkcje:"
9090

9191
msgid ":c:func:`Py_IsInitialized`"
92-
msgstr ""
92+
msgstr ":c:func:`Py_IsInitialized`"
9393

9494
msgid ":c:func:`PyMem_GetAllocator`"
95-
msgstr ""
95+
msgstr ":c:func:`PyMem_GetAllocator`"
9696

9797
msgid ":c:func:`PyObject_GetArenaAllocator`"
98-
msgstr ""
98+
msgstr ":c:func:`PyObject_GetArenaAllocator`"
9999

100100
msgid ":c:func:`Py_GetBuildInfo`"
101-
msgstr ""
101+
msgstr ":c:func:`Py_GetBuildInfo`"
102102

103103
msgid ":c:func:`Py_GetCompiler`"
104-
msgstr ""
104+
msgstr ":c:func:`Py_GetCompiler`"
105105

106106
msgid ":c:func:`Py_GetCopyright`"
107-
msgstr ""
107+
msgstr ":c:func:`Py_GetCopyright`"
108108

109109
msgid ":c:func:`Py_GetPlatform`"
110-
msgstr ""
110+
msgstr ":c:func:`Py_GetPlatform`"
111111

112112
msgid ":c:func:`Py_GetVersion`"
113-
msgstr ""
113+
msgstr ":c:func:`Py_GetVersion`"
114114

115115
msgid "Utilities:"
116-
msgstr ""
116+
msgstr "Narzędzia:"
117117

118118
msgid ":c:func:`Py_DecodeLocale`"
119-
msgstr ""
119+
msgstr ":c:func:`Py_DecodeLocale`"
120120

121121
msgid "Memory allocators:"
122-
msgstr ""
122+
msgstr "Alokatory pamięci:"
123123

124124
msgid ":c:func:`PyMem_RawMalloc`"
125125
msgstr ":c:func:`PyMem_RawMalloc`"
@@ -1444,7 +1444,7 @@ msgid ":const:`PyTrace_CALL`"
14441444
msgstr ""
14451445

14461446
msgid "Always :c:data:`Py_None`."
1447-
msgstr ""
1447+
msgstr "Zawsze :c:data:`Py_None`."
14481448

14491449
msgid ":const:`PyTrace_EXCEPTION`"
14501450
msgstr ""

c-api/method.po

+1-1
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: 2024-11-29 16:02+0000\n"
14+
"POT-Creation-Date: 2024-12-20 16:02+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/refcounting.po

+1-1
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: 2024-11-29 16:02+0000\n"
14+
"POT-Creation-Date: 2024-12-20 16:02+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://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)